-
Notifications
You must be signed in to change notification settings - Fork 25
/
mactrack_view_sites.php
436 lines (376 loc) · 17.4 KB
/
mactrack_view_sites.php
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2024 The Cacti Group |
| |
| This program is free software; you can redistribute it and/or |
| modify it under the terms of the GNU General Public License |
| as published by the Free Software Foundation; either version 2 |
| of the License, or (at your option) any later version. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
+-------------------------------------------------------------------------+
| Cacti: The Complete RRDTool-based Graphing Solution |
+-------------------------------------------------------------------------+
| This code is designed, written, and maintained by the Cacti Group. See |
| about.php and/or the AUTHORS file for specific developer information. |
+-------------------------------------------------------------------------+
| http://www.cacti.net/ |
+-------------------------------------------------------------------------+
*/
$guest_account = true;
chdir('../../');
include('./include/auth.php');
include_once('./plugins/mactrack/lib/mactrack_functions.php');
$title = __('Mactrack - Site Report View', 'mactrack');
if (isset_request_var('export')) {
mactrack_view_export_sites();
} else {
general_header();
mactrack_view_sites();
bottom_footer();
}
function mactrack_view_export_sites() {
mactrack_sites_request_validation();
$sql_where = '';
$sites = mactrack_view_get_site_records($sql_where, 0, false);
$xport_array = array();
if (get_request_var('detail') == 'false') {
array_push($xport_array, '"site_id","site_name","total_devices",' .
'"total_device_errors","total_macs","total_ips","total_oper_ports",' .
'"total_user_ports"');
foreach($sites as $site) {
array_push($xport_array,'"' .
$site['site_id'] . '","' . $site['site_name'] . '","' .
$site['total_devices'] . '","' . $site['total_device_errors'] . '","' .
$site['total_macs'] . '","' . $site['total_ips'] . '","' .
$site['total_oper_ports'] . '","' . $site['total_user_ports'] . '"');
}
} else {
array_push($xport_array, '"site_name","vendor","device_name","total_devices",' .
'"total_ips","total_user_ports","total_oper_ports","total_trunks",' .
'"total_macs_found"');
foreach($sites as $site) {
array_push($xport_array,'"' .
$site['site_name'] . '","' . $site['vendor'] . '","' .
$site['device_name'] . '","' . $site['total_devices'] . '","' .
$site['sum_ips_total'] . '","' . $site['sum_ports_total'] . '","' .
$site['sum_ports_active'] . '","' . $site['sum_ports_trunk'] . '","' .
$site['sum_macs_active'] . '"');
}
}
header('Content-type: application/csv');
header('Content-Disposition: attachment; filename=cacti_site_xport.csv');
foreach($xport_array as $xport_line) {
print $xport_line . "\n";
}
}
function mactrack_view_get_site_records(&$sql_where, $rows, $apply_limits = true) {
/* create SQL where clause */
$device_type_info = db_fetch_row_prepared('SELECT *
FROM mac_track_device_types
WHERE device_type_id = ?',
array(get_request_var('device_type_id')));
$sql_where = '';
/* form the 'where' clause for our main sql query */
if (get_request_var('filter') != '') {
if (get_request_var('detail') == 'false') {
$sql_where = "WHERE (mac_track_sites.site_name LIKE '%" . get_request_var('filter') . "%')";
} else {
$sql_where = "WHERE (mac_track_device_types.vendor LIKE '%" . get_request_var('filter') . "%' OR " .
"mac_track_device_types.description LIKE '%" . get_request_var('filter') . "%' OR " .
"mac_track_sites.site_name LIKE '%" . get_request_var('filter') . "%')";
}
}
if (cacti_sizeof($device_type_info)) {
$sql_where = ($sql_where != '' ? ' AND ':'WHERE ') . '(mac_track_devices.device_type_id=' . $device_type_info['device_type_id'] . ')';
}
if ((get_request_var('site_id') != '-1') && (get_request_var('detail'))){
$sql_where = ($sql_where != '' ? ' AND ':'WHERE ') . '(mac_track_devices.site_id=' . get_request_var('site_id') . ')';
}
$sql_order = get_order_string();
if ($apply_limits) {
$sql_limit = ' LIMIT ' . ($rows*(get_request_var('page')-1)) . ', ' . $rows;
} else {
$sql_limit = '';
}
if (get_request_var('detail') == 'false') {
$query_string = "SELECT *
FROM mac_track_sites
$sql_where
$sql_order
$sql_limit";
} else {
$query_string ="SELECT mac_track_sites.site_name, mac_track_sites.site_id,
COUNT(mac_track_device_types.device_type_id) AS total_devices,
mac_track_device_types.device_type_id,
mac_track_device_types.device_type,
mac_track_device_types.vendor,
mac_track_device_types.description,
SUM(mac_track_devices.ips_total) AS sum_ips_total,
SUM(mac_track_devices.ports_total) AS sum_ports_total,
SUM(mac_track_devices.ports_active) AS sum_ports_active,
SUM(mac_track_devices.ports_trunk) AS sum_ports_trunk,
SUM(mac_track_devices.macs_active) AS sum_macs_active
FROM (mac_track_device_types
RIGHT JOIN mac_track_devices
ON mac_track_device_types.device_type_id = mac_track_devices.device_type_id)
RIGHT JOIN mac_track_sites
ON mac_track_devices.site_id = mac_track_sites.site_id
$sql_where
GROUP BY mac_track_sites.site_name, mac_track_device_types.vendor, mac_track_device_types.description
HAVING (((Count(mac_track_device_types.device_type_id))>0))
$sql_order
$sql_limit";
}
return db_fetch_assoc($query_string);
}
function mactrack_sites_request_validation() {
/* ================= input validation and session storage ================= */
$filters = array(
'rows' => array(
'filter' => FILTER_VALIDATE_INT,
'pageset' => true,
'default' => '-1'
),
'page' => array(
'filter' => FILTER_VALIDATE_INT,
'default' => '1'
),
'filter' => array(
'filter' => FILTER_CALLBACK,
'pageset' => true,
'default' => '',
'options' => array('options' => 'sanitize_search_string')
),
'sort_column' => array(
'filter' => FILTER_CALLBACK,
'default' => 'site_name',
'options' => array('options' => 'sanitize_search_string')
),
'sort_direction' => array(
'filter' => FILTER_CALLBACK,
'default' => 'ASC',
'options' => array('options' => 'sanitize_search_string')
),
'site_id' => array(
'filter' => FILTER_VALIDATE_INT,
'default' => '-1',
'pageset' => true
),
'device_type_id' => array(
'filter' => FILTER_VALIDATE_INT,
'default' => '-1',
'pageset' => true
),
'detail' => array(
'filter' => FILTER_CALLBACK,
'default' => 'false',
'options' => array('options' => 'sanitize_search_string')
),
);
validate_store_request_vars($filters, 'sess_mtv_sites');
/* ================= input validation ================= */
}
function mactrack_view_sites() {
global $title, $config, $item_rows;
mactrack_sites_request_validation();
if (get_request_var('rows') == -1) {
$rows = read_config_option('num_rows_table');
} elseif (get_request_var('rows') == -2) {
$rows = 999999;
} else {
$rows = get_request_var('rows');
}
$webroot = $config['url_path'] . 'plugins/mactrack/';
mactrack_tabs();
html_start_box($title, '100%', '', '3', 'center', '');
mactrack_site_filter('mactrack_view_sites.php');
html_end_box();
$sql_where = '';
$sites = mactrack_view_get_site_records($sql_where, $rows);
if (get_request_var('detail') == 'false') {
$total_rows = db_fetch_cell("SELECT
COUNT(mac_track_sites.site_id)
FROM mac_track_sites
$sql_where");
} else {
$total_rows = cacti_sizeof(db_fetch_assoc("SELECT
mac_track_device_types.device_type_id, mac_track_sites.site_name
FROM (mac_track_device_types
RIGHT JOIN mac_track_devices
ON mac_track_device_types.device_type_id = mac_track_devices.device_type_id)
RIGHT JOIN mac_track_sites
ON mac_track_devices.site_id = mac_track_sites.site_id
$sql_where
GROUP BY mac_track_sites.site_name, mac_track_device_types.device_type_id"));
}
if (get_request_var('detail') == 'false') {
$display_text = array(
'nosort' => array(
'display' => __('Actions', 'mactrack')
),
'site_name' => array(
'display' => __('Site Name', 'mactrack'),
'sort' => 'ASC'
),
'total_devices' => array(
'display' => __('Devices', 'mactrack'),
'align' => 'right',
'sort' => 'DESC'
),
'total_ips' => array(
'display' => __('Total IP\'s', 'mactrack'),
'align' => 'right',
'sort' => 'DESC'
),
'total_user_ports' => array(
'display' => __('User Ports', 'mactrack'),
'align' => 'right',
'sort' => 'DESC'
),
'total_oper_ports' => array(
'display' => __('User Ports Up', 'mactrack'),
'align' => 'right',
'sort' => 'DESC'
),
'total_macs' => array(
'display' => __('MACS Found', 'mactrack'),
'align' => 'right',
'sort' => 'DESC'
),
'total_device_errors' => array(
'display' => __('Device Errors', 'mactrack'),
'align' => 'right',
'sort' => 'DESC'
)
);
$columns = cacti_sizeof($display_text);
$nav = html_nav_bar('mactrack_view_sites.php', MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, $columns, __('Sites', 'mactrack'), 'page', 'main');
print $nav;
html_start_box('', '100%', '', '3', 'center', '');
html_header_sort($display_text, get_request_var('sort_column'), get_request_var('sort_direction'));
if (cacti_sizeof($sites)) {
foreach ($sites as $site) {
if (api_user_realm_auth('mactrack_sites.php')) {
$actions = "<a class='pic' href='" . htmlspecialchars($webroot . 'mactrack_sites.php?action=edit&site_id=' . $site['site_id']) . "' title='" . __esc('Edit Site', 'mactrack') . "'><i class='mtEdit fas fa-edit'></i></a>";
$actions .= "<a class='pic siterescan' href='#' id='r_" . $site['site_id'] . "' title='" . __esc('Rescan Site', 'mactrack') . "'><i class='mtSync fa fa-sync'></i></a>";
} else {
$actions = '';
}
$actions .= "<a class='pic' href='" . htmlspecialchars($webroot . 'mactrack_view_devices.php?report=devices&reset&site_id=' . $site['site_id']) . "' title='" . __esc('View Devices', 'mactrack') . "'><i class='mtServer fas fa-server'></i></a>";
$actions .= "<a class='pic' href='" . htmlspecialchars($webroot . 'mactrack_view_ips.php?report=ips&reset&site_id=' . $site['site_id']) . "' title='" . __esc('View IP Ranges', 'mactrack') . "'><i class='mtIps fas fa-network-wired'></i></a>";
$actions .= "<a class='pic' href='" . htmlspecialchars($webroot . 'mactrack_view_arp.php?report=arp&reset&site_id=' . $site['site_id']) . "' title='" . __esc('View IP Addresses', 'mactrack') . "'><i class='mtPorts fas fa-desktop'></i></a>";
$actions .= "<a class='pic' href='" . htmlspecialchars($webroot . 'mactrack_view_macs.php?report=macs&reset&device_id=-1&scan_date=3&site_id=' . $site['site_id']) . "' title='" . __esc('View MAC Addresses', 'mactrack') . "'><i class='mtMacs fas fa-at'></i></a>";
$actions .= "<a class='pic' href='" . htmlspecialchars($webroot . 'mactrack_view_interfaces.php?report=interfaces&reset&site=' . $site['site_id']) . "' title='" . __esc('View Interfaces', 'mactrack') . "'><i class='mtInterfaces fas fa-ethernet'></i></a>";
form_alternate_row('row_' . $site['site_id'], true);
form_selectable_cell($actions, 'row_' . $site['site_id'], '1%', 'nowrap');
form_selectable_cell(filter_value($site['site_name'], get_request_var('filter')), 'row_' . $site['site_id'], '', 'hyperLink');
form_selectable_cell(number_format_i18n($site['total_devices']), 'row_' . $site['site_id'], '', 'right');
form_selectable_cell(number_format_i18n($site['total_ips']), 'row_' . $site['site_id'], '', 'right');
form_selectable_cell(number_format_i18n($site['total_user_ports']), 'row_' . $site['site_id'], '', 'right');
form_selectable_cell(number_format_i18n($site['total_oper_ports']), 'row_' . $site['site_id'], '', 'right');
form_selectable_cell(number_format_i18n($site['total_macs']), 'row_' . $site['site_id'], '', 'right');
form_selectable_cell(number_format_i18n($site['total_device_errors']), 'row_' . $site['site_id'], '', 'right');
form_end_row();
}
} else {
print '<tr><td colspan="' . $columns . '"><em>' . __('No Mactrack Sites Found', 'mactrack') . '</em></td></tr>';
}
html_end_box(false);
if (cacti_sizeof($sites)) {
print $nav;
mactrack_display_stats();
}
} else {
$display_text = array(
'nosort' => array(
'display' => __('Actions', 'mactrack')
),
'site_name' => array(
'display' => __('Site Name', 'mactrack'),
'sort' => 'ASC'
),
'vendor' => array(
'display' => __('Vendor', 'mactrack'),
'sort' => 'ASC'
),
'description' => array(
'display' => __('Device Type', 'mactrack'),
'sort' => 'DESC'
),
'total_devices' => array(
'display' => __('Total Devices', 'mactrack'),
'align' => 'right',
'sort' => 'DESC'
),
'sum_ips_total' => array(
'display' => __('Total IP\'s', 'mactrack'),
'align' => 'right',
'sort' => 'DESC'
),
'sum_ports_total' => array(
'display' => __('Total User Ports', 'mactrack'),
'align' => 'right',
'sort' => 'DESC'
),
'sum_ports_active' => array(
'display' => __('Total Oper Ports', 'mactrack'),
'align' => 'right',
'sort' => 'DESC'
),
'sum_ports_trunk' => array(
'display' => __('Total Trunks', 'mactrack'),
'align' => 'right',
'sort' => 'DESC'
),
'sum_macs_active' => array(
'display' => __('MACS Found', 'mactrack'),
'align' => 'right',
'sort' => 'DESC'
)
);
$columns = cacti_sizeof($display_text);
$nav = html_nav_bar('mactrack_view_sites.php', MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, $columns, __('Sites / Device Types', 'mactrack'), 'page', 'main');
print $nav;
html_start_box('', '100%', '', '3', 'center', '');
html_header_sort($display_text, get_request_var('sort_column'), get_request_var('sort_direction'));
if (cacti_sizeof($sites)) {
foreach ($sites as $site) {
if (api_user_realm_auth('mactrack_sites.php')) {
$actions = "<a class='pic' href='" . htmlspecialchars($webroot . 'mactrack_sites.php?action=edit&site_id=' . $site['site_id']) . "' title='" . __esc('Edit Site', 'mactrack') . "'><i class='mtEdit fas fa-edit'></i></a>";
} else {
$actions = '';
}
$actions .= "<a class='pic' href='" . htmlspecialchars($webroot . 'mactrack_view_devices.php?report=devices&site_id=' . $site['site_id'] . '&device_type_id=' . $site['device_type_id'] . '&type_id=-1&status=-1&filter=') . "' title='" . __esc('View Devices', 'mactrack') . "'><i class='mtServer fas fa-server'></i></a>";
$actions .= "<a class='pic' href='" . htmlspecialchars($webroot . 'mactrack_view_ips.php?report=ips&reset&site_id=' . $site['site_id']) . "' title='" . __esc('View IP Ranges', 'mactrack') . "'><i class='mtIps fas fa-network-wired'></i></a>";
$actions .= "<a class='pic' href='" . htmlspecialchars($webroot . 'mactrack_view_macs.php?report=macs&reset&device_id=-1&scan_date=3&site_id=' . $site['site_id']) . "' title='" . __esc('View MAC Addresses', 'mactrack') . "'><i class='mtMacs fas fa-at'></i></a>";
$actions .= "<a class='pic' href='" . htmlspecialchars($webroot . 'mactrack_view_interfaces.php?report=interfaces&reset&site=' . $site['site_id']) . "' title='" . __esc('View Interfaces', 'mactrack') . "'><i class='mtInterfaces fas fa-ethernet'></i></a>";
$dt = $site['device_type'];
form_alternate_row('line' . $site['site_id']);
form_selectable_cell($actions, 'row_' . $site['site_id'], '', 'nowrap');
form_selectable_cell(filter_value($site['site_name'], get_request_var('filter')), 'row_' . $site['site_id'], '', 'hyperLink');
form_selectable_cell(filter_value($site['vendor'], get_request_var('filter')), 'row_' . $site['site_id']);
form_selectable_cell(filter_value($site['description'], get_request_var('filter')), 'row_' . $site['site_id']);
form_selectable_cell(number_format_i18n($site['total_devices']), 'row_' . $site['site_id'], '', 'right');
form_selectable_cell($dt == '1' ? __('N/A', 'mactrack') : number_format_i18n($site['sum_ips_total']), 'row_' . $site['site_id'], '', 'right');
form_selectable_cell($dt == '3' ? __('N/A', 'mactrack') : number_format_i18n($site['sum_ports_total']), 'row_' . $site['site_id'], '', 'right');
form_selectable_cell($dt == '3' ? __('N/A', 'mactrack') : number_format_i18n($site['sum_ports_active']), 'row_' . $site['site_id'], '', 'right');
form_selectable_cell($dt == '3' ? __('N/A', 'mactrack') : number_format_i18n($site['sum_ports_trunk']), 'row_' . $site['site_id'], '', 'right');
form_selectable_cell($dt == '3' ? __('N/A', 'mactrack') : number_format_i18n($site['sum_macs_active']), 'row_' . $site['site_id'], '', 'right');
form_end_row();
}
} else {
print '<tr><td colspan="' . $columns . '"><em>' . __('No Mactrack Sites Found', 'mactrack') . '</em></td></tr>';
}
html_end_box(false);
if (cacti_sizeof($sites)) {
print $nav;
mactrack_display_stats();
}
}
print '<div id="response" title="' . __esc('Site Scan Results', 'mactrack') . '"></div>';
}