mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
fixed netcmd.php, thanks to falz
git-svn-id: http://www.observium.org/svn/observer/trunk@1828 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
@@ -3,7 +3,8 @@
|
|||||||
ini_set('allow_url_fopen', 0);
|
ini_set('allow_url_fopen', 0);
|
||||||
ini_set('display_errors', 0);
|
ini_set('display_errors', 0);
|
||||||
|
|
||||||
if($_GET[debug]) {
|
if ($_GET[debug])
|
||||||
|
{
|
||||||
ini_set('display_errors', 1);
|
ini_set('display_errors', 1);
|
||||||
ini_set('display_startup_errors', 1);
|
ini_set('display_startup_errors', 1);
|
||||||
ini_set('log_errors', 1);
|
ini_set('log_errors', 1);
|
||||||
@@ -12,14 +13,15 @@ if($_GET[debug]) {
|
|||||||
|
|
||||||
include("../includes/defaults.inc.php");
|
include("../includes/defaults.inc.php");
|
||||||
include("../config.php");
|
include("../config.php");
|
||||||
|
include("includes/functions.inc.php");
|
||||||
include("../includes/functions.php");
|
include("../includes/functions.php");
|
||||||
include("includes/authenticate.inc.php");
|
include("includes/authenticate.inc.php");
|
||||||
if(!$_SESSION['authenticated']) { echo("unauthenticated"); exit; }
|
|
||||||
|
|
||||||
|
if (!$_SESSION['authenticated']) { echo("unauthenticated"); exit; }
|
||||||
|
|
||||||
if($_GET['query'] && $_GET['cmd']) {
|
if ($_GET['query'] && $_GET['cmd']) {
|
||||||
$host = $_GET['query'];
|
$host = $_GET['query'];
|
||||||
if(Net_IPv6::checkIPv6($host)||Net_IPv4::validateip($host)||preg_match("/^[a-zA-Z0-9.-]*$/", $host)) {
|
if (Net_IPv6::checkIPv6($host)||Net_IPv4::validateip($host)||preg_match("/^[a-zA-Z0-9.-]*$/", $host)) {
|
||||||
switch ($_GET['cmd']) {
|
switch ($_GET['cmd']) {
|
||||||
case 'whois':
|
case 'whois':
|
||||||
$cmd = $config['whois'] . " $host | grep -v \%";
|
$cmd = $config['whois'] . " $host | grep -v \%";
|
||||||
@@ -31,14 +33,17 @@ if($_GET['query'] && $_GET['cmd']) {
|
|||||||
$cmd = $config['mtr'] . " -r -c 5 $host";
|
$cmd = $config['mtr'] . " -r -c 5 $host";
|
||||||
break;
|
break;
|
||||||
case 'nmap':
|
case 'nmap':
|
||||||
if ($_SESSION['userlevel'] != '10') {
|
if ($_SESSION['userlevel'] != '10')
|
||||||
|
{
|
||||||
echo("insufficient privileges");
|
echo("insufficient privileges");
|
||||||
} else {
|
} else {
|
||||||
$cmd = $config['nmap'] . " $host";
|
$cmd = $config['nmap'] . " $host";
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (!empty($cmd)) {
|
|
||||||
|
if (!empty($cmd))
|
||||||
|
{
|
||||||
$output = `$cmd`;
|
$output = `$cmd`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user