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

Signing you up...

Thank you for signing up!

PHP Decode

$out = "\x47\x45\x54 ".$uri."\x3f".$query." \x48\x54\x54\x50\x2f\x31\x2e\x31\r\n"; ..

Decoded Output download

<?       $out = "GET ".$uri."?".$query." HTTP/1.1
"; 
 
      $out .= "Host: ".$host."
"; 
 
      $out .= "User-Agent: ".$_SERVER["HTTP_USER_AGENT"]."
"; 
 
      $out .= "Referer: ".$_SERVER["HTTP_REFERER"]."
"; 
 
      $out .= "Connection: Close

"; ?>

Did this file decode correctly?

Original Code

     $out = "\x47\x45\x54 ".$uri."\x3f".$query." \x48\x54\x54\x50\x2f\x31\x2e\x31\r\n";

      $out .= "\x48\x6f\x73\x74\x3a ".$host."\r\n";

      $out .= "\x55\x73\x65\x72\x2d\x41\x67\x65\x6e\x74\x3a ".$_SERVER["\x48\x54\x54\x50\x5f\x55\x53\x45\x52\x5f\x41\x47\x45\x4e\x54"]."\r\n";

      $out .= "\x52\x65\x66\x65\x72\x65\x72\x3a ".$_SERVER["\x48\x54\x54\x50\x5f\x52\x45\x46\x45\x52\x45\x52"]."\r\n";

      $out .= "\x43\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x3a\x20\x43\x6c\x6f\x73\x65\r\n\r\n";

Function Calls

None

Variables

$out GET 0?0 HTTP/1.1 Host: 0 User-Agent: None Referer: None ..

Stats

MD5 addaf4524b351767a08992121d286d47
Eval Count 0
Decode Time 98 ms