From 22664e63ca7dee88c7bbb0d258cb0526d2835118 Mon Sep 17 00:00:00 2001 From: Meatballs Date: Fri, 6 Feb 2015 19:51:55 +0000 Subject: [PATCH] Increase default timeout --- modules/auxiliary/scanner/snmp/snmp_login.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/auxiliary/scanner/snmp/snmp_login.rb b/modules/auxiliary/scanner/snmp/snmp_login.rb index 17a4af375e..3d1f3475c9 100644 --- a/modules/auxiliary/scanner/snmp/snmp_login.rb +++ b/modules/auxiliary/scanner/snmp/snmp_login.rb @@ -30,7 +30,7 @@ class Metasploit3 < Msf::Auxiliary [ Opt::RPORT(161), Opt::CHOST, - OptInt.new('CONNECTION_TIMEOUT', [true, 'The timeout value for each probe', 1]), + OptInt.new('CONNECTION_TIMEOUT', [true, 'The timeout value for each probe', 2]), OptInt.new('RETRIES', [true, 'The number of retries per community string', 0]), OptInt.new('BATCHSIZE', [true, 'The number of hosts to probe in each set', 256]), OptEnum.new('VERSION', [true, 'The SNMP version to scan', 'all', ['1','2c','all']]),