Is this possible to write a service program running under NT/2000/XP, which has a global keyboard hook, and capture the user login name and pasword? has anybody tried it? I just don't want spend couple of days and then find out no way to do it. Thanks
Shawn Ning
Posts
-
Capture password by service and hook -
Capture password by service and hookIs this possible to write a service program running under NT/2000/XP, which has a global keyboard hook, and capture the user login name and pasword? has anybody tried it? I just don't want spend couple of days and then find out no way to do it. Thanks
-
Spy++ can not capture message of this windowUnder Windows 2000, you type "net send %computername% 12345" in Command Prompt. This will create a Messagebox titled "Messagener service". I can not log the message of this window. Nothing will display. Why? the process of this window is "CSRSS", which is a kernal process I believe, Is that the reason I can see its message? What I want to do is send message to this window to simulate a mouse click on the OK button. SendMessage(hwnd, WM_COMMAND, 1, 0); I tried SendMessage, PostMessage, PostThreadMessage and Send NotifyMessage, none of them work! Please