bug79265.phpt 854 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. --TEST--
  2. Bug #79265 (Improper injection of Host header when using fopen for http requests)
  3. --INI--
  4. allow_url_fopen=1
  5. --SKIPIF--
  6. <?php require 'server.inc'; http_server_skipif(); ?>
  7. --FILE--
  8. <?php
  9. require 'server.inc';
  10. $responses = array(
  11. "data://text/plain,HTTP/1.1 200 OK\r\n\r\n",
  12. );
  13. ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output);
  14. $opts = array(
  15. 'http'=>array(
  16. 'method'=>"GET",
  17. 'header'=>"RandomHeader: localhost:8080\r\n" .
  18. "Cookie: foo=bar\r\n" .
  19. "Host: userspecifiedvalue\r\n"
  20. )
  21. );
  22. $context = stream_context_create($opts);
  23. $fd = fopen($uri, 'rb', false, $context);
  24. fseek($output, 0, SEEK_SET);
  25. echo stream_get_contents($output);
  26. fclose($fd);
  27. http_server_kill($pid);
  28. --EXPECT--
  29. GET / HTTP/1.1
  30. Connection: close
  31. RandomHeader: localhost:8080
  32. Cookie: foo=bar
  33. Host: userspecifiedvalue