Home
v0rkath
Cancel

How IAT Hooking Works

Overview This method of hooking is done by changing the address of the function you want to hook in the IAT so it jumps to your code rather than the function. What is IDT, IAT & ILT? The I...

Basics of Hooking Functions

Overview This blog post is to provide a very basic overview of what a hook is and the general process of how it works. Hooks are used to ensure your code is run when a certain function of a proces...

RC4 (Rivest Cipher 4) - How it operates & how to recognise it

RC4 (Rivest Cipher 4) This is a very commonly used Stream Cipher (this transforms a plaintext string byte-by-byte, they are linear meaning they are a symmetric type of encryption). Typically has ...