2014-08-07 Ramon Novoa <rnovoa@artica.es>
* conf/pandora_server.conf.new, lib/PandoraFMS/Config.pm, lib/PandoraFMS/ReconServer.pm, util/recon_scripts/snmp-recon.pl, util/recon_scripts/wmi-recon.pl: Added a new parameter to control how aggressive nmap should be. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10391 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
4f5e94b450
commit
b7183f4daf
|
@ -1,3 +1,12 @@
|
|||
2014-08-07 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* conf/pandora_server.conf.new,
|
||||
lib/PandoraFMS/Config.pm,
|
||||
lib/PandoraFMS/ReconServer.pm,
|
||||
util/recon_scripts/snmp-recon.pl,
|
||||
util/recon_scripts/wmi-recon.pl: Added a new parameter to control how
|
||||
aggressive nmap should be.
|
||||
|
||||
2014-08-06 Sancho Lerena <slerena@artica.es>
|
||||
|
||||
* NetBSD/pandora_server.conf,
|
||||
|
|
|
@ -244,6 +244,9 @@ xprobe2 /usr/bin/xprobe2
|
|||
|
||||
nmap /usr/bin/nmap
|
||||
|
||||
# A value that specifies how aggressive nmap should be from 1 to 5. 1 means slower but more reliable, 5 means faster but less reliable. 2 by default.
|
||||
nmap_timing_template 2
|
||||
|
||||
# snmpget: Needed to do SNMP checks. By default is on /usr/bin/snmpget
|
||||
|
||||
snmpget /usr/bin/snmpget
|
||||
|
|
|
@ -264,6 +264,7 @@ sub pandora_load_config {
|
|||
|
||||
# nmap for recon OS fingerprinting and tcpscan (optional)
|
||||
$pa_config->{"nmap"} = "/usr/bin/nmap";
|
||||
$pa_config->{"nmap_timing_template"} = 2; # > 5.1
|
||||
|
||||
# braa for enterprise snmp server
|
||||
$pa_config->{"braa"} = "/usr/bin/braa";
|
||||
|
@ -607,6 +608,9 @@ sub pandora_load_config {
|
|||
elsif ($parametro =~ m/^nmap\s(.*)/i) {
|
||||
$pa_config->{'nmap'}= clean_blank($1);
|
||||
}
|
||||
elsif ($parametro =~ m/^nmap_timing_template\s([0-9]*)/i) {
|
||||
$pa_config->{'nmap_timing_template'}= clean_blank($1);
|
||||
}
|
||||
elsif ($parametro =~ m/^braa\s(.*)/i) {
|
||||
$pa_config->{'braa'}= clean_blank($1);
|
||||
}
|
||||
|
|
|
@ -141,9 +141,11 @@ sub data_consumer ($$) {
|
|||
}
|
||||
|
||||
# Call nmap
|
||||
my $timeout = $pa_config->{'networktimeout'}*1000;
|
||||
my $nmap_args = '-nsP -PE --max-retries '.$pa_config->{'icmp_checks'}.' --host-timeout '.$timeout.' -T'.$pa_config->{'nmap_timing_template'};
|
||||
my $np = new PandoraFMS::NmapParser;
|
||||
eval {
|
||||
$np->parsescan($pa_config->{'nmap'},'-nsP', ($task->{'subnet'}));
|
||||
$np->parsescan($pa_config->{'nmap'}, $nmap_args, ($task->{'subnet'}));
|
||||
};
|
||||
if ($@) {
|
||||
update_recon_task ($dbh, $task_id, -1);
|
||||
|
@ -325,9 +327,11 @@ sub get_host_parent {
|
|||
my ($pa_config, $host, $dbh, $group, $max_depth, $resolve, $os_detect) = @_;
|
||||
|
||||
# Call nmap
|
||||
my $timeout = $pa_config->{'networktimeout'}*1000;
|
||||
my $nmap_args = '-nsP -PE --traceroute --max-retries '.$pa_config->{'icmp_checks'}.' --host-timeout '.$timeout.' -T'.$pa_config->{'nmap_timing_template'};
|
||||
my $np = new PandoraFMS::NmapParser;
|
||||
eval {
|
||||
$np->parsescan($pa_config->{'nmap'},'-nsP --traceroute', ($host));
|
||||
$np->parsescan($pa_config->{'nmap'}, $nmap_args, ($host));
|
||||
};
|
||||
if ($@) {
|
||||
return 0;
|
||||
|
|
|
@ -35,8 +35,8 @@ if ($OSNAME eq "freebsd") {
|
|||
%CONF = (
|
||||
'nmap' => '/usr/local/bin/nmap',
|
||||
'pandora_path' => '/usr/local/etc/pandora/pandora_server.conf',
|
||||
'ping_retries' => 1,
|
||||
'ping_timeout' => 2,
|
||||
'icmp_checks' => 1,
|
||||
'networktimeout' => 2,
|
||||
'PID' => '',
|
||||
'quiet' => 1,
|
||||
);
|
||||
|
@ -44,8 +44,8 @@ if ($OSNAME eq "freebsd") {
|
|||
%CONF = (
|
||||
'nmap' => '/usr/bin/nmap',
|
||||
'pandora_path' => '/etc/pandora/pandora_server.conf',
|
||||
'ping_retries' => 1,
|
||||
'ping_timeout' => 2,
|
||||
'icmp_checks' => 1,
|
||||
'networktimeout' => 2,
|
||||
'PID' => '',
|
||||
'quiet' => 1,
|
||||
);
|
||||
|
@ -861,9 +861,11 @@ sub traceroute_connectivity($) {
|
|||
return unless defined($agent);
|
||||
|
||||
# Perform a traceroute.
|
||||
my $timeout = $CONF{'networktimeout'}*1000;
|
||||
my $nmap_args = '-nsP -PE --traceroute --max-retries '.$CONF{'icmp_checks'}.' --host-timeout '.$timeout.' -T'.$CONF{'nmap_timing_template'};
|
||||
my $np = new PandoraFMS::NmapParser;
|
||||
eval {
|
||||
$np->parsescan($CONF{'nmap'}, '-nsP --traceroute', ($host));
|
||||
$np->parsescan($CONF{'nmap'}, $nmap_args, ($host));
|
||||
};
|
||||
return if ($@);
|
||||
|
||||
|
@ -930,10 +932,11 @@ update_recon_task($DBH, $TASK_ID, 1);
|
|||
|
||||
# Populate ARP caches.
|
||||
message("Populating ARP caches...");
|
||||
my $timeout = $CONF{'ping_timeout'} * 1000; # Convert the timeout from s to ms.
|
||||
my $timeout = $CONF{'networktimeout'} * 1000; # Convert the timeout from s to ms.
|
||||
my $nmap_args = '-nsP --send-ip --max-retries '.$CONF{'icmp_checks'}.' --host-timeout '.$timeout.' -T'.$CONF{'nmap_timing_template'};
|
||||
my $np = new PandoraFMS::NmapParser;
|
||||
if ($#SUBNETS >= 0) {
|
||||
$np->parsescan($CONF{'nmap'}, '-nsP --send-ip --max-retries ' . $CONF{'ping_retries'} . ' --host-timeout ' . $timeout, @SUBNETS);
|
||||
$np->parsescan($CONF{'nmap'}, $nmap_args, @SUBNETS);
|
||||
}
|
||||
|
||||
# Find routers.
|
||||
|
|
|
@ -27,8 +27,8 @@ if ($OSNAME eq "freebsd") {
|
|||
'daemon' => 0,
|
||||
'PID' => '',
|
||||
'pandora_path' => '/usr/local/etc/pandora/pandora_server.conf',
|
||||
'ping_timeout' => 2,
|
||||
'ping_retries' => 1,
|
||||
'networktimeout' => 2,
|
||||
'icmp_checks' => 1,
|
||||
'wmi_client' => '/usr/local/bin/wmic');
|
||||
} else {
|
||||
%CONF = ('quiet' => 0,
|
||||
|
@ -36,8 +36,8 @@ if ($OSNAME eq "freebsd") {
|
|||
'daemon' => 0,
|
||||
'PID' => '',
|
||||
'pandora_path' => '/etc/pandora/pandora_server.conf',
|
||||
'ping_timeout' => 2,
|
||||
'ping_retries' => 1,
|
||||
'networktimeout' => 2,
|
||||
'icmp_checks' => 1,
|
||||
'wmi_client' => '/usr/bin/wmic');
|
||||
}
|
||||
|
||||
|
@ -106,10 +106,10 @@ sub recon_scan($$) {
|
|||
my ($task, $function) = @_;
|
||||
|
||||
# Timeout in ms.
|
||||
my $timeout = $CONF{'ping_timeout'} * 1000;
|
||||
my $timeout = $CONF{'networktimeout'} * 1000;
|
||||
|
||||
# Added -PE to make nmap behave like ping and avoid confusion if ICMP traffic is blocked.
|
||||
my $nmap_args = '-nsP -PE --max-retries ' . $CONF{'ping_retries'} . ' --host-timeout ' . $timeout;
|
||||
my $nmap_args = '-nsP -PE --max-retries ' . $CONF{'icmp_checks'} . ' --host-timeout '.$timeout.' -T'.$CONF{'nmap_timing_template'};
|
||||
|
||||
# Scan the network.
|
||||
my $np = new PandoraFMS::NmapParser;
|
||||
|
|
Loading…
Reference in New Issue