Issues (2010)

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.

wp-admin/install.php (3 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
2
/**
3
 * WordPress Installer
4
 *
5
 * @package WordPress
6
 * @subpackage Administration
7
 */
8
9
// Sanity check.
10
if ( false ) {
11
?>
12
<!DOCTYPE html>
13
<html xmlns="http://www.w3.org/1999/xhtml">
14
<head>
15
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
16
	<title>Error: PHP is not running</title>
17
</head>
18
<body class="wp-core-ui">
19
	<p id="logo"><a href="https://wordpress.org/">WordPress</a></p>
20
	<h1>Error: PHP is not running</h1>
21
	<p>WordPress requires that your web server is running PHP. Your server does not have PHP installed, or PHP is turned off.</p>
22
</body>
23
</html>
24
<?php
25
}
26
27
/**
28
 * We are installing WordPress.
29
 *
30
 * @since 1.5.1
31
 * @var bool
32
 */
33
define( 'WP_INSTALLING', true );
34
35
/** Load WordPress Bootstrap */
36
require_once( dirname( dirname( __FILE__ ) ) . '/wp-load.php' );
37
38
/** Load WordPress Administration Upgrade API */
39
require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
40
41
/** Load WordPress Translation Install API */
42
require_once( ABSPATH . 'wp-admin/includes/translation-install.php' );
43
44
/** Load wpdb */
45
require_once( ABSPATH . WPINC . '/wp-db.php' );
46
47
nocache_headers();
48
49
$step = isset( $_GET['step'] ) ? (int) $_GET['step'] : 0;
50
51
/**
52
 * Display install header.
53
 *
54
 * @since 2.5.0
55
 *
56
 * @param string $body_classes
57
 */
58
function display_header( $body_classes = '' ) {
59
	header( 'Content-Type: text/html; charset=utf-8' );
60
	if ( is_rtl() ) {
61
		$body_classes .= 'rtl';
62
	}
63
	if ( $body_classes ) {
64
		$body_classes = ' ' . $body_classes;
65
	}
66
?>
67
<!DOCTYPE html>
68
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
69
<head>
70
	<meta name="viewport" content="width=device-width" />
71
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
72
	<meta name="robots" content="noindex,nofollow" />
73
	<title><?php _e( 'WordPress &rsaquo; Installation' ); ?></title>
74
	<?php
75
		wp_admin_css( 'install', true );
76
		wp_admin_css( 'dashicons', true );
77
	?>
78
</head>
79
<body class="wp-core-ui<?php echo $body_classes ?>">
80
<p id="logo"><a href="<?php echo esc_url( __( 'https://wordpress.org/' ) ); ?>" tabindex="-1"><?php _e( 'WordPress' ); ?></a></p>
81
82
<?php
83
} // end display_header()
84
85
/**
86
 * Display installer setup form.
87
 *
88
 * @since 2.8.0
89
 *
90
 * @param string|null $error
91
 */
92
function display_setup_form( $error = null ) {
93
	global $wpdb;
94
95
	$sql = $wpdb->prepare( "SHOW TABLES LIKE %s", $wpdb->esc_like( $wpdb->users ) );
96
	$user_table = ( $wpdb->get_var( $sql ) != null );
97
98
	// Ensure that Blogs appear in search engines by default.
99
	$blog_public = 1;
100
	if ( isset( $_POST['weblog_title'] ) ) {
101
		$blog_public = isset( $_POST['blog_public'] );
102
	}
103
104
	$weblog_title = isset( $_POST['weblog_title'] ) ? trim( wp_unslash( $_POST['weblog_title'] ) ) : '';
105
	$user_name = isset($_POST['user_name']) ? trim( wp_unslash( $_POST['user_name'] ) ) : '';
106
	$admin_email  = isset( $_POST['admin_email']  ) ? trim( wp_unslash( $_POST['admin_email'] ) ) : '';
107
108
	if ( ! is_null( $error ) ) {
109
?>
110
<h1><?php _ex( 'Welcome', 'Howdy' ); ?></h1>
111
<p class="message"><?php echo $error; ?></p>
112
<?php } ?>
113
<form id="setup" method="post" action="install.php?step=2" novalidate="novalidate">
114
	<table class="form-table">
115
		<tr>
116
			<th scope="row"><label for="weblog_title"><?php _e( 'Site Title' ); ?></label></th>
117
			<td><input name="weblog_title" type="text" id="weblog_title" size="25" value="<?php echo esc_attr( $weblog_title ); ?>" /></td>
118
		</tr>
119
		<tr>
120
			<th scope="row"><label for="user_login"><?php _e('Username'); ?></label></th>
121
			<td>
122
			<?php
123
			if ( $user_table ) {
124
				_e('User(s) already exists.');
125
				echo '<input name="user_name" type="hidden" value="admin" />';
126
			} else {
127
				?><input name="user_name" type="text" id="user_login" size="25" value="<?php echo esc_attr( sanitize_user( $user_name, true ) ); ?>" />
128
				<p><?php _e( 'Usernames can have only alphanumeric characters, spaces, underscores, hyphens, periods, and the @ symbol.' ); ?></p>
129
			<?php
130
			} ?>
131
			</td>
132
		</tr>
133
		<?php if ( ! $user_table ) : ?>
134
		<tr class="form-field form-required user-pass1-wrap">
135
			<th scope="row">
136
				<label for="pass1">
137
					<?php _e( 'Password' ); ?>
138
				</label>
139
			</th>
140
			<td>
141
				<div class="">
142
					<?php $initial_password = isset( $_POST['admin_password'] ) ? stripslashes( $_POST['admin_password'] ) : wp_generate_password( 18 ); ?>
143
					<input type="password" name="admin_password" id="pass1" class="regular-text" autocomplete="off" data-reveal="1" data-pw="<?php echo esc_attr( $initial_password ); ?>" aria-describedby="pass-strength-result" />
144
					<button type="button" class="button button-secondary wp-hide-pw hide-if-no-js" data-start-masked="<?php echo (int) isset( $_POST['admin_password'] ); ?>" data-toggle="0" aria-label="<?php esc_attr_e( 'Hide password' ); ?>">
145
						<span class="dashicons dashicons-hidden"></span>
146
						<span class="text"><?php _e( 'Hide' ); ?></span>
147
					</button>
148
					<div id="pass-strength-result" aria-live="polite"></div>
149
				</div>
150
				<p><span class="description important hide-if-no-js">
151
				<strong><?php _e( 'Important:' ); ?></strong>
152
				<?php /* translators: The non-breaking space prevents 1Password from thinking the text "log in" should trigger a password save prompt. */ ?>
153
				<?php _e( 'You will need this password to log&nbsp;in. Please store it in a secure location.' ); ?></span></p>
154
			</td>
155
		</tr>
156
		<tr class="form-field form-required user-pass2-wrap hide-if-js">
157
			<th scope="row">
158
				<label for="pass2"><?php _e( 'Repeat Password' ); ?>
159
					<span class="description"><?php _e( '(required)' ); ?></span>
160
				</label>
161
			</th>
162
			<td>
163
				<input name="admin_password2" type="password" id="pass2" autocomplete="off" />
164
			</td>
165
		</tr>
166
		<tr class="pw-weak">
167
			<th scope="row"><?php _e( 'Confirm Password' ); ?></th>
168
			<td>
169
				<label>
170
					<input type="checkbox" name="pw_weak" class="pw-checkbox" />
171
					<?php _e( 'Confirm use of weak password' ); ?>
172
				</label>
173
			</td>
174
		</tr>
175
		<?php endif; ?>
176
		<tr>
177
			<th scope="row"><label for="admin_email"><?php _e( 'Your Email' ); ?></label></th>
178
			<td><input name="admin_email" type="email" id="admin_email" size="25" value="<?php echo esc_attr( $admin_email ); ?>" />
179
			<p><?php _e( 'Double-check your email address before continuing.' ); ?></p></td>
180
		</tr>
181
		<tr>
182
			<th scope="row"><?php has_action( 'blog_privacy_selector' ) ? _e( 'Site Visibility' ) : _e( 'Search Engine Visibility' ); ?></th>
183
			<td>
184
				<fieldset>
185
					<legend class="screen-reader-text"><span><?php has_action( 'blog_privacy_selector' ) ? _e( 'Site Visibility' ) : _e( 'Search Engine Visibility' ); ?> </span></legend>
186
					<?php
187
					if ( has_action( 'blog_privacy_selector' ) ) { ?>
188
						<input id="blog-public" type="radio" name="blog_public" value="1" <?php checked( 1, $blog_public ); ?> />
189
						<label for="blog-public"><?php _e( 'Allow search engines to index this site' );?></label><br/>
190
						<input id="blog-norobots" type="radio" name="blog_public" value="0" <?php checked( 0, $blog_public ); ?> />
191
						<label for="blog-norobots"><?php _e( 'Discourage search engines from indexing this site' ); ?></label>
192
						<p class="description"><?php _e( 'Note: Neither of these options blocks access to your site &mdash; it is up to search engines to honor your request.' ); ?></p>
193
						<?php
194
						/** This action is documented in wp-admin/options-reading.php */
195
						do_action( 'blog_privacy_selector' );
196
					 } else { ?>
197
						<label for="blog_public"><input name="blog_public" type="checkbox" id="blog_public" value="0" <?php checked( 0, $blog_public ); ?> />
198
						<?php _e( 'Discourage search engines from indexing this site' ); ?></label>
199
						<p class="description"><?php _e( 'It is up to search engines to honor this request.' ); ?></p>
200
					<?php } ?>
201
				</fieldset>
202
			</td>
203
		</tr>
204
	</table>
205
	<p class="step"><?php submit_button( __( 'Install WordPress' ), 'large', 'Submit', false, array( 'id' => 'submit' ) ); ?></p>
206
	<input type="hidden" name="language" value="<?php echo isset( $_REQUEST['language'] ) ? esc_attr( $_REQUEST['language'] ) : ''; ?>" />
207
</form>
208
<?php
209
} // end display_setup_form()
210
211
// Let's check to make sure WP isn't already installed.
212
if ( is_blog_installed() ) {
213
	display_header();
214
	die(
215
		'<h1>' . __( 'Already Installed' ) . '</h1>' .
216
		'<p>' . __( 'You appear to have already installed WordPress. To reinstall please clear your old database tables first.' ) . '</p>' .
217
		'<p class="step"><a href="' . esc_url( wp_login_url() ) . '" class="button button-large">' . __( 'Log In' ) . '</a></p>' .
218
		'</body></html>'
219
	);
220
}
221
222
/**
223
 * @global string $wp_version
224
 * @global string $required_php_version
225
 * @global string $required_mysql_version
226
 * @global wpdb   $wpdb
227
 */
228
global $wp_version, $required_php_version, $required_mysql_version;
229
230
$php_version    = phpversion();
231
$mysql_version  = $wpdb->db_version();
232
$php_compat     = version_compare( $php_version, $required_php_version, '>=' );
233
$mysql_compat   = version_compare( $mysql_version, $required_mysql_version, '>=' ) || file_exists( WP_CONTENT_DIR . '/db.php' );
234
235
if ( !$mysql_compat && !$php_compat )
236
	$compat = sprintf( __( 'You cannot install because <a href="https://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.' ), $wp_version, $required_php_version, $required_mysql_version, $php_version, $mysql_version );
237
elseif ( !$php_compat )
238
	$compat = sprintf( __( 'You cannot install because <a href="https://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher. You are running version %3$s.' ), $wp_version, $required_php_version, $php_version );
239
elseif ( !$mysql_compat )
240
	$compat = sprintf( __( 'You cannot install because <a href="https://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires MySQL version %2$s or higher. You are running version %3$s.' ), $wp_version, $required_mysql_version, $mysql_version );
241
242
if ( !$mysql_compat || !$php_compat ) {
243
	display_header();
244
	die( '<h1>' . __( 'Insufficient Requirements' ) . '</h1><p>' . $compat . '</p></body></html>' );
245
}
246
247
if ( ! is_string( $wpdb->base_prefix ) || '' === $wpdb->base_prefix ) {
248
	display_header();
249
	die(
250
		'<h1>' . __( 'Configuration Error' ) . '</h1>' .
251
		'<p>' . sprintf(
252
			/* translators: %s: wp-config.php */
253
			__( 'Your %s file has an empty database table prefix, which is not supported.' ),
254
			'<code>wp-config.php</code>'
255
		) . '</p></body></html>'
256
	);
257
}
258
259
// Set error message if DO_NOT_UPGRADE_GLOBAL_TABLES isn't set as it will break install.
260
if ( defined( 'DO_NOT_UPGRADE_GLOBAL_TABLES' ) ) {
261
	display_header();
262
	die(
263
		'<h1>' . __( 'Configuration Error' ) . '</h1>' .
264
		'<p>' . sprintf(
265
			/* translators: %s: DO_NOT_UPGRADE_GLOBAL_TABLES */
266
			__( 'The constant %s cannot be defined when installing WordPress.' ),
267
			'<code>DO_NOT_UPGRADE_GLOBAL_TABLES</code>'
268
		) . '</p></body></html>'
269
	);
270
}
271
272
/**
273
 * @global string    $wp_local_package
274
 * @global WP_Locale $wp_locale
275
 */
276
$language = '';
277 View Code Duplication
if ( ! empty( $_REQUEST['language'] ) ) {
278
	$language = preg_replace( '/[^a-zA-Z_]/', '', $_REQUEST['language'] );
279
} elseif ( isset( $GLOBALS['wp_local_package'] ) ) {
280
	$language = $GLOBALS['wp_local_package'];
281
}
282
283
$scripts_to_print = array( 'jquery' );
284
285
switch($step) {
286 View Code Duplication
	case 0: // Step 0
287
		if ( wp_can_install_language_pack() && empty( $language ) && ( $languages = wp_get_available_translations() ) ) {
288
			$scripts_to_print[] = 'language-chooser';
289
			display_header( 'language-chooser' );
290
			echo '<form id="setup" method="post" action="?step=1">';
291
			wp_install_language_form( $languages );
292
			echo '</form>';
293
			break;
294
		}
295
296
		// Deliberately fall through if we can't reach the translations API.
297
298
	case 1: // Step 1, direct link or from language chooser.
299 View Code Duplication
		if ( ! empty( $language ) ) {
300
			$loaded_language = wp_download_language_pack( $language );
301
			if ( $loaded_language ) {
302
				load_default_textdomain( $loaded_language );
0 ignored issues
show
It seems like $loaded_language defined by wp_download_language_pack($language) on line 300 can also be of type boolean; however, load_default_textdomain() does only seem to accept string|null, maybe add an additional type check?

If a method or function can return multiple different values and unless you are sure that you only can receive a single value in this context, we recommend to add an additional type check:

/**
 * @return array|string
 */
function returnsDifferentValues($x) {
    if ($x) {
        return 'foo';
    }

    return array();
}

$x = returnsDifferentValues($y);
if (is_array($x)) {
    // $x is an array.
}

If this a common case that PHP Analyzer should handle natively, please let us know by opening an issue.

Loading history...
303
				$GLOBALS['wp_locale'] = new WP_Locale();
304
			}
305
		}
306
307
		$scripts_to_print[] = 'user-profile';
308
309
		display_header();
310
?>
311
<h1><?php _ex( 'Welcome', 'Howdy' ); ?></h1>
312
<p><?php _e( 'Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you&#8217;ll be on your way to using the most extendable and powerful personal publishing platform in the world.' ); ?></p>
313
314
<h2><?php _e( 'Information needed' ); ?></h2>
315
<p><?php _e( 'Please provide the following information. Don&#8217;t worry, you can always change these settings later.' ); ?></p>
316
317
<?php
318
		display_setup_form();
319
		break;
320
	case 2:
321 View Code Duplication
		if ( ! empty( $language ) && load_default_textdomain( $language ) ) {
322
			$loaded_language = $language;
323
			$GLOBALS['wp_locale'] = new WP_Locale();
324
		} else {
325
			$loaded_language = 'en_US';
326
		}
327
328
		if ( ! empty( $wpdb->error ) )
329
			wp_die( $wpdb->error->get_error_message() );
330
331
		$scripts_to_print[] = 'user-profile';
332
333
		display_header();
334
		// Fill in the data we gathered
335
		$weblog_title = isset( $_POST['weblog_title'] ) ? trim( wp_unslash( $_POST['weblog_title'] ) ) : '';
336
		$user_name = isset($_POST['user_name']) ? trim( wp_unslash( $_POST['user_name'] ) ) : '';
337
		$admin_password = isset($_POST['admin_password']) ? wp_unslash( $_POST['admin_password'] ) : '';
338
		$admin_password_check = isset($_POST['admin_password2']) ? wp_unslash( $_POST['admin_password2'] ) : '';
339
		$admin_email  = isset( $_POST['admin_email'] ) ?trim( wp_unslash( $_POST['admin_email'] ) ) : '';
340
		$public       = isset( $_POST['blog_public'] ) ? (int) $_POST['blog_public'] : 1;
341
342
		// Check email address.
343
		$error = false;
344
		if ( empty( $user_name ) ) {
345
			// TODO: poka-yoke
346
			display_setup_form( __( 'Please provide a valid username.' ) );
347
			$error = true;
348
		} elseif ( $user_name != sanitize_user( $user_name, true ) ) {
349
			display_setup_form( __( 'The username you provided has invalid characters.' ) );
350
			$error = true;
351
		} elseif ( $admin_password != $admin_password_check ) {
352
			// TODO: poka-yoke
353
			display_setup_form( __( 'Your passwords do not match. Please try again.' ) );
354
			$error = true;
355
		} elseif ( empty( $admin_email ) ) {
356
			// TODO: poka-yoke
357
			display_setup_form( __( 'You must provide an email address.' ) );
358
			$error = true;
359
		} elseif ( ! is_email( $admin_email ) ) {
360
			// TODO: poka-yoke
361
			display_setup_form( __( 'Sorry, that isn&#8217;t a valid email address. Email addresses look like <code>[email protected]</code>.' ) );
362
			$error = true;
363
		}
364
365
		if ( $error === false ) {
366
			$wpdb->show_errors();
367
			$result = wp_install( $weblog_title, $user_name, $admin_email, $public, '', wp_slash( $admin_password ), $loaded_language );
0 ignored issues
show
$public is of type integer, but the function expects a boolean.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
It seems like wp_slash($admin_password) targeting wp_slash() can also be of type array; however, wp_install() does only seem to accept string, maybe add an additional type check?

This check looks at variables that are passed out again to other methods.

If the outgoing method call has stricter type requirements than the method itself, an issue is raised.

An additional type check may prevent trouble.

Loading history...
368
?>
369
370
<h1><?php _e( 'Success!' ); ?></h1>
371
372
<p><?php _e( 'WordPress has been installed. Thank you, and enjoy!' ); ?></p>
373
374
<table class="form-table install-success">
375
	<tr>
376
		<th><?php _e( 'Username' ); ?></th>
377
		<td><?php echo esc_html( sanitize_user( $user_name, true ) ); ?></td>
378
	</tr>
379
	<tr>
380
		<th><?php _e( 'Password' ); ?></th>
381
		<td><?php
382
		if ( ! empty( $result['password'] ) && empty( $admin_password_check ) ): ?>
383
			<code><?php echo esc_html( $result['password'] ) ?></code><br />
384
		<?php endif ?>
385
			<p><?php echo $result['password_message'] ?></p>
386
		</td>
387
	</tr>
388
</table>
389
390
<p class="step"><a href="<?php echo esc_url( wp_login_url() ); ?>" class="button button-large"><?php _e( 'Log In' ); ?></a></p>
391
392
<?php
393
		}
394
		break;
395
}
396
397
if ( ! wp_is_mobile() ) {
398
	?>
399
<script type="text/javascript">var t = document.getElementById('weblog_title'); if (t){ t.focus(); }</script>
400
	<?php
401
}
402
403
wp_print_scripts( $scripts_to_print );
404
?>
405
<script type="text/javascript">
406
jQuery( function( $ ) {
407
	$( '.hide-if-no-js' ).removeClass( 'hide-if-no-js' );
408
} );
409
</script>
410
</body>
411
</html>
412