No need, since exploit mixins are now compat

git-svn-id: file:///home/svn/incoming/trunk@3587 4d416f70-5f16-0410-b530-b9f4589650da
unstable
HD Moore 2006-04-02 23:32:17 +00:00
parent 2299abf723
commit ccb5aeac2f
3 changed files with 0 additions and 30 deletions

View File

@ -17,8 +17,6 @@ class Auxiliary < Msf::Module
# Auxiliary mixins # Auxiliary mixins
# #
require 'msf/core/auxiliary/recon' require 'msf/core/auxiliary/recon'
require 'msf/core/auxiliary/tcp'
require 'msf/core/auxiliary/udp'
# #
# Returns MODULE_AUX to indicate that this is an auxiliary module. # Returns MODULE_AUX to indicate that this is an auxiliary module.

View File

@ -1,14 +0,0 @@
module Msf
###
#
# This module provides methods for establish a connection to a remote host and
# communicating with it.
#
###
module Auxiliary::Tcp
include Exploit::Remote::Tcp
end
end

View File

@ -1,14 +0,0 @@
module Msf
###
#
# This module provides methods for establish a connection to a remote host and
# communicating with it.
#
###
module Auxiliary::Udp
include Exploit::Remote::Udp
end
end