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.70.127.69
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 : file.php
<?php // this script is a slightly more user friendly way to 'send' the file to them // (using portfolio/file.php) but still give them the 'return to where you were' link // to go back to their assignment, or whatever require(__DIR__.'/../../config.php'); if (empty($CFG->enableportfolios)) { print_error('disabled', 'portfolio'); } require_once($CFG->libdir.'/portfoliolib.php'); require_once($CFG->libdir.'/portfolio/exporter.php'); $id = required_param('id', PARAM_INT); $PAGE->set_url('/portfolio/download/file.php', array('id' => $id)); $exporter = portfolio_exporter::rewaken_object($id); portfolio_export_pagesetup($PAGE, $exporter->get('caller')); $exporter->verify_rewaken(); $exporter->print_header(get_string('downloading', 'portfolio_download'), false); $returnurl = $exporter->get('caller')->get_return_url(); echo $OUTPUT->notification('<a href="' . $returnurl . '">' . get_string('returntowhereyouwere', 'portfolio') . '</a><br />'); // if they don't have javascript, they can submit the form here to get the file. // if they do, it does it nicely for them. echo '<div id="redirect"> <form action="' . $exporter->get('instance')->get_base_file_url() . '" method="post" id="redirectform"> <input type="submit" value="' . get_string('downloadfile', 'portfolio_download') . '" /> </form></div> '; $PAGE->requires->js_amd_inline(" require(['jquery'], function($) { $('#redirectform').submit(function() { $('#redirect').addClass('hide'); }).submit(); });"); echo $OUTPUT->footer();
Close