File: /home/perditaeyz/www/wp-content/plugins/better-wp-security/core/modules/ipcheck/logs.php
<?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();