2007-04-03 14:10:23 +00:00
|
|
|
<?php
|
|
|
|
|
2015-07-13 20:10:26 +02:00
|
|
|
/*
|
2013-10-29 05:38:12 +10:00
|
|
|
* Observium
|
2012-05-09 10:01:42 +00:00
|
|
|
*
|
2013-10-29 05:38:12 +10:00
|
|
|
* This file is part of Observium.
|
2012-05-09 10:01:42 +00:00
|
|
|
*
|
2013-10-29 05:38:12 +10:00
|
|
|
* @package observium
|
|
|
|
* @subpackage webinterface
|
|
|
|
* @author Adam Armstrong <adama@memetic.org>
|
|
|
|
* @copyright (C) 2006 - 2012 Adam Armstrong
|
2012-05-09 10:01:42 +00:00
|
|
|
*/
|
|
|
|
|
2008-11-13 17:28:13 +00:00
|
|
|
ini_set('allow_url_fopen', 0);
|
|
|
|
ini_set('display_errors', 0);
|
2008-11-13 17:19:43 +00:00
|
|
|
|
2015-07-13 20:10:26 +02:00
|
|
|
if ($_GET[debug]) {
|
|
|
|
ini_set('display_errors', 1);
|
|
|
|
ini_set('display_startup_errors', 1);
|
|
|
|
ini_set('log_errors', 1);
|
|
|
|
ini_set('error_reporting', E_ALL);
|
2008-11-13 17:19:43 +00:00
|
|
|
}
|
|
|
|
|
2015-07-13 20:10:26 +02:00
|
|
|
require '../includes/defaults.inc.php';
|
|
|
|
require '../config.php';
|
|
|
|
require_once '../includes/definitions.inc.php';
|
|
|
|
require 'includes/functions.inc.php';
|
|
|
|
require '../includes/functions.php';
|
|
|
|
require 'includes/authenticate.inc.php';
|
2009-03-11 14:50:24 +00:00
|
|
|
|
2015-07-13 20:10:26 +02:00
|
|
|
if (!$_SESSION['authenticated']) {
|
|
|
|
echo 'unauthenticated';
|
|
|
|
exit;
|
|
|
|
}
|
2008-11-13 17:28:13 +00:00
|
|
|
|
2014-02-23 15:08:06 +10:00
|
|
|
$output = '';
|
2015-07-13 20:10:26 +02:00
|
|
|
if ($_GET['query'] && $_GET['cmd']) {
|
|
|
|
$host = $_GET['query'];
|
2016-06-02 06:56:45 +00:00
|
|
|
if (Net_IPv6::checkIPv6($host) || Net_IPv4::validateip($host) || filter_var('http://'.$host, FILTER_VALIDATE_URL)) {
|
2015-07-13 20:10:26 +02:00
|
|
|
switch ($_GET['cmd']) {
|
|
|
|
case 'whois':
|
|
|
|
$cmd = $config['whois']." $host | grep -v \%";
|
|
|
|
break;
|
2011-03-23 09:54:56 +00:00
|
|
|
|
2015-07-13 20:10:26 +02:00
|
|
|
case 'ping':
|
|
|
|
$cmd = $config['ping']." -c 5 $host";
|
|
|
|
break;
|
2008-11-13 17:19:43 +00:00
|
|
|
|
2015-07-13 20:10:26 +02:00
|
|
|
case 'tracert':
|
|
|
|
$cmd = $config['mtr']." -r -c 5 $host";
|
|
|
|
break;
|
2007-04-03 14:10:23 +00:00
|
|
|
|
2015-07-13 20:10:26 +02:00
|
|
|
case 'nmap':
|
|
|
|
if ($_SESSION['userlevel'] != '10') {
|
|
|
|
echo 'insufficient privileges';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$cmd = $config['nmap']." $host";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}//end switch
|
|
|
|
|
|
|
|
if (!empty($cmd)) {
|
|
|
|
$output = `$cmd`;
|
|
|
|
}
|
|
|
|
}//end if
|
|
|
|
}//end if
|
|
|
|
|
2016-06-02 06:56:45 +00:00
|
|
|
$output = htmlentities(trim($output), ENT_QUOTES);
|
2015-07-13 20:10:26 +02:00
|
|
|
echo "<pre>$output</pre>";
|