����JFIF��x�x������Exif��MM�*���� ����E���J����������������(������������������
Server IP : 103.191.208.227 / Your IP : 18.118.144.239 Web Server : LiteSpeed System : Linux emphasis.herosite.pro 4.18.0-553.8.1.lve.el8.x86_64 #1 SMP Thu Jul 4 16:24:39 UTC 2024 x86_64 User : mhmsfzcs ( 1485) PHP Version : 8.1.31 Disable Function : show_source, system, shell_exec, passthru, exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/mhmsfzcs/vflyorions.com/.well-known/../payment/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php include('Crypto.php')?> <?php error_reporting(0); $workingKey='EB2E7C4D92242FC3BD53FB3C5ED0042F'; //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 style="font-size: 30px;">'; 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<br> Your transaction is successful."; } 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 '<a href="https://vflyorions.com/">Back to Home Page</a>'; // echo "<table cellspacing=4 cellpadding=4>"; // for($i = 0; $i < $dataSize; $i++) // { // $information=explode('=',$decryptValues[$i]); // echo '<tr><td>'.$information[0].'</td><td>'.urldecode($information[1]).'</td></tr>'; // } // echo "</table><br>"; echo "</center>"; ?>