Server IP : 172.67.216.182 / Your IP : 172.68.164.152 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/coircraft.com/wp-content/plugins/wordfence/lib/ |
Upload File : |
<?php if (!defined('WORDFENCE_VERSION')) { exit; } ?> <?php if (!wfUtils::isAdmin()) { exit(); } /** * @var array $results */ ?> <table border="0" cellpadding="2" cellspacing="0" class="wf-recent-traffic-table"> <?php foreach ($results as $key => $v) { ?> <tr> <th><?php esc_html_e('Time:', 'wordfence') ?></th> <td><?php esc_html_e(sprintf( /* translators: 1. Time ago, example: 2 hours, 40 seconds. 2. Localized date. 3. Unix timestamp. */ __('%1$s ago -- %2$s -- %3$s in Unixtime', 'wordfence'), $v['timeAgo'], date(DATE_RFC822, (int) $v['ctime']), $v['ctime'])) ?></td> </tr> <?php if ($v['timeSinceLastHit']) { echo '<th>' . esc_html__('Seconds since last hit:', 'wordfence') . '</th><td>' . $v['timeSinceLastHit'] . '</td></tr>'; } ?> <tr> <th><?php esc_html_e('URL:', 'wordfence') ?></th> <td> <a href="<?php echo esc_url($v['URL']) ?>" target="_blank" rel="noopener noreferrer"><?php echo esc_html($v['URL']); ?><span class="screen-reader-text"> (<?php esc_html_e('opens in new tab', 'wordfence') ?>)</span></a> </td> </tr> <tr> <th>Type:</th> <td><?php if ($v['statusCode'] == '404') { echo '<span style="color: #F00;">' . esc_html__('Page not found', 'wordfence') . '</span>'; } else if ($v['type'] == 'hit') { esc_html_e('Normal request', 'wordfence'); } ?></td> </tr> <?php if ($v['referer']) { ?> <tr> <th><?php esc_html_e('Referrer:', 'wordfence') ?></th> <td> <a href="<?php echo esc_url($v['referer']); ?>" target="_blank" rel="noopener noreferrer"><?php echo esc_html($v['referer']); ?><span class="screen-reader-text"> (<?php esc_html_e('opens in new tab', 'wordfence') ?>)</span></a> </td></tr><?php } ?> <tr> <th><?php esc_html_e('Full Browser ID:', 'wordfence') ?></th> <td><?php echo esc_html($v['UA']); ?></td> </tr> <?php if ($v['user']) { ?> <tr> <th><?php esc_html_e('User:', 'wordfence') ?></th> <td> <a href="<?php echo esc_url($v['user']['editLink']); ?>" target="_blank" rel="noopener noreferrer"><span data-userid="<?php echo esc_attr($v['user']['ID']); ?>" class="wfAvatar"></span><?php echo esc_html($v['user']['display_name']); ?><span class="screen-reader-text"> (<?php esc_html_e('opens in new tab', 'wordfence') ?>)</span></a> </td> </tr> <?php } ?> <?php if ($v['loc']) { ?> <tr> <th><?php esc_html_e('Location:', 'wordfence') ?></th> <td> <span class="wf-flag <?php echo esc_attr('wf-flag-' . strtolower($v['loc']['countryCode'])); ?>" title="<?php echo esc_attr($v['loc']['countryName']); ?>"></span> <?php if ($v['loc']['city']) { echo esc_html($v['loc']['city']) . ', '; } ?> <?php if ($v['loc']['region'] && wfUtils::shouldDisplayRegion($v['loc']['countryName'])) { echo esc_html($v['loc']['region']) . ', '; } ?> <?php echo esc_html($v['loc']['countryName']); ?> </td> </tr> <?php } ?> <tr class="wf-recent-traffic-table-row-border"> <td colspan="2"><div></div></td> </tr> <?php } ?> </table>