Issues (4122)

Security Analysis    not enabled

This project does not seem to handle request data directly as such no vulnerable execution paths were found.

  Cross-Site Scripting
Cross-Site Scripting enables an attacker to inject code into the response of a web-request that is viewed by other users. It can for example be used to bypass access controls, or even to take over other users' accounts.
  File Exposure
File Exposure allows an attacker to gain access to local files that he should not be able to access. These files can for example include database credentials, or other configuration files.
  File Manipulation
File Manipulation enables an attacker to write custom data to files. This potentially leads to injection of arbitrary code on the server.
  Object Injection
Object Injection enables an attacker to inject an object into PHP code, and can lead to arbitrary code execution, file exposure, or file manipulation attacks.
  Code Injection
Code Injection enables an attacker to execute arbitrary code on the server.
  Response Splitting
Response Splitting can be used to send arbitrary responses.
  File Inclusion
File Inclusion enables an attacker to inject custom files into PHP's file loading mechanism, either explicitly passed to include, or for example via PHP's auto-loading mechanism.
  Command Injection
Command Injection enables an attacker to inject a shell command that is execute with the privileges of the web-server. This can be used to expose sensitive data, or gain access of your server.
  SQL Injection
SQL Injection enables an attacker to execute arbitrary SQL code on your database server gaining access to user data, or manipulating user data.
  XPath Injection
XPath Injection enables an attacker to modify the parts of XML document that are read. If that XML document is for example used for authentication, this can lead to further vulnerabilities similar to SQL Injection.
  LDAP Injection
LDAP Injection enables an attacker to inject LDAP statements potentially granting permission to run unauthorized queries, or modify content inside the LDAP tree.
  Header Injection
  Other Vulnerability
This category comprises other attack vectors such as manipulating the PHP runtime, loading custom extensions, freezing the runtime, or similar.
  Regex Injection
Regex Injection enables an attacker to execute arbitrary code in your PHP process.
  XML Injection
XML Injection enables an attacker to read files on your local filesystem including configuration files, or can be abused to freeze your web-server process.
  Variable Injection
Variable Injection enables an attacker to overwrite program variables with custom data, and can lead to further vulnerabilities.
Unfortunately, the security analysis is currently not available for your project. If you are a non-commercial open-source project, please contact support to gain access.

maintenance/deleteEqualMessages.php (2 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
0 ignored issues
show
Coding Style Compatibility introduced by
For compatibility and reusability of your code, PSR1 recommends that a file should introduce either new symbols (like classes, functions, etc.) or have side-effects (like outputting something, or including other files), but not both at the same time. The first symbol is defined on line 30 and the first side effect is on line 22.

The PSR-1: Basic Coding Standard recommends that a file should either introduce new symbols, that is classes, functions, constants or similar, or have side effects. Side effects are anything that executes logic, like for example printing output, changing ini settings or writing to a file.

The idea behind this recommendation is that merely auto-loading a class should not change the state of an application. It also promotes a cleaner style of programming and makes your code less prone to errors, because the logic is not spread out all over the place.

To learn more about the PSR-1, please see the PHP-FIG site on the PSR-1.

Loading history...
2
/**
3
 * This program is free software; you can redistribute it and/or modify
4
 * it under the terms of the GNU General Public License as published by
5
 * the Free Software Foundation; either version 2 of the License, or
6
 * (at your option) any later version.
7
 *
8
 * This program is distributed in the hope that it will be useful,
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
 * GNU General Public License for more details.
12
 *
13
 * You should have received a copy of the GNU General Public License along
14
 * with this program; if not, write to the Free Software Foundation, Inc.,
15
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16
 * http://www.gnu.org/copyleft/gpl.html
17
 *
18
 * @file
19
 * @ingroup Maintenance
20
 */
21
22
require_once __DIR__ . '/Maintenance.php';
23
24
/**
25
 * Maintenance script that deletes all pages in the MediaWiki namespace
26
 * of which the content is equal to the system default.
27
 *
28
 * @ingroup Maintenance
29
 */
30
class DeleteEqualMessages extends Maintenance {
31
	public function __construct() {
32
		parent::__construct();
33
		$this->addDescription( 'Deletes all pages in the MediaWiki namespace that are equal to '
34
			. 'the default message' );
35
		$this->addOption( 'delete', 'Actually delete the pages (default: dry run)' );
36
		$this->addOption( 'delete-talk', 'Don\'t leave orphaned talk pages behind during deletion' );
37
		$this->addOption( 'lang-code', 'Check for subpages of this language code (default: root '
38
			. 'page against content language). Use value "*" to run for all mwfile language code '
39
			. 'subpages (including the base pages that override content language).', false, true );
40
	}
41
42
	/**
43
	 * @param string|bool $langCode See --lang-code option.
44
	 * @param array &$messageInfo
45
	 */
46
	protected function fetchMessageInfo( $langCode, array &$messageInfo ) {
47
		global $wgContLang;
48
49
		if ( $langCode ) {
50
			$this->output( "\n... fetching message info for language: $langCode" );
51
			$nonContLang = true;
52
		} else {
53
			$this->output( "\n... fetching message info for content language" );
54
			$langCode = $wgContLang->getCode();
55
			$nonContLang = false;
56
		}
57
58
		/* Based on SpecialAllmessages::reallyDoQuery #filter=modified */
59
60
		$l10nCache = Language::getLocalisationCache();
61
		$messageNames = $l10nCache->getSubitemList( 'en', 'messages' );
62
		// Normalise message names for NS_MEDIAWIKI page_title
63
		$messageNames = array_map( [ $wgContLang, 'ucfirst' ], $messageNames );
64
65
		$statuses = AllMessagesTablePager::getCustomisedStatuses(
66
			$messageNames, $langCode, $nonContLang );
67
		// getCustomisedStatuses is stripping the sub page from the page titles, add it back
68
		$titleSuffix = $nonContLang ? "/$langCode" : '';
69
70
		foreach ( $messageNames as $key ) {
71
			$customised = isset( $statuses['pages'][$key] );
72
			if ( $customised ) {
73
				$actual = wfMessage( $key )->inLanguage( $langCode )->plain();
74
				$default = wfMessage( $key )->inLanguage( $langCode )->useDatabase( false )->plain();
75
76
				$messageInfo['relevantPages']++;
77
78
				if (
79
					// Exclude messages that are empty by default, such as sitenotice, specialpage
80
					// summaries and accesskeys.
81
					$default !== '' && $default !== '-' &&
82
						$actual === $default
83
				) {
84
					$hasTalk = isset( $statuses['talks'][$key] );
85
					$messageInfo['results'][] = [
86
						'title' => $key . $titleSuffix,
87
						'hasTalk' => $hasTalk,
88
					];
89
					$messageInfo['equalPages']++;
90
					if ( $hasTalk ) {
91
						$messageInfo['equalPagesTalks']++;
92
					}
93
				}
94
			}
95
		}
96
	}
97
98
	public function execute() {
99
		$doDelete = $this->hasOption( 'delete' );
100
		$doDeleteTalk = $this->hasOption( 'delete-talk' );
101
		$langCode = $this->getOption( 'lang-code' );
102
103
		$messageInfo = [
104
			'relevantPages' => 0,
105
			'equalPages' => 0,
106
			'equalPagesTalks' => 0,
107
			'results' => [],
108
		];
109
110
		$this->output( 'Checking for pages with default message...' );
111
112
		// Load message information
113
		if ( $langCode ) {
114
			$langCodes = Language::fetchLanguageNames( null, 'mwfile' );
115
			if ( $langCode === '*' ) {
116
				// All valid lang-code subpages in NS_MEDIAWIKI that
117
				// override the messsages in that language
118
				foreach ( $langCodes as $key => $value ) {
119
					$this->fetchMessageInfo( $key, $messageInfo );
120
				}
121
				// Lastly, the base pages in NS_MEDIAWIKI that override
122
				// messages in content language
123
				$this->fetchMessageInfo( false, $messageInfo );
124
			} else {
125
				if ( !isset( $langCodes[$langCode] ) ) {
126
					$this->error( 'Invalid language code: ' . $langCode, 1 );
127
				}
128
				$this->fetchMessageInfo( $langCode, $messageInfo );
129
			}
130
		} else {
131
			$this->fetchMessageInfo( false, $messageInfo );
132
		}
133
134
		if ( $messageInfo['equalPages'] === 0 ) {
135
			// No more equal messages left
136
			$this->output( "\ndone.\n" );
137
138
			return;
139
		}
140
141
		$this->output( "\n{$messageInfo['relevantPages']} pages in the MediaWiki namespace "
142
			. "override messages." );
143
		$this->output( "\n{$messageInfo['equalPages']} pages are equal to the default message "
144
			. "(+ {$messageInfo['equalPagesTalks']} talk pages).\n" );
145
146
		if ( !$doDelete ) {
147
			$list = '';
148
			foreach ( $messageInfo['results'] as $result ) {
149
				$title = Title::makeTitle( NS_MEDIAWIKI, $result['title'] );
150
				$list .= "* [[$title]]\n";
151
				if ( $result['hasTalk'] ) {
152
					$title = Title::makeTitle( NS_MEDIAWIKI_TALK, $result['title'] );
153
					$list .= "* [[$title]]\n";
154
				}
155
			}
156
			$this->output( "\nList:\n$list\nRun the script again with --delete to delete these pages" );
157
			if ( $messageInfo['equalPagesTalks'] !== 0 ) {
158
				$this->output( " (include --delete-talk to also delete the talk pages)" );
159
			}
160
			$this->output( "\n" );
161
162
			return;
163
		}
164
165
		$user = User::newSystemUser( 'MediaWiki default', [ 'steal' => true ] );
166
		if ( !$user ) {
167
			$this->error( "Invalid username", true );
168
		}
169
		global $wgUser;
170
		$wgUser = $user;
171
172
		// Hide deletions from RecentChanges
173
		$user->addGroup( 'bot' );
174
175
		// Handle deletion
176
		$this->output( "\n...deleting equal messages (this may take a long time!)..." );
177
		$dbw = $this->getDB( DB_MASTER );
178
		foreach ( $messageInfo['results'] as $result ) {
179
			wfWaitForSlaves();
0 ignored issues
show
Deprecated Code introduced by
The function wfWaitForSlaves() has been deprecated with message: since 1.27 Use LBFactory::waitForReplication

This function has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the function will be removed from the class and what other function to use instead.

Loading history...
180
			$dbw->ping();
181
			$title = Title::makeTitle( NS_MEDIAWIKI, $result['title'] );
182
			$this->output( "\n* [[$title]]" );
183
			$page = WikiPage::factory( $title );
184
			$error = ''; // Passed by ref
185
			$success = $page->doDeleteArticle( 'No longer required', false, 0, true, $error, $user );
186
			if ( !$success ) {
187
				$this->output( " (Failed!)" );
188
			}
189
			if ( $result['hasTalk'] && $doDeleteTalk ) {
190
				$title = Title::makeTitle( NS_MEDIAWIKI_TALK, $result['title'] );
191
				$this->output( "\n* [[$title]]" );
192
				$page = WikiPage::factory( $title );
193
				$error = ''; // Passed by ref
194
				$success = $page->doDeleteArticle( 'Orphaned talk page of no longer required message',
195
					false, 0, true, $error, $user );
196
				if ( !$success ) {
197
					$this->output( " (Failed!)" );
198
				}
199
			}
200
		}
201
		$this->output( "\n\ndone!\n" );
202
	}
203
}
204
205
$maintClass = "DeleteEqualMessages";
206
require_once RUN_MAINTENANCE_IF_MAIN;
207