Files
metasploit-gs/lib/rex/post/meterpreter/extensions/stdapi/net/socket.rb
T
HD Moore 9d99bf1039 Store the original error code in the RequestError object as well, use this code to determine whether to raise a connect error or not
git-svn-id: file:///home/svn/framework3/trunk@10759 4d416f70-5f16-0410-b530-b9f4589650da
2010-10-20 01:05:50 +00:00

138 lines
2.9 KiB
Ruby

#!/usr/bin/env ruby
require 'thread'
require 'rex/socket'
require 'rex/post/meterpreter/extensions/stdapi/tlv'
require 'rex/post/meterpreter/extensions/stdapi/net/socket_subsystem/tcp_client_channel'
require 'rex/post/meterpreter/extensions/stdapi/net/socket_subsystem/tcp_server_channel'
require 'rex/post/meterpreter/extensions/stdapi/net/socket_subsystem/udp_channel'
require 'rex/logging'
module Rex
module Post
module Meterpreter
module Extensions
module Stdapi
module Net
###
#
# This class provides an interface to interacting with sockets
# on the remote machine. It allows callers to open TCP, UDP,
# and other arbitrary socket-based connections as channels that
# can then be interacted with through the established
# meterpreter connection.
#
###
class Socket
##
#
# Constructor
#
##
#
# Initialize the socket subsystem and start monitoring sockets as they come in.
#
def initialize(client)
self.client = client
# register the inbound handler for the tcp server channel (allowing us to receive new client connections to a tcp server channel)
client.register_inbound_handler( Rex::Post::Meterpreter::Extensions::Stdapi::Net::SocketSubsystem::TcpServerChannel )
end
#
# Deregister the inbound handler for the tcp server channel
#
def shutdown
client.deregister_inbound_handler( Rex::Post::Meterpreter::Extensions::Stdapi::Net::SocketSubsystem::TcpServerChannel )
end
##
#
# Factory
#
##
#
# Creates an arbitrary client socket channel using the information
# supplied in the socket parameters instance. The 'params' argument
# is expected to be of type Rex::Socket::Parameters.
#
def create( params )
res = nil
if( params.tcp? )
if( params.server? )
res = create_tcp_server_channel( params )
else
res = create_tcp_client_channel( params )
end
elsif( params.udp? )
res = create_udp_channel( params )
end
return res
end
#
# Create a TCP server channel.
#
def create_tcp_server_channel(params)
begin
return SocketSubsystem::TcpServerChannel.open(client, params)
rescue ::Rex::Post::Meterpreter::RequestError => e
case e.code
when 10000 .. 10100
raise ::Rex::ConnectionError.new
end
raise e
end
end
#
# Creates a TCP client channel.
#
def create_tcp_client_channel(params)
begin
channel = SocketSubsystem::TcpClientChannel.open(client, params)
if( channel != nil )
return channel.lsock
end
return nil
rescue ::Rex::Post::Meterpreter::RequestError => e
case e.code
when 10000 .. 10100
raise ::Rex::ConnectionError.new
end
raise e
end
end
#
# Creates a UDP channel.
#
def create_udp_channel(params)
begin
return SocketSubsystem::UdpChannel.open(client, params)
rescue ::Rex::Post::Meterpreter::RequestError => e
case e.code
when 10000 .. 10100
raise ::Rex::ConnectionError.new
end
raise e
end
end
protected
attr_accessor :client # :nodoc:
end
end; end; end; end; end; end