Diff
6 years ago
dashboard
7 years ago
rest-api
6 years ago
.htaccess
7 years ago
Diff.php
6 years ago
GeoLite2-Country.mmdb
6 years ago
IPTraf.php
6 years ago
IPTrafList.php
7 years ago
WFLSPHP52Compatability.php
6 years ago
compat.php
8 years ago
conntest.php
7 years ago
cronview.php
8 years ago
dbview.php
8 years ago
diffResult.php
8 years ago
email_genericAlert.php
7 years ago
email_newIssues.php
6 years ago
email_unlockRequest.php
8 years ago
email_unsubscribeRequest.php
7 years ago
flags.php
7 years ago
live_activity.php
8 years ago
menu_dashboard.php
7 years ago
menu_dashboard_options.php
7 years ago
menu_firewall.php
6 years ago
menu_firewall_blocking.php
7 years ago
menu_firewall_blocking_options.php
8 years ago
menu_firewall_waf.php
7 years ago
menu_firewall_waf_options.php
7 years ago
menu_options.php
6 years ago
menu_scanner.php
6 years ago
menu_scanner_credentials.php
8 years ago
menu_scanner_options.php
6 years ago
menu_support.php
7 years ago
menu_tools.php
7 years ago
menu_tools_diagnostic.php
6 years ago
menu_tools_importExport.php
7 years ago
menu_tools_livetraffic.php
6 years ago
menu_tools_twoFactor.php
7 years ago
menu_tools_whois.php
8 years ago
menu_wordfence_central.php
7 years ago
noc1.key
7 years ago
sysinfo.php
8 years ago
unknownFiles.php
8 years ago
viewFullActivityLog.php
8 years ago
wf503.php
7 years ago
wfAPI.php
6 years ago
wfActivityReport.php
6 years ago
wfAdminNoticeQueue.php
8 years ago
wfAlerts.php
6 years ago
wfArray.php
7 years ago
wfBrowscap.php
6 years ago
wfBrowscapCache.php
7 years ago
wfBulkCountries.php
7 years ago
wfCache.php
6 years ago
wfCentralAPI.php
6 years ago
wfConfig.php
6 years ago
wfCrawl.php
6 years ago
wfCredentialsController.php
7 years ago
wfCrypt.php
6 years ago
wfDB.php
7 years ago
wfDashboard.php
7 years ago
wfDateLocalization.php
8 years ago
wfDiagnostic.php
6 years ago
wfDict.php
8 years ago
wfDirectoryIterator.php
7 years ago
wfHelperBin.php
11 years ago
wfHelperString.php
11 years ago
wfIPWhitelist.php
7 years ago
wfImportExportController.php
7 years ago
wfIssues.php
6 years ago
wfJWT.php
7 years ago
wfLockedOut.php
7 years ago
wfLog.php
6 years ago
wfMD5BloomFilter.php
8 years ago
wfModuleController.php
7 years ago
wfNotification.php
8 years ago
wfOnboardingController.php
7 years ago
wfPersistenceController.php
8 years ago
wfRESTAPI.php
7 years ago
wfScan.php
6 years ago
wfScanEngine.php
6 years ago
wfSchema.php
6 years ago
wfStyle.php
7 years ago
wfSupportController.php
6 years ago
wfUnlockMsg.php
6 years ago
wfUpdateCheck.php
6 years ago
wfUtils.php
6 years ago
wfVersionCheckController.php
8 years ago
wfView.php
10 years ago
wfViewResult.php
8 years ago
wordfenceClass.php
6 years ago
wordfenceConstants.php
6 years ago
wordfenceHash.php
6 years ago
wordfenceScanner.php
6 years ago
wordfenceURLHoover.php
6 years ago
menu_firewall.php
53 lines
| 1 | <?php |
| 2 | if (!defined('WORDFENCE_VERSION')) { exit; } |
| 3 | if (wfOnboardingController::shouldShowAttempt3()) { |
| 4 | echo wfView::create('onboarding/disabled-overlay')->render(); |
| 5 | echo wfView::create('onboarding/banner')->render(); |
| 6 | } |
| 7 | else if (wfConfig::get('touppPromptNeeded')) { |
| 8 | echo wfView::create('gdpr/disabled-overlay')->render(); |
| 9 | echo wfView::create('gdpr/banner')->render(); |
| 10 | } |
| 11 | ?> |
| 12 | <?php if (isset($storageExceptionMessage)): ?> |
| 13 | <div class="notice notice-error"><p><?php echo $storageExceptionMessage; ?></p></div> |
| 14 | <?php endif; ?> |
| 15 | <div class="wrap wordfence"> |
| 16 | <div class="wf-container-fluid"> |
| 17 | <?php |
| 18 | echo wfView::create('common/page-tabbar', array( |
| 19 | 'tabs' => array( |
| 20 | new wfTab('waf', 'waf', __('Firewall', 'wordfence'), __('Web Application Firewall', 'wordfence')), |
| 21 | new wfTab('blocking', 'blocking', __('Blocking', 'wordfence'), __('Blocking', 'wordfence')), |
| 22 | ), |
| 23 | ))->render(); |
| 24 | ?> |
| 25 | <div class="wf-row"> |
| 26 | <div class="<?php echo wfStyle::contentClasses(); ?>"> |
| 27 | <div id="waf" class="wf-tab-content" data-title="Web Application Firewall"> |
| 28 | <?php |
| 29 | echo wfView::create('common/section-title', array( |
| 30 | 'title' => __('Firewall', 'wordfence'), |
| 31 | 'headerID' => 'wf-section-firewall', |
| 32 | 'helpLink' => wfSupportController::supportURL(wfSupportController::ITEM_FIREWALL_WAF), |
| 33 | 'helpLabelHTML' => __('Learn more<span class="wf-hidden-xs"> about the Firewall</span>', 'wordfence'), |
| 34 | ))->render(); |
| 35 | require(dirname(__FILE__) . '/menu_firewall_waf.php'); |
| 36 | ?> |
| 37 | </div> <!-- end waf block --> |
| 38 | <div id="blocking" class="wf-tab-content" data-title="Blocking"> |
| 39 | <?php |
| 40 | echo wfView::create('common/section-title', array( |
| 41 | 'title' => __('Blocking', 'wordfence'), |
| 42 | 'headerID' => 'wf-section-blocking', |
| 43 | 'helpLink' => wfSupportController::supportURL(wfSupportController::ITEM_FIREWALL_BLOCKING), |
| 44 | 'helpLabelHTML' => __('Learn more<span class="wf-hidden-xs"> about Blocking</span>', 'wordfence'), |
| 45 | ))->render(); |
| 46 | require(dirname(__FILE__) . '/menu_firewall_blocking.php'); |
| 47 | ?> |
| 48 | </div> <!-- end blocking block --> |
| 49 | </div> <!-- end content block --> |
| 50 | </div> <!-- end row --> |
| 51 | </div> <!-- end container --> |
| 52 | </div> |
| 53 |