Fix SRVHOST

bug/bundler_fix
wchen-r7 2015-07-14 13:49:28 -05:00
parent 9dddb13d0b
commit f76fe07872
1 changed files with 1 additions and 1 deletions

View File

@ -654,7 +654,7 @@ module Msf
exploit_list.each do |mod|
proto = datastore['SSL'] ? 'https' : 'http'
host = datastore['URIHOST'] || Rex::Socket.source_address
host = (datastore['SRVHOST'] == '0.0.0.0') ? Rex::Socket.source_address : datastore['SRVHOST']
port = datastore['SRVPORT']
resource = mod.datastore['URIPATH']
url = "#{proto}://#{host}:#{port}#{resource}"