• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

keyloggers

Journer

Banned
what language are these usually written in? I'm assuming C++, but i was wondering if it is possible to write a program with very low level access in .net. I wanted to do some research into writing a little program that when run, forces all letters to be cap-locked. Just something to bother co-workers with, haha...but more so to understand how to tap into APIs
 
Usually something like C/C++ as they are compiled to run natively on the OS. If you went down the .net route you'd have to make sure the target machine had the .net framework installed. You can invoke any of the Windows API's anyway with .net using P/Invoke so shouldn't be a problem.
 
Originally posted by: Snapster
Usually something like C/C++ as they are compiled to run natively on the OS. If you went down the .net route you'd have to make sure the target machine had the .net framework installed. You can invoke any of the Windows API's anyway with .net using P/Invoke so shouldn't be a problem.

sounds fun. just about everyone i'de like to annoy with this has the latest .net so that shouldn't be a problem
 
Download the source for vitrite (google it), check which API calls it uses to hook the keyboard, and figure the rest out from there. It's pretty trivial. Vitrite is C or C++ but it should be easy enough to translate.
 
Back
Top