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
|
<?php
final class ITSEC_IPCheck_Logs { public function __construct() { add_filter( 'itsec_logs_prepare_ipcheck_entry_for_list_display', array( $this, 'filter_entry_for_list_display' ) ); add_filter( 'itsec_logs_prepare_ipcheck_entry_for_details_display', array( $this, 'filter_entry_for_details_display' ), 10, 4 ); }
public function filter_entry_for_list_display( $entry ) { $entry['module_display'] = esc_html__( 'Network Brute Force', 'better-wp-security' );
if ( 'ip-blocked' === $entry['code'] ) { $entry['description'] = esc_html__( 'IP Blocked', 'better-wp-security' ); } else if ( 'successful-login-by-blocked-ip' === $entry['code'] ) { $entry['description'] = esc_html__( 'Blocked Host Attempted Login With Good Credentials', 'better-wp-security' ); } else if ( 'failed-login-by-blocked-ip' === $entry['code'] ) { $entry['description'] = esc_html__( 'Blocked Host Attempted Login', 'better-wp-security' ); }
return $entry; }
public function filter_entry_for_details_display( $details, $entry, $code, $code_data ) { $entry = $this->filter_entry_for_list_display( $entry, $code, $code_data );
$details['module']['content'] = $entry['module_display']; $details['description']['content'] = $entry['description'];
if ( isset( $entry['data']['expires_gmt'] ) ) { $timestamp = strtotime( $entry['data']['expires_gmt'] ); $datetime = date( 'Y-m-d H:i:s', $timestamp + ITSEC_Core::get_time_offset() );
$details['expiration'] = array( 'header' => esc_html__( 'Block Expiration', 'better-wp-security' ), 'content' => $datetime, ); }
if ( isset( $entry['data']['details'] ) && isset( $entry['data']['details']['source'] ) ) { if ( 'xmlrpc' === $entry['data']['details']['source'] ) { $source = esc_html__( 'XMLRPC Authentication', 'better-wp-security' ); } else if ( 'rest_api' === $entry['data']['details']['source'] ) { $source = esc_html__( 'REST API Authentication', 'better-wp-security' ); } else { $source = esc_html__( 'Login Page', 'better-wp-security' ); }
$details['source'] = array( 'header' => esc_html__( 'Login Source' ), 'content' => $source, ); }
return $details; } } new ITSEC_IPCheck_Logs();
|