HEX
Server: Apache
System:
User: ()
PHP: 7.4.33
Disabled: system,passthru,shell_exec,exec,proc_close,proc_open,proc_get_status,proc_nice,proc_terminate,highlight_file,escapeshellcmd,pclose,debugger_off,debugger_on,leak,listen,define_syslog_variables,ftp_exec,posix_uname,posix_getpwuid,get_current_user,getmyuid,getmygid,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,escapeshellarg,myshellexec,escapeshellarg,disk_free_space,disk_total_space,show_source,dl,symlink,listen,syslog,php_ini_scanned_files,inurl,apache_setenv,closelog,rar_open,bzopen,bzread,bzwrite,shellcode,show_source,apache_get_modules,apache_get_version,apache_note,openlog,crack_check,crack_closedict,pcntl_exec,ini_alter,backtick,cmd,virtual,getservbyport,myshellexec,hypot,pg_host,phpini,link,readlink,syslog,id,ftok,posix_access,error_log,sym,php_u,psockopen,apache_child_k_closedict,crack_getlastmessage,crack_opendict,php_ini,ini_restore,popen,curl_multi_exec,php_uname
Upload Files
File: /home/homework/public_html/kurs3/wp-content/plugins/wordfence/views/scanner/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>