r70067 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r70066‎ | r70067 | r70068 >
Date:06:11, 28 July 2010
Author:tstarling
Status:ok
Tags:
Comment:
Fixed register_globals arbitrary inclusion vulnerability. Was fixed in trunk in r68544. Does not affect Apache installations with AllowOverride since there is a .htaccess file protecting the maintenance directory.
Modified paths:
  • /branches/REL1_16/phase3/RELEASE-NOTES (modified) (history)
  • /branches/REL1_16/phase3/maintenance/tests/MediaWikiParserTest.php (modified) (history)

Diff [purge]

Index: branches/REL1_16/phase3/maintenance/tests/MediaWikiParserTest.php
@@ -1,5 +1,9 @@
22 <?php
33
 4+if ( !defined( 'MEDIAWIKI' ) ) {
 5+ exit;
 6+}
 7+
48 global $IP;
59 define( "NO_COMMAND_LINE", 1 );
610 define( "PARSER_TESTS", "$IP/maintenance/parserTests.txt" );
Index: branches/REL1_16/phase3/RELEASE-NOTES
@@ -64,9 +64,12 @@
6565 * (bug xxxxx) Fixed Cache-Control headers sent from API modules, to protect
6666 user privacy in the case where an attacker can access the wiki through the
6767 same HTTP proxy as a logged-in user.
68 -* Fixed XSS in profileinfo.php for users with $wgEnableProfileInfo = true;
 68+* Fixed an XSS vulnerability in profileinfo.php for installations with
 69+ $wgEnableProfileInfo = true (false by default)
6970 * Fixed a case where an X-Vary-Options header was sent despite $wgUseXVO being
7071 false. Fixed a minor header parsing issue when $wgUseXVO = true.
 72+* Fixed a register_globals arbitrary inclusion vulnerability in
 73+ MediaWikiParserTest.php, introduced in 1.16 beta 1.
7174
7275 == Changes since 1.16 beta 2 ==
7376

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r68544* Removed require/require_once from maintenance scripts where possible, repla...tstarling02:55, 25 June 2010

Status & tagging log