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 ea54696 commit 888c718Copy full SHA for 888c718
lib/metasploit/framework/login_scanner/http.rb
@@ -286,7 +286,7 @@ def configure_http_client(http_client)
286
# Set the parameter only if it is not nil
287
possible_params.each_pair do |k,v|
288
next if v.nil?
289
- http_client.set_config(k,v)
+ http_client.set_config(k => v)
290
end
291
292
http_client
lib/msf/core/exploit/http/client.rb
@@ -219,7 +219,7 @@ def configure_http_login_scanner(conf)
219
{
220
host: rhost,
221
port: rport,
222
- ssl: dossl,
+ ssl: ssl,
223
ssl_version: ssl_version,
224
proxies: datastore['PROXIES'],
225
framework: framework,
0 commit comments