Current Path: > home > transcarter > public_html > > > > wp-content > plugins > wordfence > views > waf
Operation : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 Software : Apache Server IP : 198.54.126.42 | Your IP: 216.73.216.135 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
debug.php | File | 5837 bytes | July 17 2025 21:05:48. | |
firewall-status.php | File | 5869 bytes | July 17 2025 21:05:48. | |
option-rate-limit.php | File | 4217 bytes | July 17 2025 21:05:48. | |
option-rules.php | File | 2677 bytes | July 17 2025 21:05:48. | |
option-whitelist.php | File | 8179 bytes | July 17 2025 21:05:48. | |
options-group-advanced-firewall.php | File | 10328 bytes | July 17 2025 21:05:48. | |
options-group-basic-firewall.php | File | 27650 bytes | July 17 2025 21:05:48. | |
options-group-brute-force.php | File | 12907 bytes | July 17 2025 21:05:48. | |
options-group-rate-limiting.php | File | 13379 bytes | July 17 2025 21:05:48. | |
options-group-whitelisted.php | File | 12113 bytes | July 17 2025 21:05:48. | |
status-tooltip-learning-mode.php | File | 720 bytes | July 17 2025 21:05:48. | |
waf-install-manual.php | File | 1031 bytes | July 17 2025 21:05:48. | |
waf-install-success.php | File | 847 bytes | July 17 2025 21:05:48. | |
waf-install.php | File | 9088 bytes | July 17 2025 21:05:48. | |
waf-modal-wrapper.php | File | 1785 bytes | July 17 2025 21:05:48. | |
waf-uninstall-success.php | File | 1202 bytes | July 17 2025 21:05:48. | |
waf-uninstall.php | File | 7072 bytes | July 17 2025 21:05:48. |
<?php if (!defined('WORDFENCE_VERSION')) { exit; } /** * Presents the firewall status. * * Expects $firewall and $dashboard to be defined. * * @var wfFirewall $firewall The firewall state. * @var wfDashboard $dashboard Dashboard statistics. */ ?> <ul class="wf-block-list wf-block-list-horizontal"> <?php if ($firewall->firewallMode() == 'enabled' && $firewall->ruleMode() == wfFirewall::RULE_MODE_PREMIUM): ?> <li> <div class="wf-block-labeled-value wf-waf-status wf-waf-status-full-enabled"> <div class="wf-block-labeled-value-label"><?php switch (wfLicense::current()->getType()) { case wfLicense::TYPE_RESPONSE: esc_html_e('Wordfence Firewall & Response License Enabled', 'wordfence'); break; case wfLicense::TYPE_CARE: esc_html_e('Wordfence Firewall & Care License Enabled', 'wordfence'); break; default: esc_html_e('Wordfence Firewall & Premium Enabled', 'wordfence'); break; } ?></div> </div> </li> <?php else: ?> <li> <?php if ($firewall->firewallMode() == wfFirewall::FIREWALL_MODE_DISABLED): ?> <div class="wf-waf-status-disabled"> <p><h3><?php esc_html_e('Wordfence Firewall Deactivated', 'wordfence'); ?></h3></p> <p><?php esc_html_e('The Wordfence Web Application Firewall is a PHP-based, application-level firewall that filters out malicious requests to your site. It is designed to run at the beginning of WordPress\' initialization to filter any attacks before plugins or themes can run any potentially vulnerable code.', 'wordfence'); ?></p> <p> <a class="wf-btn wf-btn-primary wf-btn-callout-subtle" href="#" target="_blank" rel="noopener noreferrer" id="waf-top-enable-firewall" role="button"><?php esc_html_e('Enable Firewall', 'wordfence'); ?><span class="screen-reader-text"> (<?php esc_html_e('opens in new tab', 'wordfence') ?>)</span></a> <script type="application/javascript"> (function($) { $(function() { $('#waf-top-enable-firewall').on('click', function(e) { e.preventDefault(); e.stopPropagation(); WFAD.setOption('wafStatus', 'enabled', function() { window.location.reload(true); }); }); }); })(jQuery); </script> </p> </div> <?php else: ?> <?php if ($firewall->firewallMode() == wfFirewall::FIREWALL_MODE_ENABLED): ?> <div class="wf-block-labeled-value wf-waf-status wf-waf-status-<?php echo esc_attr($firewall->firewallMode()); ?>"> <div class="wf-block-labeled-value-value"><i class="wf-fa wf-fa-check" aria-hidden="true"></i></div> <div class="wf-block-labeled-value-label"><?php esc_html_e('Wordfence Firewall Activated', 'wordfence'); ?></div> </div> <?php elseif ($firewall->firewallMode() == wfFirewall::FIREWALL_MODE_LEARNING): ?> <div> <?php $learningMode = $firewall->learningModeStatus(); if (function_exists('network_admin_url') && is_multisite()) { $optionsURL = network_admin_url('admin.php?page=WordfenceWAF&subpage=waf_options'); } else { $optionsURL = admin_url('admin.php?page=WordfenceWAF&subpage=waf_options'); } ?> <p><h3><?php echo ($learningMode === true ? esc_html__('Learning Mode Enabled', 'wordfence') : esc_html(sprintf(/* translators: Localized date. */ __('Learning Mode Until %s', 'wordfence'), wfUtils::formatLocalTime(get_option('date_format'), $learningMode)))); ?></h3></p> <p><?php echo wp_kses(__('<i class="wf-fa wf-fa-lightbulb-o wf-tip" aria-hidden="true"></i> When you first install the Wordfence Web Application Firewall, it will be in learning mode. This allows Wordfence to learn about your site so that we can understand how to protect it and how to allow normal visitors through the firewall. We recommend you let Wordfence learn for a week before you enable the firewall.', 'wordfence'), array('i'=>array('class'=>array()))); ?></p> <p><a class="wf-btn wf-btn-primary wf-btn-callout-subtle" href="<?php echo esc_url($optionsURL); ?>"><?php esc_html_e('Manage Firewall', 'wordfence'); ?></a> <a class="wf-btn wf-btn-callout-subtle wf-btn-default" href="<?php echo wfSupportController::esc_supportURL(wfSupportController::ITEM_FIREWALL_WAF); ?>" target="_blank" rel="noopener noreferrer"><?php esc_html_e('Learn More', 'wordfence'); ?><span class="screen-reader-text"> (<?php esc_html_e('opens in new tab', 'wordfence') ?>)</span></a></p> </div> <?php endif; ?> <?php endif; ?> </li> <li> <?php if ($firewall->ruleMode() == wfFirewall::RULE_MODE_COMMUNITY): ?> <div> <p><h3><?php esc_html_e('Premium Protection Disabled', 'wordfence'); ?></h3></p> <p><?php esc_html_e('As a free Wordfence user, you are currently using the Community version of the Threat Defense Feed. Premium users are protected by additional firewall rules and malware signatures. Upgrade to Premium today to improve your protection.', 'wordfence'); ?></p> <p><a class="wf-btn wf-btn-primary wf-btn-callout-subtle" href="https://www.wordfence.com/gnl1wafUpgrade/wordfence-signup/#premium-order-form" target="_blank" rel="noopener noreferrer"><?php esc_html_e('Upgrade to Premium', 'wordfence'); ?></a> <a class="wf-btn wf-btn-callout-subtle wf-btn-default" href="https://www.wordfence.com/gnl1wafLearn/wordfence-signup/" target="_blank" rel="noopener noreferrer"><?php esc_html_e('Learn More', 'wordfence'); ?><span class="screen-reader-text"> (<?php esc_html_e('opens in new tab', 'wordfence') ?>)</span></a></p> </div> <?php else: ?> <div class="wf-block-labeled-value wf-protection-status wf-protection-status-<?php echo esc_attr($firewall->ruleMode()); ?>"> <div class="wf-block-labeled-value-value"><i class="wf-fa wf-fa-check" aria-hidden="true"></i></div> <div class="wf-block-labeled-value-label"><?php esc_html_e('Premium Protection Enabled', 'wordfence'); ?></div> </div> <?php endif; ?> </li> <?php endif; ?> </ul>
SILENT KILLER Tool