diff --git a/modules/auxiliary/scanner/http/ms15_034_http_sys_memory_dump.rb b/modules/auxiliary/scanner/http/ms15_034_http_sys_memory_dump.rb index 7e6a601be9..9ef7d98a2b 100644 --- a/modules/auxiliary/scanner/http/ms15_034_http_sys_memory_dump.rb +++ b/modules/auxiliary/scanner/http/ms15_034_http_sys_memory_dump.rb @@ -23,7 +23,9 @@ class MetasploitModule < Msf::Auxiliary 'Author' => [ 'Rich Whitcroft ', # Msf module - 'sinn3r' # Some more Metasploit stuff + 'sinn3r', # Some more Metasploit stuff + 'Sunny Neo ' #Added VHOST option + ], 'License' => MSF_LICENSE, 'References' => @@ -43,7 +45,6 @@ class MetasploitModule < Msf::Auxiliary OptBool.new('SUPPRESS_REQUEST', [ true, 'Suppress output of the requested resource', true ]) ]) - deregister_options('VHOST') end def potential_static_files_uris @@ -186,6 +187,7 @@ class MetasploitModule < Msf::Auxiliary req = cli.request_raw( 'uri' => target_uri.path, 'method' => 'GET', + 'vhost' => "#{datastore['VHOST']}", 'headers' => { 'Range' => ranges }