picoCTF{grep_is_good_to_find_things_ad4e9645} OverFlow 0 - Points: 100 - Solves: 4354 - Binary Exploitation This should be easy. Overflow the correct buffer in this program and get a flag. Its also found in /pr
Let's manually walk through the code and write down what happens: .intel_syntax noprefix .bits 32 .global asm2 ; call: asm2(0x7,0x28) asm2: push ebp mov ebp,esp sub esp,0x10 mov eax,DWORD PTR [ebp+0xc] ; eax = 0x28 mov DWORD PTR [ebp-0x4],eax ; var1 = 0x28 mov eax...