diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 5929d063c5..dd3d78c76a 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,10 @@ +2012-06-20 Hirofumi Kosaka + + * extensions/net_tools.php: Fixed bug: 'whereis' could find a + command regardless of whether reachable or not with $PATH + (and leads to fail the subsequent command execution). + Merged from 4.0.2 + 2012-06-20 Hirofumi Kosaka * extensions/net_tools.php: Fixed bug: cannot find traceroute diff --git a/pandora_console/extensions/net_tools.php b/pandora_console/extensions/net_tools.php index 08a0400acc..14d636fc36 100644 --- a/pandora_console/extensions/net_tools.php +++ b/pandora_console/extensions/net_tools.php @@ -54,7 +54,7 @@ function main_net_tools () { switch($operation) { case 1: ob_start(); - system('whereis traceroute'); + system('which traceroute'); $output = ob_get_clean(); $result = explode(':', $output); $result = trim($result[1]); @@ -77,7 +77,7 @@ function main_net_tools () { case 2: ob_start(); - system('whereis ping'); + system('which ping'); $output = ob_get_clean(); $result = explode(':', $output); $result = trim($result[1]); @@ -94,7 +94,7 @@ function main_net_tools () { case 4: ob_start(); - system('whereis nmap'); + system('which nmap'); $output = ob_get_clean(); $result = explode(':', $output); $result = trim($result[1]); @@ -112,7 +112,7 @@ function main_net_tools () { case 5: echo "

".__("Domain and IP information for "). $ip. "

"; ob_start(); - system('whereis dig'); + system('which dig'); $output = ob_get_clean(); $result = explode(':', $output); $result = trim($result[1]); @@ -125,7 +125,7 @@ function main_net_tools () { echo ""; } ob_start(); - system('whereis whois'); + system('which whois'); $output = ob_get_clean(); $result = explode(':', $output); $result = trim($result[1]); @@ -141,7 +141,7 @@ function main_net_tools () { break; case 3: echo "

".__("SNMP information for "). $ip. "

"; ob_start(); - system('whereis snmpget'); + system('which snmpget'); $output = ob_get_clean(); $result = explode(':', $output); $result = trim($result[1]);