Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.189
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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
/
var /
www /
html /
api.lmsschool /
vendor /
mpdf /
mpdf /
data /
[ HOME SHELL ]
Name
Size
Permission
Action
collations
[ DIR ]
drwxr-xr-x
font
[ DIR ]
drwxr-xr-x
iccprofiles
[ DIR ]
drwxr-xr-x
patterns
[ DIR ]
drwxr-xr-x
CJKdata.php
6.43
KB
-rw-r--r--
entity_substitutions.php
4.42
KB
-rw-r--r--
lang2fonts.css
8.91
KB
-rw-r--r--
linebrdictK.dat
1
MB
-rw-r--r--
linebrdictL.dat
123.96
KB
-rw-r--r--
linebrdictT.dat
294.68
KB
-rw-r--r--
mpdf.css
2.06
KB
-rw-r--r--
no_image.jpg
7.7
KB
-rw-r--r--
out.php
2.18
KB
-rw-r--r--
subs_core.php
5.56
KB
-rw-r--r--
subs_win-1252.php
8.28
KB
-rw-r--r--
upperCase.php
13.12
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : out.php
<?php $path = '../tmp/'; $tempfilename = $_REQUEST['filename'].'.pdf'; if (strstr($tempfilename,'/') || strstr($tempfilename,'\\')) { throw new MpdfException('Output filename can not not contain \ or /'); } $name = $_REQUEST['opname']; $dest = $_REQUEST['dest']; if ($tempfilename && file_exists($path . $tempfilename)) { // mPDF 5.3.17 if ($dest === 'I') { if (PHP_SAPI != 'cli') { header('Content-Type: application/pdf'); header('Content-disposition: inline; filename="' . $name . '"'); header('Cache-Control: public, must-revalidate, max-age=0'); header('Pragma: public'); header('Expires: Sat, 26 Jul 1997 05:00:00 GMT'); header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT'); } } elseif ($dest === 'D') { if (headers_sent()) { throw new MpdfException('Some data has already been output to browser, can\'t send PDF file'); } header('Content-Description: File Transfer'); header('Content-Transfer-Encoding: binary'); header('Cache-Control: public, must-revalidate, max-age=0'); header('Pragma: public'); header('Expires: Sat, 26 Jul 1997 05:00:00 GMT'); header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); header('Content-Type: application/force-download'); header('Content-Type: application/octet-stream', false); header('Content-Type: application/download', false); header('Content-Type: application/pdf', false); header('Content-disposition: attachment; filename="' . $name . '"'); } $filesize = filesize($path.$tempfilename); if (empty($_SERVER['HTTP_ACCEPT_ENCODING'])) { // don't use length if server using compression header('Content-Length: ' . $filesize); } $fd = fopen($path . $tempfilename, 'rb'); fpassthru($fd); fclose($fd); unlink($path . $tempfilename); // ====================== DELETE OLD FILES - Housekeeping ========================================= // Clear any files in directory that are >24 hrs old $interval = 86400; if ($handle = opendir(dirname($path.'dummy'))) { while (false !== ($file = readdir($handle))) { if (((filemtime($path.$file)+$interval) < time()) && ($file != "..") && ($file != ".") && substr($file, -3)=='pdf') { unlink($path.$file); } } closedir($handle); } exit; }
Close