1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-11-12 11:52:01 +01:00

Correct the execute flags

git-svn-id: file:///home/svn/framework3/trunk@6434 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
HD Moore 2009-03-29 16:39:47 +00:00
parent 9471a632b6
commit fad673fb35

View File

@ -18,7 +18,7 @@ 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', {'Hidden' => true })
calc = client.sys.process.execute('calc.exe', nil, {'Hidden' => true })
target_pid = calc.pid
end