summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2017-11-02 20:56:35 +0100
committerNikita Popov <nikita.ppv@gmail.com>2017-11-02 20:56:35 +0100
commitf3c7e1cefb8168843a5dc575a1391fe8faaf1990 (patch)
treed3ce81df2bda050cdc20461ca6388cf0a8385f3e
parent8a4702223d789b82755d016906673f02161d0970 (diff)
parent1f736085f1f00a27a042a033a2cca12e2ad2552a (diff)
downloadphp-git-f3c7e1cefb8168843a5dc575a1391fe8faaf1990.tar.gz
Merge branch 'PHP-7.1' into PHP-7.2
-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) {