Understanding Keyloggers 1

One day i decided to sharpen my C skills and get to implementing a keylogger. But then i found myself lost in a rabbithole of MSDN docs, Stackoverflow threads and other forums dating to 2002 or something… So i wrote this for whoever wants to learn more about how actually keylogging works so hopefully you won’t find yourself reading a 22 year old post ;) Please note that some concepts have been simplified for the purpose of this keylogger implementation....

Sat, Aug 3, 2024 · 10 min · Yahya Korayem

Injecting DLLs in C

Hey folks! It’s been a while since I last posted anything on the blog but we are back! and gonna be posting again regularly ;) I will explain as much as possible without going on a lot of tangents so further reading is always encouraged. Of course this is for educational purposes only blah blah. DLL Injection??? DLL injection is a “sneaky” way to insert our code in the address space of the target process thereby executing our code!...

Thu, Mar 21, 2024 · 7 min · Yahya Korayem