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 /
cipd /
applications /
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.php
7.85
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.29
KB
-rw-r--r--
error_log
2.03
KB
-rw-r--r--
exportStudentDetails.php
855
B
-rw-r--r--
forgotPassword.php
6.53
KB
-rw-r--r--
fpass.php
2.97
KB
-rw-r--r--
generatereceipt.php
4.1
KB
-rw-r--r--
index.php
4.8
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--
viewApplicatonDetails.php
6.16
KB
-rw-r--r--
viewPaymentDetails.php
4.86
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--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : common.php
<?php require_once 'dbconfig.php'; class ADMINFEEDATE { 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 adminfee($program,$semester,$firstDate,$secondDate,$thirdDate,$forthDate,$firstFineamount,$secondFineAmount) { try { $stmt = $this->conn->prepare("INSERT INTO feesubmitdate(program,semester,firstDate,secondDate,thirdDate,forthDate,firstFineamount,secondFineAmount) VALUES(:program1,:semester1,:firstDate1,:secondDate1,:thirdDate1,:forthDate1,:firstFineamount1,:secondFineAmount1)"); $stmt->bindparam(":program1",$program); $stmt->bindparam(":semester1",$semester); $stmt->bindparam(":firstDate1",$firstDate); $stmt->bindparam(":secondDate1",$secondDate); $stmt->bindparam(":thirdDate1",$thirdDate); $stmt->bindparam(":forthDate1",$forthDate); $stmt->bindparam(":firstFineamount1",$firstFineamount); $stmt->bindparam(":secondFineAmount1",$secondFineAmount); $stmt->execute(); return $stmt; } catch(PDOException $ex) { echo $ex->getMessage(); } } public function adminbatch($program,$batch) { try { $stmt = $this->conn->prepare("INSERT INTO batchupdate(programID,batch) VALUES(:program1,:batch1)"); $stmt->bindparam(":program1",$program); $stmt->bindparam(":batch1",$batch); $stmt->execute(); return $stmt; } catch(PDOException $ex) { echo $ex->getMessage(); } } public function adminfeeAmount($program,$batch,$feeAmount,$cautionFee,$alumniFee) { try { $stmt = $this->conn->prepare("INSERT INTO feeamountupdate(programID,batchID,feeAmount,cautionFee,alumniFee) VALUES(:program1,:batch1,:feeAmount1,:cautionFee1,:alumniFee1)"); $stmt->bindparam(":program1",$program); $stmt->bindparam(":batch1",$batch); $stmt->bindparam(":feeAmount1",$feeAmount); $stmt->bindparam(":cautionFee1",$cautionFee); $stmt->bindparam(":alumniFee1",$alumniFee); $stmt->execute(); return $stmt; } catch(PDOException $ex) { echo $ex->getMessage(); } } }
Close