Files
metasploit-gs/lib/msf/scripts/meterpreter/common.rb
T
Carlos Perez 68e3691411 Change Post Mixin for Windows platform in its own separate class and minor fixes on modules and scripts
git-svn-id: file:///home/svn/framework3/trunk@12990 4d416f70-5f16-0410-b530-b9f4589650da
2011-06-21 00:38:04 +00:00

19 lines
284 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::Windows::Priv
include Msf::Post::Windows::Eventlog
include Msf::Post::Common
end
end
end
end