Skip to content

Commit

Permalink
Fix ext/soap/tests/bug69137.phpt
Browse files Browse the repository at this point in the history
Switch to example.org. Also mark it as an online test.
  • Loading branch information
nikic committed Nov 2, 2017
1 parent dbfa014 commit d88ef8d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions ext/soap/tests/bug71610.phpt
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
--TEST--
SOAP Bug #71610 - Type Confusion Vulnerability - SOAP / make_http_soap_request()
--SKIPIF--
<?php require_once('skipif.inc'); ?>
<?php
require_once('skipif.inc');
if (getenv("SKIP_ONLINE_TESTS")) die("skip online test");
?>
--FILE--
<?php
$exploit = unserialize('O:10:"SoapClient":3:{s:3:"uri";s:1:"a";s:8:"location";s:19:"http://testuri.org/";s:8:"_cookies";a:1:{s:8:"manhluat";a:3:{i:0;s:0:"";i:1;N;i:2;N;}}}}');
$exploit = unserialize('O:10:"SoapClient":3:{s:3:"uri";s:1:"a";s:8:"location";s:19:"http://example.org/";s:8:"_cookies";a:1:{s:8:"manhluat";a:3:{i:0;s:0:"";i:1;N;i:2;N;}}}}');
try {
$exploit->blahblah();
} catch(SoapFault $e) {
Expand Down

0 comments on commit d88ef8d

Please sign in to comment.