-
C언어 함수 포인터를 이용한 shellcode 실행Programing/C 2014. 9. 19. 14:28
unsigned char shellcode[] = "shellcode here"; int main() { int (*func)(); func = (int (*)())&shellcode; (int)(*func)(); return 0; }
'Programing > C' 카테고리의 다른 글
MinGW와 Sublime text 2로 컴파일 환경 구축 (0) 2014.07.28