mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Security fix: unauthorized access (#10091)
* Security fix: unauthorized access Affects nginx users: Moved php files outside of public html directory (Apache was protected by .htaccess) Affects all users: Some files did not check for authentication and could disclose some info. Better checks before including files from user input * git mv html/includes/ includes/html git mv html/pages/ includes/html/
This commit is contained in:
131
includes/html/graphs/generic_multi_data_separated.inc.php
Normal file
131
includes/html/graphs/generic_multi_data_separated.inc.php
Normal file
@@ -0,0 +1,131 @@
|
||||
<?php
|
||||
/*
|
||||
* 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 3 of the License, or (at your
|
||||
* option) any later version. Please see LICENSE.txt at the top level of
|
||||
* the source code distribution for details.
|
||||
*
|
||||
* @package LibreNMS
|
||||
* @subpackage graphs
|
||||
* @link http://librenms.org
|
||||
* @copyright 2017 LibreNMS
|
||||
* @author LibreNMS Contributors
|
||||
*/
|
||||
|
||||
require 'includes/html/graphs/common.inc.php';
|
||||
|
||||
$stacked = generate_stacked_graphs();
|
||||
|
||||
$i = 0;
|
||||
if ($width > '500') {
|
||||
$descr_len = 18;
|
||||
} else {
|
||||
$descr_len = 8;
|
||||
$descr_len += round(($width - 260) / 9.5);
|
||||
}
|
||||
|
||||
$unit_text = 'Bits/sec';
|
||||
|
||||
if ($width > '500') {
|
||||
$rrd_options .= " COMMENT:'" . substr(str_pad($unit_text, ($descr_len + 5)), 0, ($descr_len + 5)) . " Current Average Maximum '";
|
||||
if (!$nototal) {
|
||||
$rrd_options .= " COMMENT:'Total '";
|
||||
}
|
||||
|
||||
$rrd_options .= " COMMENT:'\l'";
|
||||
} else {
|
||||
$rrd_options .= " COMMENT:'" . substr(str_pad($unit_text, ($descr_len + 5)), 0, ($descr_len + 5)) . " Now Ave Max\l'";
|
||||
}
|
||||
|
||||
if (!isset($multiplier)) {
|
||||
$multiplier = '8';
|
||||
}
|
||||
|
||||
foreach ($rrd_list as $rrd) {
|
||||
if (!$config['graph_colours'][$colours_in][$iter] || !$config['graph_colours'][$colours_out][$iter]) {
|
||||
$iter = 0;
|
||||
}
|
||||
|
||||
$colour_in = $config['graph_colours'][$colours_in][$iter];
|
||||
$colour_out = $config['graph_colours'][$colours_out][$iter];
|
||||
|
||||
if (isset($rrd['descr_in'])) {
|
||||
$descr = rrdtool_escape($rrd['descr_in'], $descr_len) . ' In';
|
||||
} else {
|
||||
$descr = rrdtool_escape($rrd['descr'], $descr_len) . ' In';
|
||||
}
|
||||
|
||||
$descr_out = rrdtool_escape($rrd['descr_out'], $descr_len) . ' Out';
|
||||
|
||||
$rrd_options .= ' DEF:' . $in . $i . '=' . $rrd['filename'] . ':' . $ds_in . ':AVERAGE ';
|
||||
$rrd_options .= ' DEF:' . $out . $i . '=' . $rrd['filename'] . ':' . $ds_out . ':AVERAGE ';
|
||||
$rrd_options .= ' CDEF:inB' . $i . '=in' . $i . ",$multiplier,* ";
|
||||
$rrd_options .= ' CDEF:outB' . $i . '=out' . $i . ",$multiplier,*";
|
||||
$rrd_options .= ' CDEF:outB' . $i . '_neg=outB' . $i . ',' . $stacked['stacked'] . ',*';
|
||||
$rrd_options .= ' CDEF:octets' . $i . '=inB' . $i . ',outB' . $i . ',+';
|
||||
|
||||
if (!$args['nototal']) {
|
||||
$in_thing .= $seperator . $in . $i . ',UN,0,' . $in . $i . ',IF';
|
||||
$out_thing .= $seperator . $out . $i . ',UN,0,' . $out . $i . ',IF';
|
||||
$pluses .= $plus;
|
||||
$seperator = ',';
|
||||
$plus = ',+';
|
||||
|
||||
$rrd_options .= ' VDEF:totin' . $i . '=inB' . $i . ',TOTAL';
|
||||
$rrd_options .= ' VDEF:totout' . $i . '=outB' . $i . ',TOTAL';
|
||||
$rrd_options .= ' VDEF:tot' . $i . '=octets' . $i . ',TOTAL';
|
||||
}
|
||||
|
||||
if ($i) {
|
||||
$stack = ':STACK';
|
||||
}
|
||||
|
||||
$rrd_options .= ' AREA:inB' . $i . '#' . $colour_in . $stacked['transparency'] . ":'" . $descr . "'$stack";
|
||||
$rrd_options .= ' GPRINT:inB' . $i . ":LAST:%6.2lf%s$units";
|
||||
$rrd_options .= ' GPRINT:inB' . $i . ":AVERAGE:%6.2lf%s$units";
|
||||
$rrd_options .= ' GPRINT:inB' . $i . ":MAX:%6.2lf%s$units\l";
|
||||
|
||||
if (!$nototal) {
|
||||
$rrd_options .= ' GPRINT:totin' . $i . ":%6.2lf%s$total_units";
|
||||
}
|
||||
|
||||
$rrd_options .= " 'HRULE:0#" . $colour_out . ':' . $descr_out . "'";
|
||||
$rrd_optionsb .= " 'AREA:outB" . $i . '_neg#' . $colour_out . $stacked['transparency'] . ":$stack'";
|
||||
$rrd_options .= ' GPRINT:outB' . $i . ":LAST:%6.2lf%s$units";
|
||||
$rrd_options .= ' GPRINT:outB' . $i . ":AVERAGE:%6.2lf%s$units";
|
||||
$rrd_options .= ' GPRINT:outB' . $i . ":MAX:%6.2lf%s$units\l";
|
||||
|
||||
if (!$nototal) {
|
||||
$rrd_options .= ' GPRINT:totout' . $i . ":%6.2lf%s$total_units";
|
||||
}
|
||||
|
||||
$rrd_options .= " 'COMMENT:\l'";
|
||||
$i++;
|
||||
$iter++;
|
||||
}
|
||||
|
||||
if ($custom_graph) {
|
||||
$rrd_options .= $custom_graph;
|
||||
}
|
||||
|
||||
if (!$nototal) {
|
||||
$rrd_options .= ' CDEF:' . $in . 'octets=' . $in_thing . $pluses;
|
||||
$rrd_options .= ' CDEF:' . $out . 'octets=' . $out_thing . $pluses;
|
||||
$rrd_options .= ' CDEF:octets=inoctets,outoctets,+';
|
||||
$rrd_options .= ' CDEF:doutoctets=outoctets,' . $stacked['stacked'] . ',*';
|
||||
$rrd_options .= ' CDEF:inbits=inoctets,8,*';
|
||||
$rrd_options .= ' CDEF:outbits=outoctets,8,*';
|
||||
$rrd_options .= ' CDEF:doutbits=doutoctets,8,*';
|
||||
$rrd_options .= ' VDEF:percentile_in=inbits,' . $config['percentile_value'] . ',PERCENT';
|
||||
$rrd_options .= ' VDEF:percentile_out=outbits,' . $config['percentile_value'] . ',PERCENT';
|
||||
$rrd_options .= ' CDEF:dpercentile_outn=doutbits,' . $stacked['stacked'] . ',* VDEF:dpercentile_outnp=dpercentile_outn,' . $config['percentile_value'] . ',PERCENT CDEF:dpercentile_outnpn=doutbits,doutbits,-,dpercentile_outnp,' . $stacked['stacked'] . ',*,+ VDEF:dpercentile_out=dpercentile_outnpn,FIRST';
|
||||
$rrd_options .= ' VDEF:totin=inoctets,TOTAL';
|
||||
$rrd_options .= ' VDEF:totout=outoctets,TOTAL';
|
||||
$rrd_options .= ' VDEF:tot=octets,TOTAL';
|
||||
}
|
||||
|
||||
$rrd_options .= $rrd_optionsb;
|
||||
$rrd_options .= ' HRULE:0#999999';
|
||||
|
||||
unset($stacked);
|
Reference in New Issue
Block a user