Shellcode i386 - 0x101
Just another c2asm / cdecl / .data / .text / int 0x80 / execve / bad chars cleanup Write-up.
Reversing C code 0×101
Program
Let’s consider the following main.c code:
int add(int x, int y) {
return x + y;
}
void main() {
int z = add(1, 2);
...
jamarir.hashnode.dev24 min read