I committed to the wrong branch

bug/bundler_fix
Carter 2017-05-13 13:35:13 -04:00 committed by GitHub
parent 0bd11062e4
commit 78b0fb00da
1 changed files with 2 additions and 20 deletions

View File

@ -2,7 +2,6 @@ class MetasploitModule < Msf::Post
include Msf::Post::Windows::Registry include Msf::Post::Windows::Registry
include Msf::Post::File include Msf::Post::File
include Msf::Post::Common include Msf::Post::Common
include Msf::Post::Windows::Priv
def initialize(info = {}) def initialize(info = {})
super(update_info( super(update_info(
@ -22,8 +21,7 @@ class MetasploitModule < Msf::Post
register_options( register_options(
[ [
OptString.new('EXE', [true, 'The executable to start and migrate into', 'C:\windows\sysnative\svchost.exe']), OptString.new('EXE', [true, 'The executable to start and migrate into', 'C:\windows\sysnative\svchost.exe']),
OptBool.new('FALLBACK', [ true, 'If the selected migration executable does not exist fallback to a sysnative file', true ]), OptBool.new('FALLBACK', [ true, 'If the selected migration executable does not exist fallback to a sysnative file', true ])
OptBool.new('IGNORE_SYSTEM', [true, 'Migrate even if you have system priveleges', true])
], ],
self.class self.class
) )
@ -50,7 +48,7 @@ class MetasploitModule < Msf::Post
return windir return windir
end end
def do_migrate def run
if check_32_on_64 if check_32_on_64
print_status('The meterpreter is not the same architecture as the OS! Upgrading!') print_status('The meterpreter is not the same architecture as the OS! Upgrading!')
newproc = datastore['EXE'] newproc = datastore['EXE']
@ -88,20 +86,4 @@ class MetasploitModule < Msf::Post
print_good('The meterpreter is the same architecture as the OS!') print_good('The meterpreter is the same architecture as the OS!')
end end
end end
def run
if datastore['IGNORE_SYSTEM']
do_migrate
elsif !datastore['IGNORE_SYSTEM'] && is_system?
print_error('You are running as SYSTEM! Aborting migration.')
elsif datastore['IGNORE_SYSTEM'] && is_system?
print_error('You are running as SYSTEM! You will lose your priveleges!')
do_migrate
elsif !datastore['IGNORE_SYSTEM'] && !is_system?
print_status('You\'re not running as SYSTEM. Moving on...')
do_migrate
end
end
end end