: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
const SCAN_NEVER_RAN = -1;
const FEATURE_ENABLED = 1;
const FEATURE_DISABLED = 0;
const FEATURE_PREMIUM = -1;
public $scanLastCompletion;
public $scanLastStatusMessage;
public $notifications = array();
public $features = array();
public $countriesNetwork;
public $wordfenceCentralConnected;
public $wordfenceCentralConnectTime;
public $wordfenceCentralConnectEmail;
public $wordfenceCentralDisconnected;
public $wordfenceCentralDisconnectTime;
public $wordfenceCentralDisconnectEmail;
public static function processDashboardResponse($data) {
if (isset($data['notifications'])) {
foreach ($data['notifications'] as $n) {
if (!isset($n['id']) || !isset($n['priority']) || !isset($n['html'])) {
new wfNotification($n['id'], $n['priority'], $n['html'], (isset($n['category']) ? $n['category'] : null));
unset($data['notifications']);
if (isset($data['revoked'])) {
foreach ($data['revoked'] as $r) {
$notification = wfNotification::getNotificationForID($r['id']);
if ($notification !== null) {
$notification->markAsRead();
wfConfig::set_ser('dashboardData', $data, false, wfConfig::DONT_AUTOLOAD);
public function __construct() {
$lastScanCompleted = wfConfig::get('lastScanCompleted');
if ($lastScanCompleted === false || empty($lastScanCompleted)) {
$this->scanLastStatus = self::SCAN_NEVER_RAN;
else if ($lastScanCompleted == 'ok') {
$this->scanLastStatus = self::SCAN_SUCCESS;
$this->scanLastCompletion = (int) wfScanner::shared()->lastScanTime();
$issueCount = $i->getIssueCount();
$this->scanLastStatus = self::SCAN_WARNINGS;
$this->scanLastStatusMessage = "{$issueCount} issue" . ($issueCount == 1 ? ' found' : 's found');
$this->scanLastStatus = self::SCAN_FAILED;
$n = wfNotification::getNotificationForCategory('wfplugin_scan', false);
$this->scanLastStatusMessage = $n->html;
$this->scanLastStatusMessage = esc_html(substr($lastScanCompleted, 0, 100) . (strlen($lastScanCompleted) > 100 ? '...' : ''));
$this->notifications = wfNotification::notifications();
$countryBlocking = self::FEATURE_PREMIUM;
if (wfConfig::get('isPaid')) {
$countryBlocking = self::FEATURE_DISABLED;
$countryList = wfConfig::get('cbl_countries');
if (!empty($countryList) && (wfConfig::get('cbl_loggedInBlocked', false) || wfConfig::get('cbl_loginFormBlocked', false) || wfConfig::get('cbl_restOfSiteBlocked', false))) {
$countryBlocking = self::FEATURE_ENABLED;
$this->features = array(); //Deprecated
$data = wfConfig::get_ser('dashboardData');
$lastChecked = wfConfig::get('lastDashboardCheck', 0);
if ((!is_array($data) || (isset($data['generated']) && $data['generated'] + 3600 < time())) && $lastChecked + 3600 < time()) {
$wp_version = wfUtils::getWPVersion();
$apiKey = wfConfig::get('apiKey');
$api = new wfAPI($apiKey, $wp_version);
wfConfig::set('lastDashboardCheck', time());
$json = $api->getStaticURL('/stats.json');
$data = @json_decode($json, true);
if ($json && is_array($data)) {
self::processDashboardResponse($data);
if (is_array($data) && isset($data['generated'])) {
$this->lastGenerated = $data['generated'];
if (is_array($data) && isset($data['tdf']) && isset($data['tdf']['community'])) {
$this->tdfCommunity = (int) $data['tdf']['community'];
$this->tdfPremium = (int) $data['tdf']['premium'];
$activityReport = new wfActivityReport();
$this->ips24h = (array) $activityReport->getTopIPsBlocked(100, 1);
foreach ($this->ips24h as &$r24h) {
if (empty($r24h['countryName'])) { $r24h['countryName'] = 'Unknown'; }
$this->ips7d = (array) $activityReport->getTopIPsBlocked(100, 7);
foreach ($this->ips7d as &$r7d) {
if (empty($r7d['countryName'])) { $r7d['countryName'] = 'Unknown'; }
$this->ips30d = (array) $activityReport->getTopIPsBlocked(100, 30);
foreach ($this->ips30d as &$r30d) {
if (empty($r30d['countryName'])) { $r30d['countryName'] = 'Unknown'; }
$logins = wordfence::getLog()->getHits('logins', 'loginLogout', 0, 200);
$this->loginsSuccess = array();
$this->loginsFail = array();
foreach ($logins as $l) {
$this->loginsFail[] = array('t' => $l['ctime'], 'name' => $l['username'], 'ip' => $l['IP']);
else if ($l['action'] != 'logout') {
$this->loginsSuccess[] = array('t' => $l['ctime'], 'name' => $l['username'], 'ip' => $l['IP']);
$this->localBlocks = array();
$this->localBlocks[] = array('title' => __('Complex', 'wordfence'), 'type' => wfActivityReport::BLOCK_TYPE_COMPLEX,
'24h' => (int) $activityReport->getBlockedCount(1, wfActivityReport::BLOCK_TYPE_COMPLEX),
'7d' => (int) $activityReport->getBlockedCount(7, wfActivityReport::BLOCK_TYPE_COMPLEX),
'30d' => (int) $activityReport->getBlockedCount(30, wfActivityReport::BLOCK_TYPE_COMPLEX),
$this->localBlocks[] = array('title' => __('Brute Force', 'wordfence'), 'type' => wfActivityReport::BLOCK_TYPE_BRUTE_FORCE,
'24h' => (int) $activityReport->getBlockedCount(1, wfActivityReport::BLOCK_TYPE_BRUTE_FORCE),
'7d' => (int) $activityReport->getBlockedCount(7, wfActivityReport::BLOCK_TYPE_BRUTE_FORCE),
'30d' => (int) $activityReport->getBlockedCount(30, wfActivityReport::BLOCK_TYPE_BRUTE_FORCE),
$this->localBlocks[] = array('title' => __('Blocklist', 'wordfence'), 'type' => wfActivityReport::BLOCK_TYPE_BLACKLIST,
'24h' => (int) $activityReport->getBlockedCount(1, wfActivityReport::BLOCK_TYPE_BLACKLIST),
'7d' => (int) $activityReport->getBlockedCount(7, wfActivityReport::BLOCK_TYPE_BLACKLIST),
'30d' => (int) $activityReport->getBlockedCount(30, wfActivityReport::BLOCK_TYPE_BLACKLIST),
if (is_array($data) && isset($data['attackdata']) && isset($data['attackdata']['24h'])) {
$this->networkBlock24h = $data['attackdata']['24h'];
$this->networkBlock7d = $data['attackdata']['7d'];
$this->networkBlock30d = $data['attackdata']['30d'];
$this->countriesLocal = (array) $activityReport->getTopCountriesBlocked(10, 7);
foreach ($this->countriesLocal as &$rLocal) {
$rLocal = (array) $rLocal;
if (empty($rLocal['countryName'])) { $rLocal['countryName'] = 'Unknown'; }
if (is_array($data) && isset($data['countries']) && isset($data['countries']['7d'])) {
$networkCountries = array();
foreach ($data['countries']['7d'] as $rNetwork) {
$countryCode = $rNetwork['cd'];
$countryName = $activityReport->getCountryNameByCode($countryCode);
if (empty($countryName)) { $countryName = 'Unknown'; }
$totalBlockCount = $rNetwork['ct'];
$networkCountries[] = array('countryCode' => $countryCode, 'countryName' => $countryName, 'totalBlockCount' => $totalBlockCount);
$this->countriesNetwork = $networkCountries;
$this->wordfenceCentralConnected = wfCentral::_isConnected(); // This value is cached.
$this->wordfenceCentralConnectTime = wfConfig::get('wordfenceCentralConnectTime');
$this->wordfenceCentralConnectEmail = wfConfig::get('wordfenceCentralConnectEmail');
$this->wordfenceCentralDisconnected = wfConfig::get('wordfenceCentralDisconnected');
$this->wordfenceCentralDisconnectTime = wfConfig::get('wordfenceCentralDisconnectTime');
$this->wordfenceCentralDisconnectEmail = wfConfig::get('wordfenceCentralDisconnectEmail');