aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2015-04-28 21:55:15 +0200
committerAndreas Fischer <bantu@phpbb.com>2015-04-28 21:55:15 +0200
commit2fb7ef26686f37a7f51367b47e9c8b0b7485d824 (patch)
treeda61cbe26c1c7c720ec09d7479db2d5cf321b0ae /tests
parent6d8df7332cac920b5e8dd7dedf971789d30bc3cb (diff)
parent1a3350619f428d9d69d196c52128727e27ef2f04 (diff)
downloadforums-2fb7ef26686f37a7f51367b47e9c8b0b7485d824.tar
forums-2fb7ef26686f37a7f51367b47e9c8b0b7485d824.tar.gz
forums-2fb7ef26686f37a7f51367b47e9c8b0b7485d824.tar.bz2
forums-2fb7ef26686f37a7f51367b47e9c8b0b7485d824.tar.xz
forums-2fb7ef26686f37a7f51367b47e9c8b0b7485d824.zip
Merge branch 'prep-release-3.0.14' into 3.0.x
* prep-release-3.0.14: [ticket/security-180] Add tests for redirecting to main URL [ticket/security-180] Always fail when redirecting to an insecure URL [ticket/security-180] Make sure that redirect goes to full URL plus slash [ticket/security-180] Check if redirect URL contains board URL
Diffstat (limited to 'tests')
-rw-r--r--tests/security/redirect_test.php9
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/security/redirect_test.php b/tests/security/redirect_test.php
index 872a331dc7..9a24ba5d65 100644
--- a/tests/security/redirect_test.php
+++ b/tests/security/redirect_test.php
@@ -18,12 +18,17 @@ class phpbb_security_redirect_test extends phpbb_security_test_base
{
// array(Input -> redirect(), expected triggered error (else false), expected returned result url (else false))
return array(
- array('data://x', false, 'http://localhost/phpBB'),
+ array('data://x', 'Tried to redirect to potentially insecure url.', false),
array('bad://localhost/phpBB/index.php', 'Tried to redirect to potentially insecure url.', false),
- array('http://www.otherdomain.com/somescript.php', false, 'http://localhost/phpBB'),
+ array('http://www.otherdomain.com/somescript.php', 'Tried to redirect to potentially insecure url.', false),
array("http://localhost/phpBB/memberlist.php\n\rConnection: close", 'Tried to redirect to potentially insecure url.', false),
array('javascript:test', false, 'http://localhost/phpBB/../javascript:test'),
array('http://localhost/phpBB/index.php;url=', 'Tried to redirect to potentially insecure url.', false),
+ array('https://foobar.com\@http://localhost/phpBB', 'Tried to redirect to potentially insecure url.', false),
+ array('https://foobar.com\@localhost/troll/http://localhost/', 'Tried to redirect to potentially insecure url.', false),
+ array('http://localhost.foobar.com\@localhost/troll/http://localhost/', 'Tried to redirect to potentially insecure url.', false),
+ array('http://localhost/phpBB', false, 'http://localhost/phpBB'),
+ array('http://localhost/phpBB/', false, 'http://localhost/phpBB/'),
);
}