Files
metasploit-gs/lib/msf/core/exploit/dcerpc.rb
T
Matt Miller a0b6980813 options now have explicit class owners
git-svn-id: file:///home/svn/incoming/trunk@2587 4d416f70-5f16-0410-b530-b9f4589650da
2005-06-05 23:45:58 +00:00

29 lines
470 B
Ruby

module Msf
###
#
# DCERPC
# ------
#
# This mixin provides utility methods for interacting with a DCERPC service on
# a remote machine. These methods may generally be useful in the context of
# exploitation. This mixin extends the Tcp exploit mixin.
#
###
module Exploit::Remote::DCERPC
include Exploit::Remote::Tcp
def initialize(info = {})
super
register_options(
[
Opt::RHOST,
Opt::RPORT(135)
], Msf::Exploit::Remote::DCERPC)
end
end
end