summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2017-11-02 20:56:25 +0100
committerNikita Popov <nikita.ppv@gmail.com>2017-11-02 20:56:25 +0100
commit1f736085f1f00a27a042a033a2cca12e2ad2552a (patch)
tree410a15b758251481b03a52167bb34c8ac8fbea9a
parente8af216ce5e8425408f0027a4a99af30c4e62a29 (diff)
parentd88ef8d7e11d62f57c67bd70aa7faaeb16572ed8 (diff)
downloadphp-git-1f736085f1f00a27a042a033a2cca12e2ad2552a.tar.gz
Merge branch 'PHP-7.0' into PHP-7.1
-rw-r--r--ext/soap/tests/bug71610.phpt7
1 files changed, 5 insertions, 2 deletions
diff --git a/ext/soap/tests/bug71610.phpt b/ext/soap/tests/bug71610.phpt
index 4f1c7162ff..f00d57700a 100644
--- a/ext/soap/tests/bug71610.phpt
+++ b/ext/soap/tests/bug71610.phpt
@@ -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) {