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

Signing you up...

Thank you for signing up!

PHP Decode

--TEST-- $http_reponse_header (redirect) --SKIPIF-- <?php require 'server.inc'; http_serve..

Decoded Output download

--TEST--
$http_reponse_header (redirect)
--SKIPIF--
<?php require 'server.inc'; http_server_skipif(); ?>
--INI--
allow_url_fopen=1
--FILE--
<?php
require 'server.inc';

$responses = array(
    "data://text/plain,HTTP/1.0 302 Found
"
    . "Some: Header
Location: /try-again

",
    "data://test/plain,HTTP/1.0 200 Ok
Some: Header

Body",
);

['pid' => $pid, 'uri' => $uri] = http_server($responses, $output);

$f = file_get_contents($uri);
var_dump($f);
var_dump($http_response_header);

http_server_kill($pid);

--EXPECT--
string(4) "Body"
array(5) {
  [0]=>
  string(18) "HTTP/1.0 302 Found"
  [1]=>
  string(12) "Some: Header"
  [2]=>
  string(20) "Location: /try-again"
  [3]=>
  string(15) "HTTP/1.0 200 Ok"
  [4]=>
  string(12) "Some: Header"
}
 ?>

Did this file decode correctly?

Original Code

--TEST--
$http_reponse_header (redirect)
--SKIPIF--
<?php require 'server.inc'; http_server_skipif(); ?>
--INI--
allow_url_fopen=1
--FILE--
<?php
require 'server.inc';

$responses = array(
    "data://text/plain,HTTP/1.0 302 Found\r\n"
    . "Some: Header\r\nLocation: /try-again\r\n\r\n",
    "data://test/plain,HTTP/1.0 200 Ok\r\nSome: Header\r\n\r\nBody",
);

['pid' => $pid, 'uri' => $uri] = http_server($responses, $output);

$f = file_get_contents($uri);
var_dump($f);
var_dump($http_response_header);

http_server_kill($pid);

--EXPECT--
string(4) "Body"
array(5) {
  [0]=>
  string(18) "HTTP/1.0 302 Found"
  [1]=>
  string(12) "Some: Header"
  [2]=>
  string(20) "Location: /try-again"
  [3]=>
  string(15) "HTTP/1.0 200 Ok"
  [4]=>
  string(12) "Some: Header"
}

Function Calls

None

Variables

None

Stats

MD5 212296994727058291d340225750d0c5
Eval Count 0
Decode Time 82 ms