반응형
#Find the string /bin/sh.
objdump -s (File name) | grep (/,b,i,n,s,h) --color=auto.
#Find Strcpy Address.
objdump -d(File name)| grep strcpy.
#Pop Pop Ret Find Gadget.
objdump -d (File name) | grep ret-B3.
#Find Bss Area.
objdump -h (File name) | grep bss.
반응형
'#Tip' 카테고리의 다른 글
Double Free Bug. (0) | 2018.05.15 |
---|---|
Nc server needed for Pwnable problem. (0) | 2018.05.15 |
Simple Chrome Developer Tools Shortcut. (0) | 2018.05.12 |
Filter Bypass. (0) | 2018.05.09 |
Unicode. (0) | 2018.05.09 |