X7ROOT File Manager
Current Path:
/home/oakwood/public_html/wp-content/plugins/wordfence/views/scanner
home
/
oakwood
/
public_html
/
wp-content
/
plugins
/
wordfence
/
views
/
scanner
/
ðŸ“
..
📄
issue-base.php
(8.49 KB)
📄
issue-checkGSB.php
(2.41 KB)
📄
issue-checkHowGetIPs.php
(1.52 KB)
📄
issue-checkSpamIP.php
(1.31 KB)
📄
issue-commentBadURL.php
(3.09 KB)
📄
issue-configReadable.php
(2.03 KB)
📄
issue-control-edit-comment.php
(444 B)
📄
issue-control-edit-post.php
(622 B)
📄
issue-control-edit-user.php
(1.09 KB)
📄
issue-control-hide-file.php
(2.71 KB)
📄
issue-control-ignore.php
(2.13 KB)
📄
issue-control-repair.php
(916 B)
📄
issue-control-show-details.php
(1.94 KB)
📄
issue-coreUnknown.php
(2 KB)
📄
issue-database.php
(2.12 KB)
📄
issue-diskSpace.php
(1.94 KB)
📄
issue-easyPassword.php
(2.17 KB)
📄
issue-file.php
(3.29 KB)
📄
issue-geoipSupport.php
(1.81 KB)
📄
issue-knownfile.php
(2.97 KB)
📄
issue-optionBadURL.php
(2.07 KB)
📄
issue-postBadTitle.php
(2.07 KB)
📄
issue-postBadURL.php
(3.19 KB)
📄
issue-publiclyAccessible.php
(2.02 KB)
📄
issue-skippedPaths.php
(1.7 KB)
📄
issue-spamvertizeCheck.php
(1.31 KB)
📄
issue-suspiciousAdminUsers.php
(2.24 KB)
📄
issue-timelimit.php
(1.81 KB)
📄
issue-wafStatus.php
(1.94 KB)
📄
issue-wfPluginAbandoned.php
(3.83 KB)
📄
issue-wfPluginRemoved.php
(3.07 KB)
📄
issue-wfPluginUpgrade.php
(3.99 KB)
📄
issue-wfPluginVulnerable.php
(3.02 KB)
📄
issue-wfThemeUpgrade.php
(3.58 KB)
📄
issue-wfUpgrade.php
(3.52 KB)
📄
issue-wfUpgradeError.php
(1.4 KB)
📄
issue-wpscan_directoryList.php
(2.22 KB)
📄
issue-wpscan_fullPathDiscl.php
(2.22 KB)
📄
no-issues.php
(1.11 KB)
📄
option-scan-signatures.php
(5.85 KB)
📄
options-group-advanced.php
(3.63 KB)
📄
options-group-basic.php
(1.38 KB)
📄
options-group-general.php
(7.87 KB)
📄
options-group-performance.php
(4.12 KB)
📄
options-group-scan-schedule.php
(1.42 KB)
📄
scan-failed.php
(1.76 KB)
📄
scan-progress-detailed.php
(2.9 KB)
📄
scan-progress-element.php
(2.02 KB)
📄
scan-progress.php
(2.84 KB)
📄
scan-results.php
(8.28 KB)
📄
scan-scheduling.php
(17.68 KB)
📄
scan-starter.php
(1.83 KB)
📄
scan-type.php
(9.12 KB)
📄
scanner-status.php
(3.98 KB)
📄
site-cleaning-beta-sigs.php
(8.59 KB)
📄
site-cleaning-bottom.php
(2.03 KB)
📄
site-cleaning-high-sense.php
(8.59 KB)
📄
site-cleaning.php
(9.12 KB)
Editing: scan-progress.php
<?php if (!defined('WORDFENCE_VERSION')) { exit; } /** * Presents a block list element specifically for the scan progress indicator. * * Expects $scanner. * * @var wfScanner $scanner The scanner state. */ $status = $scanner->stageStatus(); ?> <ul class="wf-scanner-progress"> <?php echo wfView::create('scanner/scan-progress-element', array( 'scanner' => $scanner, 'id' => 'wf-scan-spamvertising', 'title' => __('Spamvertising Checks', 'wordfence'), 'status' => $status[wfScanner::STAGE_SPAMVERTISING_CHECKS], ))->render(); echo wfView::create('scanner/scan-progress-element', array( 'scanner' => $scanner, 'id' => 'wf-scan-spam', 'title' => __('Spam Check', 'wordfence'), 'status' => $status[wfScanner::STAGE_SPAM_CHECK], ))->render(); echo wfView::create('scanner/scan-progress-element', array( 'scanner' => $scanner, 'id' => 'wf-scan-blacklist', 'title' => __('Blocklist Check', 'wordfence'), 'status' => $status[wfScanner::STAGE_BLACKLIST_CHECK], ))->render(); echo wfView::create('scanner/scan-progress-element', array( 'scanner' => $scanner, 'id' => 'wf-scan-server', 'title' => __('Server State', 'wordfence'), 'status' => $status[wfScanner::STAGE_SERVER_STATE], ))->render(); echo wfView::create('scanner/scan-progress-element', array( 'scanner' => $scanner, 'id' => 'wf-scan-changes', 'title' => __('File Changes', 'wordfence'), 'status' => $status[wfScanner::STAGE_FILE_CHANGES], ))->render(); echo wfView::create('scanner/scan-progress-element', array( 'scanner' => $scanner, 'id' => 'wf-scan-malware', 'title' => __('Malware Scan', 'wordfence'), 'status' => $status[wfScanner::STAGE_MALWARE_SCAN], ))->render(); echo wfView::create('scanner/scan-progress-element', array( 'scanner' => $scanner, 'id' => 'wf-scan-content', 'title' => __('Content Safety', 'wordfence'), 'status' => $status[wfScanner::STAGE_CONTENT_SAFETY], ))->render(); echo wfView::create('scanner/scan-progress-element', array( 'scanner' => $scanner, 'id' => 'wf-scan-public', 'title' => __('Public Files', 'wordfence'), 'status' => $status[wfScanner::STAGE_PUBLIC_FILES], ))->render(); echo wfView::create('scanner/scan-progress-element', array( 'scanner' => $scanner, 'id' => 'wf-scan-password', 'title' => __('Password Strength', 'wordfence'), 'status' => $status[wfScanner::STAGE_PASSWORD_STRENGTH], ))->render(); echo wfView::create('scanner/scan-progress-element', array( 'scanner' => $scanner, 'id' => 'wf-scan-vulnerability', 'title' => __('Vulnerability Scan', 'wordfence'), 'status' => $status[wfScanner::STAGE_VULNERABILITY_SCAN], ))->render(); echo wfView::create('scanner/scan-progress-element', array( 'scanner' => $scanner, 'id' => 'wf-scan-options', 'title' => __('User & Option Audit', 'wordfence'), 'status' => $status[wfScanner::STAGE_OPTIONS_AUDIT], ))->render(); ?> </ul>
Upload File
Create Folder