Files
metasploit-gs/lib/msf/core/session/comm.rb
T
Tab Assassin 7e5e0f7fc8 Retab lib
2013-08-30 16:28:33 -05:00

29 lines
536 B
Ruby

# -*- coding: binary -*-
require 'rex/socket'
module Msf
module Session
###
#
# This class implements the Rex::Socket::Comm module interface and is capable
# of creating network-based connections that are pivoted from the session in
# question.
#
###
module Comm
include Rex::Socket::Comm
#
# Session-based comm classes implement an instance specific method for
# creating network-based connections rather than the typicall class
# specific methods.
#
def create(param)
raise NotImplementedError
end
end
end
end