fix to bind_tcp handler where it wouldn't use the proper comm
git-svn-id: file:///home/svn/framework3/trunk@3834 4d416f70-5f16-0410-b530-b9f4589650daunstable
parent
d8b2f95178
commit
cc6900d2ec
|
@ -86,7 +86,6 @@ module BindTcp
|
|||
'PeerHost' => datastore['RHOST'],
|
||||
'PeerPort' => datastore['LPORT'].to_i,
|
||||
'Proxies' => datastore['Proxies'],
|
||||
'Comm' => comm,
|
||||
'Context' =>
|
||||
{
|
||||
'Msf' => framework,
|
||||
|
|
|
@ -32,14 +32,14 @@ module StreamAbstraction
|
|||
# Symbolic peer information.
|
||||
#
|
||||
def peerinfo
|
||||
(@peer || "Remote Pipe") + " (HTTP)"
|
||||
(@peer || "Remote Pipe")
|
||||
end
|
||||
|
||||
#
|
||||
# Symbolic local information.
|
||||
#
|
||||
def localinfo
|
||||
"Local Pipe (HTTP)"
|
||||
"Local Pipe"
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue