Transport priority changes

Default transport request should set the priority to the Host: request header, and the subsequent OverrideRequestHost, OverrideLHOST, and OverrideLPORT options in the handler for reverse_http(s).
bug/bundler_fix
sammbertram 2015-11-13 13:19:01 +00:00
parent 9a0f0a7843
commit 9d9865150b
1 changed files with 2 additions and 2 deletions

View File

@ -55,8 +55,8 @@ module Msf::Payload::TransportConfig
{
:scheme => 'http',
:lhost => datastore['LHOST'],
:lport => datastore['LPORT'].to_i,
:lhost => opts[:lhost],
:lport => opts[:lport].to_i,
:uri => uri,
:comm_timeout => datastore['SessionCommunicationTimeout'].to_i,
:retry_total => datastore['SessionRetryTotal'].to_i,