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 8ce5cc2 commit 6127b8aCopy full SHA for 6127b8a
modules/auxiliary/scanner/http/ms15_034_http_sys_memory_dump.rb
@@ -179,7 +179,17 @@ def run_host(ip)
179
ranges = calc_ranges(content_length)
180
181
uri = normalize_uri(target_uri.path)
182
- cli = Rex::Proto::Http::Client.new(ip)
+ cli = Rex::Proto::Http::Client.new(
183
+ ip,
184
+ rport,
185
+ {},
186
+ datastore['SSL'],
187
+ datastore['SSLVersion'],
188
+ nil,
189
+ datastore['USERNAME'],
190
+ datastore['PASSWORD']
191
+ )
192
+ cli.set_config('agent' => datastore['UserAgent'])
193
cli.connect
194
req = cli.request_raw(
195
'uri' => target_uri.path,
0 commit comments