Files
metasploit-gs/lib/msf/scripts/meterpreter/common.rb
T
James Lee 437b060ab9 fix a namespace problem, maybe related to #3592
git-svn-id: file:///home/svn/framework3/trunk@11590 4d416f70-5f16-0410-b530-b9f4589650da
2011-01-17 20:53:57 +00:00

19 lines
266 B
Ruby

require 'msf/core/post/common'
require 'msf/core/post/windows/eventlog'
require 'msf/core/post/windows/priv'
module Msf
module Scripts
module Meterpreter
module Common
include Msf::Post::Priv
include Msf::Post::Eventlog
include Msf::Post::Common
end
end
end
end