-
Notifications
You must be signed in to change notification settings - Fork 100
/
security.php
399 lines (327 loc) · 14.5 KB
/
security.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
<?php
/*
Plugin Name: VIP Security
Description: Various security enhancements
Author: Automattic
Version: 1.2
License: GPL version 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*/
// phpcs:disable WordPressVIPMinimum.Variables.RestrictedVariables.cache_constraints___SERVER__REMOTE_ADDR__
require_once __DIR__ . '/security/class-lockout.php';
require_once __DIR__ . '/security/machine-user.php';
require_once __DIR__ . '/security/class-private-sites.php';
require_once __DIR__ . '/security/login-error.php';
require_once __DIR__ . '/security/password.php';
use Automattic\VIP\Utils\Context;
define( 'CACHE_GROUP_LOGIN_LIMIT', 'vip_login_limit' );
define( 'CACHE_GROUP_LOST_PASSWORD_LIMIT', 'vip_lost_password_limit' );
define( 'CACHE_KEY_LOCK_PREFIX', 'locked_' );
define( 'ERROR_CODE_LOGIN_LIMIT_EXCEEDED', 'login_limit_exceeded' );
define( 'ERROR_CODE_LOST_PASSWORD_LIMIT_EXCEEDED', 'lost_password_limit_exceeded' );
// If the site has any privacy restrictions (enabled by constant, ip restriction, http basic auth), initialize the Private_Sites module
if ( \Automattic\VIP\Security\Private_Sites::has_privacy_restrictions() ) {
\Automattic\VIP\Security\Private_Sites::instance();
}
/**
* Enforces strict username sanitization.
*
* @param string $username
* @return string
*/
function vip_strict_sanitize_username( $username ) {
if ( ! is_scalar( $username ) ) {
return '';
}
if ( is_email( $username ) ) {
// We don't want to do this strict filter on email addresses. Sanitize the email and return.
$username = sanitize_email( $username );
return $username;
}
$username = sanitize_user( $username, true );
return $username;
}
function wpcom_vip_is_restricted_username( $username ) {
return 'admin' === $username
|| WPCOM_VIP_MACHINE_USER_LOGIN === $username
|| WPCOM_VIP_MACHINE_USER_EMAIL === $username;
}
/**
* Return the defaults for login and password reset authorization limits, windows, and lockout periods.
*
* @internal The values are subject to change without notice.
*/
function _vip_get_auth_count_limit_defaults() {
if ( Context::is_fedramp() ) {
return [
'ip_username_login' => 3,
'ip_login' => 5,
'username_login' => 10,
'ip_username_password_reset' => 3,
'ip_password_reset' => 3,
'username_password_reset' => 15,
'ip_username_window' => MINUTE_IN_SECONDS * 15,
'ip_window' => MINUTE_IN_SECONDS * 15,
'username_window' => MINUTE_IN_SECONDS * 15,
'ip_username_lockout' => MINUTE_IN_SECONDS * 30,
'ip_lockout' => MINUTE_IN_SECONDS * 30,
'username_lockout' => MINUTE_IN_SECONDS * 30,
];
}
return [
'ip_username_login' => 5,
'ip_login' => 50,
'username_login' => 25,
'ip_username_password_reset' => 3,
'ip_password_reset' => 3,
'username_password_reset' => 15,
'ip_username_window' => MINUTE_IN_SECONDS * 5,
'ip_window' => MINUTE_IN_SECONDS * 60,
'username_window' => MINUTE_IN_SECONDS * 25,
'ip_username_lockout' => MINUTE_IN_SECONDS * 5,
'ip_lockout' => MINUTE_IN_SECONDS * 60,
'username_lockout' => MINUTE_IN_SECONDS * 25,
];
}
/**
* Return the cache keys used for login and forgotten password rate limiting.
*
* @internal
*
* @param string $raw_username The username to use for the cache keys.
* @return array Associative array of cache keys.
*/
function _vip_login_cache_keys( $raw_username ) {
$username = vip_strict_sanitize_username( $raw_username );
// phpcs:ignore WordPressVIPMinimum.Variables.ServerVariables.UserControlledHeaders
$ip = filter_var( $_SERVER['REMOTE_ADDR'] ?? '', FILTER_VALIDATE_IP, [ 'options' => [ 'default' => '' ] ] );
return [
'ip_username_cache_key' => $ip . '|' . $username,
'ip_cache_key' => $ip,
'username_cache_key' => $username,
];
}
/**
* Check if counts for the given username and IP address are above the given thresholds.
* If so, the account is locked for a period of time.
*
* @internal
*
* @param string $username The username to check.
* @param string $cache_group The cache group to use for the rate limiting.
*/
function _vip_maybe_temporary_lock_account( $username, $cache_group ) {
$cache_keys = _vip_login_cache_keys( $username );
$defaults = _vip_get_auth_count_limit_defaults();
$ip_username_count = wp_cache_get( $cache_keys['ip_username_cache_key'], $cache_group );
$ip_count = wp_cache_get( $cache_keys['ip_cache_key'], $cache_group );
$username_count = wp_cache_get( $cache_keys['username_cache_key'], $cache_group );
$ip = $cache_keys['ip_cache_key'];
$event_type = CACHE_GROUP_LOST_PASSWORD_LIMIT === $cache_group ? 'password_reset' : 'login';
/**
* Filters the threshold for limiting logins by IP + username combination.
*
* @param int $threshold IP + Username combination login threshold.
* @param string $ip IP address of the login request.
* @param string $username Username of the login request.
*/
$ip_username_threshold = apply_filters( "wpcom_vip_ip_username_{$event_type}_threshold", $defaults[ "ip_username_{$event_type}" ], $ip, $username );
/**
* Filters the threshold for limiting logins by IP.
*
* @param int $threshold IP login threshold.
* @param string $ip IP address of the login request.
*/
$ip_threshold = apply_filters( "wpcom_vip_ip_{$event_type}_threshold", $defaults[ "ip_{$event_type}" ], $ip );
/**
* Filters the threshold for limiting logins by username.
*
* @param int $threshold Username login threshold.
* @param string $username Username of the login request.
*/
$username_threshold = apply_filters( "wpcom_vip_username_{$event_type}_threshold", $defaults[ "username_{$event_type}" ], $username );
$is_restricted_username = wpcom_vip_is_restricted_username( $username );
if ( $is_restricted_username ) {
$ip_username_threshold = 2;
}
if ( $ip_username_count >= $ip_username_threshold || $ip_count >= $ip_threshold || $username_count >= $username_threshold ) {
/**
* Fires when a login limit or password reset is exceeded.
*
* @param string $username Username of the request.
*/
do_action( "{$event_type}_limit_exceeded", $username );
$lock_reason = 'username';
if ( $ip_username_count >= $ip_username_threshold ) {
$lock_reason = 'ip_username';
} elseif ( $ip_count >= $ip_threshold ) {
$lock_reason = 'ip';
}
$default_lockout = $defaults[ "{$lock_reason}_lockout" ];
/**
* Filters the lenght of locked out time.
* vip_<login|password_reset>_<ip|ip_username|username>_lockout
*
* @param int $lock_interval Seconds count of the lockout.
* @param string $username Username of the request.
*/
$lock_interval = apply_filters( "vip_{$event_type}_{$lock_reason}_lockout", $default_lockout, $username );
wp_cache_set( CACHE_KEY_LOCK_PREFIX . $cache_keys[ "{$lock_reason}_cache_key" ], true, $cache_group, $lock_interval ); // phpcs:ignore WordPressVIPMinimum.Performance.LowExpiryCacheTime.CacheTimeUndetermined
}
}
/**
* Tracks and caches IP, IP|Username events, and Username events.
* We're tracking IP, and IP|Username events for both login attempts and
* password resets but only tracking Username events for password resets.
*
* @param string $username The username to track.
* @param string $cache_group The cache group to track the $username to.
*/
function wpcom_vip_track_auth_attempt( $username, $cache_group ) {
$cache_keys = _vip_login_cache_keys( $username );
$defaults = _vip_get_auth_count_limit_defaults();
foreach ( [ 'ip', 'ip_username', 'username' ] as $type ) {
$event_type = CACHE_GROUP_LOST_PASSWORD_LIMIT === $cache_group ? 'password_reset' : 'login';
$default = $defaults[ "{$type}_window" ];
/**
* Filters the window for tracking login attempts.
* vip_<login|password_reset>_<ip|ip_username|username>_window
*
* @param int $window Seconds count in the window.
* @param string $username Username of the request.
*/
$event_window = apply_filters( "vip_{$event_type}_{$type}_window", $default, $username );
wp_cache_add( $cache_keys[ "{$type}_cache_key" ], 0, $cache_group, $event_window ); // phpcs:ignore WordPressVIPMinimum.Performance.LowExpiryCacheTime.CacheTimeUndetermined
wp_cache_incr( $cache_keys[ "{$type}_cache_key" ], 1, $cache_group );
}
_vip_maybe_temporary_lock_account( $username, $cache_group );
}
add_filter( 'vip_login_ip_username_window', function ( $window, $username ) {
if ( wpcom_vip_is_restricted_username( $username ) ) {
// Longer, more-strict interval when logging in as admin
return HOUR_IN_SECONDS + $window;
}
return $window;
}, 10, 2 );
function wpcom_vip_login_limiter( $username ) {
wpcom_vip_track_auth_attempt( $username, CACHE_GROUP_LOGIN_LIMIT );
}
add_action( 'wp_login_failed', 'wpcom_vip_login_limiter' );
function wpcom_vip_login_limiter_on_success( $username ) {
$cache_keys = _vip_login_cache_keys( $username );
wp_cache_decr( $cache_keys['ip_username_cache_key'], 1, CACHE_GROUP_LOGIN_LIMIT );
wp_cache_decr( $cache_keys['ip_cache_key'], 1, CACHE_GROUP_LOGIN_LIMIT );
}
add_action( 'wp_login', 'wpcom_vip_login_limiter_on_success' );
function wpcom_vip_limit_logins_for_restricted_usernames( $user, $username ) {
$is_restricted_username = wpcom_vip_is_restricted_username( $username );
if ( $is_restricted_username ) {
return new WP_Error( 'restricted-login', 'Logins are restricted for that user. Please try a different user account.' );
}
return $user;
}
add_filter( 'authenticate', 'wpcom_vip_limit_logins_for_restricted_usernames', 30, 2 ); // core authenticates on 20
function wpcom_vip_login_limiter_authenticate( $user, $username, $password ) {
if ( empty( $username ) && empty( $password ) ) {
return $user;
}
// Do some extra sanitization on the username.
$username = vip_strict_sanitize_username( $username );
$is_login_limited = wpcom_vip_username_is_limited( $username, CACHE_GROUP_LOGIN_LIMIT );
if ( is_wp_error( $is_login_limited ) ) {
return $is_login_limited;
}
return $user;
}
add_filter( 'authenticate', 'wpcom_vip_login_limiter_authenticate', 30, 3 ); // core authenticates on 20
function wpcom_vip_login_limit_dont_show_login_form() {
// phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized, WordPress.Security.NonceVerification.Missing
if ( ! isset( $_SERVER['REQUEST_METHOD'] ) || 'post' != strtolower( $_SERVER['REQUEST_METHOD'] ) || ! isset( $_POST['log'] ) ) {
return;
}
// Do some sanitization on the username.
$username = vip_strict_sanitize_username( $_POST['log'] ); // phpcs:ignore WordPress.Security.NonceVerification.Missing, WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
$error = wpcom_vip_username_is_limited( $username, CACHE_GROUP_LOGIN_LIMIT );
if ( is_wp_error( $error ) ) {
login_header( __( 'Error' ), '', $error );
login_footer();
exit;
}
}
add_action( 'login_form_login', 'wpcom_vip_login_limit_dont_show_login_form' );
function wpcom_vip_login_limit_xmlrpc_error( $error, $user ) {
static $login_limit_error;
if ( is_wp_error( $user ) && ERROR_CODE_LOGIN_LIMIT_EXCEEDED === $user->get_error_code() ) {
// We need to set a persistent error here, as once there is an auth error in a system.multicall, core will no longer trigger any of the rate limit filters for further login attempts in the set.
$login_limit_error = $user;
}
if ( is_wp_error( $login_limit_error ) ) {
return new IXR_Error( 429, $login_limit_error->get_error_message() );
}
return $error;
}
add_filter( 'xmlrpc_login_error', 'wpcom_vip_login_limit_xmlrpc_error', 10, 2 );
function wpcom_set_status_header_on_xmlrpc_failed_login_requests( $error ) {
if ( ! headers_sent() ) {
header( "X-XMLRPC-Error-Code: {$error->code}" );
}
return $error;
}
add_action( 'xmlrpc_login_error', 'wpcom_set_status_header_on_xmlrpc_failed_login_requests' );
/**
* @param WP_Error $errors
* @param WP_User|false $user_data
*/
function wpcom_vip_lost_password_limit( $errors, $user_data ) {
// Don't bother checking if we're already error-ing out
if ( $errors->has_errors() ) {
return $errors;
}
if ( false !== $user_data ) {
$username = $user_data->user_login;
} elseif ( ! empty( $_POST['user_login'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing
// phpcs:ignore WordPress.Security.NonceVerification.Missing, WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- vip_strict_sanitize_username does sanitization
$username = vip_strict_sanitize_username( wp_unslash( $_POST['user_login'] ) );
} else {
return $errors;
}
$is_login_limited = wpcom_vip_username_is_limited( $username, CACHE_GROUP_LOST_PASSWORD_LIMIT );
if ( is_wp_error( $is_login_limited ) ) {
$errors->add( $is_login_limited->get_error_code(), $is_login_limited->get_error_message() );
return $errors;
}
wpcom_vip_track_auth_attempt( $username, CACHE_GROUP_LOST_PASSWORD_LIMIT );
return $errors;
}
add_action( 'lostpassword_post', 'wpcom_vip_lost_password_limit', 10, 2 );
function wpcom_vip_username_is_limited( $username, $cache_group ) {
$cache_keys = _vip_login_cache_keys( $username );
$is_ip_username_locked = wp_cache_get( CACHE_KEY_LOCK_PREFIX . $cache_keys['ip_username_cache_key'], $cache_group );
$is_ip_locked = wp_cache_get( CACHE_KEY_LOCK_PREFIX . $cache_keys['ip_cache_key'], $cache_group );
$is_username_locked = wp_cache_get( CACHE_KEY_LOCK_PREFIX . $cache_keys['username_cache_key'], $cache_group );
if ( $is_ip_username_locked || $is_ip_locked || $is_username_locked ) {
switch ( $cache_group ) {
case CACHE_GROUP_LOST_PASSWORD_LIMIT:
return new WP_Error( ERROR_CODE_LOST_PASSWORD_LIMIT_EXCEEDED, __( 'You have exceeded the password reset limit. Please wait a few minutes and try again.' ) );
case CACHE_GROUP_LOGIN_LIMIT:
return new WP_Error( ERROR_CODE_LOGIN_LIMIT_EXCEEDED, __( 'You have exceeded the login limit. Please wait a few minutes and try again.' ) );
}
}
return false;
}
/**
* Sends a header with the username of the current user for our logs.
*
* @param int|false $user User ID
* @return int|false $user User ID
*/
function vip_send_wplogin_header( $user ) {
if ( $user && isset( $_SERVER['HTTP_X_WPLOGIN'] ) && 'yes' === $_SERVER['HTTP_X_WPLOGIN'] && class_exists( 'WP_User' ) ) {
$_user = new WP_User( $user );
if ( isset( $_user->user_login ) ) {
header( 'X-wplogin: ' . $_user->user_login );
}
unset( $_SERVER['HTTP_X_WPLOGIN'] );
}
return $user;
}
add_filter( 'determine_current_user', 'vip_send_wplogin_header', 10000 );