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-b9f4589650da
unstable
Matt Miller 2006-08-17 01:57:52 +00:00
parent d8b2f95178
commit cc6900d2ec
2 changed files with 2 additions and 3 deletions

View File

@ -86,7 +86,6 @@ module BindTcp
'PeerHost' => datastore['RHOST'],
'PeerPort' => datastore['LPORT'].to_i,
'Proxies' => datastore['Proxies'],
'Comm' => comm,
'Context' =>
{
'Msf' => framework,

View File

@ -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