From f14dd07148e062184d72e6e9ea4fcec1c49ae1bb Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Thu, 7 Aug 2014 11:50:26 +0000 Subject: [PATCH] 2014-08-07 Ramon Novoa * util/recon_scripts/snmp-recon.pl, util/recon_scripts/wmi-recon.pl: Set a default value for nmap_timing_template. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10392 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_server/ChangeLog | 6 ++++++ pandora_server/util/recon_scripts/snmp-recon.pl | 2 ++ pandora_server/util/recon_scripts/wmi-recon.pl | 2 ++ 3 files changed, 10 insertions(+) diff --git a/pandora_server/ChangeLog b/pandora_server/ChangeLog index 0f514bc813..84ad4845e4 100644 --- a/pandora_server/ChangeLog +++ b/pandora_server/ChangeLog @@ -1,3 +1,9 @@ +2014-08-07 Ramon Novoa + + * util/recon_scripts/snmp-recon.pl, + util/recon_scripts/wmi-recon.pl: Set a default value + for nmap_timing_template. + 2014-08-07 Ramon Novoa * conf/pandora_server.conf.new, diff --git a/pandora_server/util/recon_scripts/snmp-recon.pl b/pandora_server/util/recon_scripts/snmp-recon.pl index a810d80ad6..18d02838cf 100755 --- a/pandora_server/util/recon_scripts/snmp-recon.pl +++ b/pandora_server/util/recon_scripts/snmp-recon.pl @@ -37,6 +37,7 @@ if ($OSNAME eq "freebsd") { 'pandora_path' => '/usr/local/etc/pandora/pandora_server.conf', 'icmp_checks' => 1, 'networktimeout' => 2, + 'nmap_timing_template' => 2, 'PID' => '', 'quiet' => 1, ); @@ -46,6 +47,7 @@ if ($OSNAME eq "freebsd") { 'pandora_path' => '/etc/pandora/pandora_server.conf', 'icmp_checks' => 1, 'networktimeout' => 2, + 'nmap_timing_template' => 2, 'PID' => '', 'quiet' => 1, ); diff --git a/pandora_server/util/recon_scripts/wmi-recon.pl b/pandora_server/util/recon_scripts/wmi-recon.pl index 0d57308963..092ead1d51 100755 --- a/pandora_server/util/recon_scripts/wmi-recon.pl +++ b/pandora_server/util/recon_scripts/wmi-recon.pl @@ -29,6 +29,7 @@ if ($OSNAME eq "freebsd") { 'pandora_path' => '/usr/local/etc/pandora/pandora_server.conf', 'networktimeout' => 2, 'icmp_checks' => 1, + 'nmap_timing_template' => 2, 'wmi_client' => '/usr/local/bin/wmic'); } else { %CONF = ('quiet' => 0, @@ -38,6 +39,7 @@ if ($OSNAME eq "freebsd") { 'pandora_path' => '/etc/pandora/pandora_server.conf', 'networktimeout' => 2, 'icmp_checks' => 1, + 'nmap_timing_template' => 2, 'wmi_client' => '/usr/bin/wmic'); }