wfDashboard.php
7.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<?php
class wfDashboard {
const SCAN_SUCCESS = 1;
const SCAN_FAILED = 0;
const SCAN_NEVER_RAN = -1;
const SCAN_WARNINGS = 2;
const FEATURE_ENABLED = 1;
const FEATURE_DISABLED = 0;
const FEATURE_PREMIUM = -1;
public $scanLastCompletion;
public $scanLastStatusMessage;
public $scanLastStatus;
public $notifications = array();
public $features = array();
public $tdfCommunity;
public $tdfPremium;
public $ips24h;
public $ips7d;
public $ips30d;
public $loginsSuccess;
public $loginsFail;
public $localBlockToday;
public $localBlockWeek;
public $localBlockMonth;
public $networkBlock24h;
public $networkBlock7d;
public $networkBlock30d;
public $countriesLocal;
public $countriesNetwork;
public static function processDashboardResponse($data) {
if (isset($data['notifications'])) {
foreach ($data['notifications'] as $n) {
if (!isset($n['id']) || !isset($n['priority']) || !isset($n['html'])) {
continue;
}
new wfNotification($n['id'], $n['priority'], $n['html'], (isset($n['category']) ? $n['category'] : null));
}
unset($data['notifications']);
}
wfConfig::set_ser('dashboardData', $data);
}
public function __construct() {
// Scan values
$lastScanCompleted = wfConfig::get('lastScanCompleted');
if ($lastScanCompleted === false || empty($lastScanCompleted)) {
$this->scanLastStatus = self::SCAN_NEVER_RAN;
}
else if ($lastScanCompleted == 'ok') {
$this->scanLastStatus = self::SCAN_SUCCESS;
$i = new wfIssues();
$this->scanLastCompletion = (int) $i->getScanTime();
$issueCount = $i->getIssueCount();
if ($issueCount) {
$this->scanLastStatus = self::SCAN_WARNINGS;
$this->scanLastStatusMessage = "{$issueCount} issue" . ($issueCount == 1 ? ' found' : 's found');
}
}
else {
$this->scanLastStatus = self::SCAN_FAILED;
$n = wfNotification::getNotificationForCategory('wfplugin_scan', false);
if ($n !== null) {
$this->scanLastStatusMessage = $n->html;
}
else {
$this->scanLastStatusMessage = esc_html(substr($lastScanCompleted, 0, 100) . (strlen($lastScanCompleted) > 100 ? '...' : ''));
}
}
// Notifications
$this->notifications = wfNotification::notifications();
// Features
$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(
array('name' => 'Firewall', 'link' => network_admin_url('admin.php?page=WordfenceWAF'), 'state' => !(!WFWAF_ENABLED || (class_exists('wfWAFConfig') && wfWAFConfig::isDisabled())) ? self::FEATURE_ENABLED : self::FEATURE_DISABLED),
array('name' => 'Extended Protection', 'link' => network_admin_url('admin.php?page=WordfenceWAF'), 'state' => (!(!WFWAF_ENABLED || (class_exists('wfWAFConfig') && wfWAFConfig::isDisabled())) && WFWAF_AUTO_PREPEND) ? self::FEATURE_ENABLED : self::FEATURE_DISABLED),
array('name' => 'Login Security', 'link' => network_admin_url('admin.php?page=WordfenceSecOpt#focus-loginSecurityEnabled'), 'state' => wfConfig::get('loginSecurityEnabled') ? self::FEATURE_ENABLED : self::FEATURE_DISABLED),
array('name' => 'Scheduled Scans', 'link' => network_admin_url('admin.php?page=WordfenceScan#top#scheduling'), 'state' => wordfence::getNextScanStartTimestamp() !== false && wfConfig::get('scheduledScansEnabled') ? self::FEATURE_ENABLED : self::FEATURE_DISABLED),
array('name' => 'Cellphone Sign-in', 'link' => network_admin_url('admin.php?page=WordfenceTools#top#twofactor'), 'state' => !wfConfig::get('isPaid') ? self::FEATURE_PREMIUM : (wfUtils::hasTwoFactorEnabled() ? self::FEATURE_ENABLED : self::FEATURE_DISABLED)),
array('name' => 'Live Traffic', 'link' => network_admin_url('admin.php?page=WordfenceActivity'), 'state' => wfConfig::liveTrafficEnabled() ? self::FEATURE_ENABLED : self::FEATURE_DISABLED),
array('name' => 'Country Blocking', 'link' => network_admin_url('admin.php?page=WordfenceBlocking#top#countryblocking'), 'state' => $countryBlocking),
array('name' => 'Rate Limiting', 'link' => network_admin_url('admin.php?page=WordfenceSecOpt#focus-firewallEnabled'), 'state' => wfConfig::get('firewallEnabled') ? self::FEATURE_ENABLED : self::FEATURE_DISABLED),
array('name' => 'Spamvertising Check', 'link' => network_admin_url('admin.php?page=WordfenceSecOpt#focus-spamvertizeCheck'), 'state' => !wfConfig::get('isPaid') ? self::FEATURE_PREMIUM : (wfConfig::get('spamvertizeCheck') ? self::FEATURE_ENABLED : self::FEATURE_DISABLED)),
array('name' => 'Spam Blacklist Check', 'link' => network_admin_url('admin.php?page=WordfenceSecOpt#focus-checkSpamIP'), 'state' => !wfConfig::get('isPaid') ? self::FEATURE_PREMIUM : (wfConfig::get('checkSpamIP') ? self::FEATURE_ENABLED : self::FEATURE_DISABLED)),
);
// TDF
$data = wfConfig::get_ser('dashboardData');
if (is_array($data) && isset($data['tdf']) && isset($data['tdf']['community'])) {
$this->tdfCommunity = (int) $data['tdf']['community'];
$this->tdfPremium = (int) $data['tdf']['premium'];
}
// Top IPs Blocked
$activityReport = new wfActivityReport();
$this->ips24h = (array) $activityReport->getTopIPsBlocked(100, 1);
foreach ($this->ips24h as &$r24h) {
$r24h = (array) $r24h;
if (empty($r24h['countryName'])) { $r24h['countryName'] = 'Unknown'; }
}
$this->ips7d = (array) $activityReport->getTopIPsBlocked(100, 7);
foreach ($this->ips7d as &$r7d) {
$r7d = (array) $r7d;
if (empty($r7d['countryName'])) { $r7d['countryName'] = 'Unknown'; }
}
$this->ips30d = (array) $activityReport->getTopIPsBlocked(100, 30);
foreach ($this->ips30d as &$r30d) {
$r30d = (array) $r30d;
if (empty($r30d['countryName'])) { $r30d['countryName'] = 'Unknown'; }
}
// Recent Logins
$logins = wordfence::getLog()->getHits('logins', 'loginLogout', 0, 200);
$this->loginsSuccess = array();
$this->loginsFail = array();
foreach ($logins as $l) {
if ($l['fail']) {
$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']);
}
}
// Local Attack Data
$this->localBlockToday = (int) $activityReport->getBlockedCount(1);
$this->localBlockWeek = (int) $activityReport->getBlockedCount(7);
$this->localBlockMonth = (int) $activityReport->getBlockedCount(30);
// Network Attack Data
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'];
}
// Blocked Countries
$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;
}
}
}