Linux host40.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Apache
: 68.65.120.213 | : 216.73.216.43
Cant Read [ /etc/named.conf ]
7.4.33
trade
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 /
trade /
contract.tradesense.co.ke /
inc /
helpers /
[ HOME SHELL ]
Name
Size
Permission
Action
mpdf
[ DIR ]
drwxr-xr-x
phpmailer
[ DIR ]
drwxr-xr-x
Doc.php
6.3
KB
-rw-r--r--
Docx_reader.php
8.17
KB
-rw-r--r--
Download.php
1.54
KB
-rw-r--r--
Mailer.php
374
B
-rw-r--r--
Resize.php
13.84
KB
-rw-r--r--
actions.php
239
B
-rw-r--r--
core.php
8
KB
-rw-r--r--
excel_reader.php
60.63
KB
-rw-r--r--
html_to_doc.inc.php
5.67
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Download.php
<?php $document = $db->select_row('documents', array('id' => $_GET['Download'])); if ($_GET['type'] == 'pdf') { include "mpdf/mpdf.php"; //============================================================== //hotfix for image loading $_SERVER['SCRIPT_NAME'] = str_replace('/inc', '', $_SERVER['SCRIPT_NAME']); $mpdf = new mPDF('utf-8'); $document->content = str_replace('inc/', '', $document->content); $mpdf->showImageErrors = true; $mpdf->WriteHTML($document->content); $mpdf->Output(); exit; //============================================================== } if ($_GET['type'] == 'doc') { include "Doc.php"; $base_url = str_replace('inc/','', getBasePath()); $document->content = str_replace('upload/',$base_url.'/upload/', $document->content); //============================================================== $htmltodoc = new Html2Doc(); $htmltodoc->createDocFromHTML($document->content, str_replace(' ', '_', $document->title), true); //============================================================== } if ($_GET['type'] == 'html') { //============================================================== echo "<html>"; echo "<head>"; echo "<base href='../'>"; echo "</head><body>"; echo $document->content; if (isset($_GET['print'])) { echo "<script type='text/javascript'>window.print();</script>"; } echo "</body></html>"; die(); //============================================================== } ?>
Close