Skip to content

Commit b533f74

Browse files
author
Tod Beardsley
committed
Add a bruteforce_speed option to all LoginScanners
1 parent fbd1e9b commit b533f74

26 files changed

+26
-1
lines changed

modules/auxiliary/scanner/afp/afp_login.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ def run_host(ip)
6363
proxies: datastore['PROXIES'],
6464
cred_details: cred_collection,
6565
stop_on_success: datastore['STOP_ON_SUCCESS'],
66+
bruteforce_speed: datastore['BRUTEFORCE_SPEED'],
6667
connection_timeout: 30,
6768
max_send_size: datastore['TCP::max_send_size'],
6869
send_delay: datastore['TCP::send_delay'],

modules/auxiliary/scanner/db2/db2_auth.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ def run_host(ip)
6161
proxies: datastore['PROXIES'],
6262
cred_details: cred_collection,
6363
stop_on_success: datastore['STOP_ON_SUCCESS'],
64+
bruteforce_speed: datastore['BRUTEFORCE_SPEED'],
6465
connection_timeout: 30,
6566
max_send_size: datastore['TCP::max_send_size'],
6667
send_delay: datastore['TCP::send_delay'],

modules/auxiliary/scanner/ftp/ftp_login.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ def run_host(ip)
7575
proxies: datastore['PROXIES'],
7676
cred_details: cred_collection,
7777
stop_on_success: datastore['STOP_ON_SUCCESS'],
78+
bruteforce_speed: datastore['BRUTEFORCE_SPEED'],
7879
max_send_size: datastore['TCP::max_send_size'],
7980
send_delay: datastore['TCP::send_delay'],
8081
connection_timeout: 30

modules/auxiliary/scanner/http/appletv_login.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ def run_host(ip)
8080
proxies: datastore["PROXIES"],
8181
cred_details: cred_collection,
8282
stop_on_success: datastore['STOP_ON_SUCCESS'],
83+
bruteforce_speed: datastore['BRUTEFORCE_SPEED'],
8384
connection_timeout: 5,
8485
)
8586

modules/auxiliary/scanner/http/axis_login.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ def run_host(ip)
8585
proxies: proxies,
8686
cred_details: cred_collection,
8787
stop_on_success: datastore['STOP_ON_SUCCESS'],
88+
bruteforce_speed: datastore['BRUTEFORCE_SPEED'],
8889
connection_timeout: 5,
8990
user_agent: datastore['UserAgent'],
9091
vhost: datastore['VHOST']

modules/auxiliary/scanner/http/buffalo_login.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ def run_host(ip)
4949
proxies: datastore['PROXIES'],
5050
cred_details: cred_collection,
5151
stop_on_success: datastore['STOP_ON_SUCCESS'],
52+
bruteforce_speed: datastore['BRUTEFORCE_SPEED'],
5253
connection_timeout: 10,
5354
user_agent: datastore['UserAgent'],
5455
vhost: datastore['VHOST']

modules/auxiliary/scanner/http/glassfish_login.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ def init_loginscanner(ip)
100100
proxies: datastore["PROXIES"],
101101
cred_details: @cred_collection,
102102
stop_on_success: datastore['STOP_ON_SUCCESS'],
103+
bruteforce_speed: datastore['BRUTEFORCE_SPEED'],
103104
connection_timeout: 5
104105
)
105106

modules/auxiliary/scanner/http/hp_sys_mgmt_login.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ def init_loginscanner(ip)
8282
proxies: datastore["PROXIES"],
8383
cred_details: @cred_collection,
8484
stop_on_success: datastore['STOP_ON_SUCCESS'],
85+
bruteforce_speed: datastore['BRUTEFORCE_SPEED'],
8586
connection_timeout: 5
8687
)
8788

modules/auxiliary/scanner/http/http_login.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ def run_host(ip)
160160
proxies: datastore["PROXIES"],
161161
cred_details: cred_collection,
162162
stop_on_success: datastore['STOP_ON_SUCCESS'],
163+
bruteforce_speed: datastore['BRUTEFORCE_SPEED'],
163164
connection_timeout: 5,
164165
user_agent: datastore['UserAgent'],
165166
vhost: datastore['VHOST']

modules/auxiliary/scanner/http/ipboard_login.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ def run_host(ip)
4444
proxies: datastore["PROXIES"],
4545
cred_details: cred_collection,
4646
stop_on_success: datastore['STOP_ON_SUCCESS'],
47+
bruteforce_speed: datastore['BRUTEFORCE_SPEED'],
4748
connection_timeout: 5,
4849
user_agent: datastore['UserAgent'],
4950
vhost: datastore['VHOST']

0 commit comments

Comments
 (0)