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.116.27.225
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 /
website /
bkmh /
php /
[ HOME SHELL ]
Name
Size
Permission
Action
adminlogin.php
1.45
KB
-rwxrwxrwx
bkmh.php
7.58
KB
-rwxrwxrwx
bkmhconfirm.php
4.14
KB
-rwxrwxrwx
bkmhreferno.php
963
B
-rwxrwxrwx
config.php
170
B
-rwxrwxrwx
error_log
1.6
KB
-rwxrwxrwx
forgetOtpSend.php
2.12
KB
-rwxrwxrwx
getOldStd.php
975
B
-rwxrwxrwx
index.php
2.45
KB
-rwxrwxrwx
log.php
332
B
-rwxrwxrwx
loginDet.php
1.45
KB
-rwxrwxrwx
loginDetails.php
1.67
KB
-rwxrwxrwx
saveFinbkmh.php
2.77
KB
-rwxrwxrwx
session_start.php
149
B
-rwxrwxrwx
updatePassword.php
1.39
KB
-rwxrwxrwx
uploadFile.php
325
B
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : forgetOtpSend.php
<?php include ('/var/www/html/sms/sendsmsapiv1.php'); include("/var/www/html/univadmin/src/sendGridMail.php"); $servername = "logisys.cluster-cv9maxyrxjgg.ap-south-1.rds.amazonaws.com"; $username = "admin"; $password = "T0g3th3r@all"; $database = "logisys3_demo"; //$servername = "bkmariappacharities.org"; // $servername = "184.168.117.223"; // $username = "bkmh_alumni"; // $password = "Arunkumar@22"; // $database = "bkhm_alumni"; ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); ini_set('display_errors', 'on'); $conn = new mysqli($servername,$username,$password,$database); if(!$conn) { die("Connection failed: " . mysqli_connect_error()); } $FMOBILE = $_POST["fmob"]; $date = date('Y-m-d H:i:s'); $query = "select * from memhead where FMOBILE='{$FMOBILE}'"; $result1 = mysqli_query($conn,$query); $row = mysqli_fetch_assoc($result1); $count = mysqli_num_rows($result1); // if($fccode === "+91"){ if($count == 1){ date_default_timezone_set('Asia/Kolkata'); $time = date("h:i A"); $otp = rand(100000, 90000); $smsotp = "From BKMH: Dear User, OTP for Registration is $otp. sent at {$time} - Uniclare"; $sms = new SMS('098', 'OTP'); $sms->sendIndvidualSms($FMOBILE, $smsotp, '900', 'PGET'); $smsresp = 'Sent'; $row0["sms"] = $smsresp; $query = "update memhead set FMOBOTP = '{$otp}' where FMOBILE='{$FMOBILE}'"; // var_dump($query);die(); $result = mysqli_query($conn, $query); if($result){ $row1["status"] = 'success'; $row1["msg"] = 'OTP Sent To Your Mobile No. Please Verify'; echo json_encode($row1); }else{ $row1["status"] = 'invalid'; $row1["msg"] = 'Failed'; echo json_encode($row1); } }else{ $row2['status'] = 'invalid'; $row2['msg'] = 'Failed'; echo json_encode($row2); } mysqli_close($conn); ?>
Close