Server IP : 15.235.198.142 / Your IP : 216.73.216.226 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/craft/wp-content/plugins/wordfence/lib/dashboard/ |
Upload File : |
<?php if (!defined('WORDFENCE_VERSION')) { exit; } ?> <?php //$data is defined here as an array of login attempts: array('IP' => binary ip, 'countryCode' => string, 'blockCount' => int, 'unixday' => int, 'countryName' => string) ?> <table class="wf-table wf-table-hover"> <thead> <tr> <th><?php esc_html_e('IP', 'wordfence') ?></th> <th colspan="2"><?php esc_html_e('Country', 'wordfence') ?></th> <th><?php esc_html_e('Block Count', 'wordfence') ?></th> </tr> </thead> <tbody> <?php foreach ($data as $l): ?> <tr> <td><?php echo esc_html(wfUtils::inet_ntop($l['IP'])); ?></td> <td><?php echo esc_html($l['countryName']); ?></td> <td><span class="wf-flag <?php echo esc_attr('wf-flag-' . strtolower($l['countryCode'])); ?>" title="<?php echo esc_attr($l['countryName']); ?>"></span></td> <td><?php echo esc_html(number_format_i18n($l['blockCount'])); ?></td> </tr> <?php endforeach; ?> </tbody> </table>