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.22.68.29
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 : admission_sms_push_bnu.php
<?php /* * Api For sending result sms through web export after uploading the result * url == http://oasis.logisys.org/sms/admission_sms_push.php?funivcode=041&fdbname=logisys3_bcu * */ ini_set('memory_limit','900M'); ini_set('max_execution_time',0); //connect to database $servername = "97.74.228.93"; $username = "logisys3_logu"; $password = "Logisys@2106"; $conn = new mysqli($servername,$username,$password); if(!$conn) { die("Connection failed: " . mysqli_connect_error()); } $commondb = "logisys3_comexam"; // Will be sent by mohan sir through web export $db = trim($_GET['fdbname']); $univcode = trim($_GET['funivcode']); //Admission Push data to common databse $univcode = '042'; $db = 'logisys3_bnu'; if( $db != '' && $univcode != '') { $sql1 = "insert ignore into {$commondb}.sendsms(funivcode, fregno, fmobileno, fenttype, fsubcode, fmessage, fstatus, fdeleted, fyear, fexamtype,fupdate) select distinct '{$univcode}', x.fmobileno, x.fmobileno, 'AI', 'AI', concat('Message from Bengaluru North University.',CHAR(13),'Dear ', x.fname, ', You are required to submit the admission details online immediately.',CHAR(13),'Visit http://universitysolutions.in/bnu/adm') as fmessage, 'F', 'F', '2018', '2', now() from {$db}.collstud x where ifnull(x.fsmspush,'') <> 'T'"; $result1 = mysqli_query($conn, $sql1); $query = "insert ignore into {$commondb}.sendsms(funivcode, fregno, fmobileno, fenttype, fsubcode, fmessage, fstatus, fdeleted, fyear, fexamtype,fupdate) SELECT '042',c.fmobile,c.fmobile,'AC','AC', CONCAT('Message from Bengaluru North University.',CHAR(13),b.fcollcode,' - ',LEFT(c.fcollname,25),', admission enabled for the degree ', GROUP_CONCAT(DISTINCT CONCAT(a.fdegree,'(',a.cnt,') ',CHAR(13)))) AS degcnt,'F', 'F', '2018', '2', NOW() FROM (SELECT fcollcode,fdegree,COUNT(*) AS cnt FROM {$db}.collstud GROUP BY fcollcode,fdegree ) a INNER JOIN {$db}.collstud b ON a.fdegree = b.fdegree AND a.fcollcode = b.fcollcode AND IFNULL(b.fsmspush,'') <> 'T' INNER JOIN {$db}.college c ON b.fcollcode = c.fcollcode GROUP BY a.fcollcode"; $result = mysqli_query($conn, $query); if($result1) { $sql1 = "update {$db}.collstud x set x.fsmspush = 'T' where ifnull(x.fsmspush,'') <> 'T'"; $result3 = mysqli_query($conn, $sql1); echo "success"; } else { echo "failure"; } } ?>
Close