Fix requires in new post modules

bug/bundler_fix
jvazquez-r7 2013-09-10 11:13:07 -05:00
parent df3aae0cae
commit 4f1db80c24
2 changed files with 6 additions and 0 deletions

View File

@ -9,6 +9,8 @@ require 'msf/core'
require 'msf/core/post/common' require 'msf/core/post/common'
require 'msf/core/post/windows/services' require 'msf/core/post/windows/services'
require 'msf/core/post/windows/priv' require 'msf/core/post/windows/priv'
require 'msf/core/post/windows/accounts'
require 'msf/core/post/file'
class Metasploit3 < Msf::Exploit::Local class Metasploit3 < Msf::Exploit::Local
Rank = GoodRanking Rank = GoodRanking

View File

@ -5,6 +5,10 @@
# http://metasploit.com/ # http://metasploit.com/
## ##
require 'msf/core'
require 'msf/core/post/common'
require 'msf/core/post/file'
class Metasploit3 < Msf::Post class Metasploit3 < Msf::Post
include Msf::Post::File include Msf::Post::File
include Msf::Post::Common include Msf::Post::Common