Skip to content

Commit 52f5652

Browse files
DanielRTeixeiramkienow-r7
authored andcommitted
Update slow_loris.rb
1 parent 74becb6 commit 52f5652

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/auxiliary/dos/http/slow_loris.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def initialize(info = {})
1111
super(update_info(
1212
info,
1313
'Name' => 'Slow Loris DoS',
14-
'Description' => %q{Slowloris tries to keep many connections to the target web server open and hold them open as long as possible.
14+
'Description' => %q{Slowloris tries to keep many connections to the target web server open and hold them open as long as possible.
1515
It accomplishes this by opening connections to the target web server and sending a partial request.
1616
Periodically, it will send subsequent requests, adding to but never completing the request.},
1717
'License' => MSF_LICENSE,
@@ -33,7 +33,7 @@ def initialize(info = {})
3333
Opt::RPORT(80),
3434
OptInt.new('THREADS', [true, 'The number of concurrent threads', 1000]),
3535
OptInt.new('HEADERS', [true, 'The number of custom headers sent by each thread', 10]),
36-
OptInt.new('TIMEOUT', [true, 'The maximum time in seconds to wait for each request to finish', 15])
36+
OptInt.new('TIMEOUT', [true, 'The maximum time in seconds to wait for each request to finish', 15])
3737
])
3838
end
3939

@@ -44,7 +44,7 @@ def thread_count
4444
def headers
4545
datastore['HEADERS']
4646
end
47-
47+
4848
def timeout
4949
datastore['TIMEOUT']
5050
end

0 commit comments

Comments
 (0)