[Linux] system함수 안의 /bin/sh문자열 주소 구하기
12345678#include int main(){ long shell = ; //system function address while(memcmp((void *)shell,"/bin/sh",8)) shell++; printf("\"/bin/sh/\" : 0x%x\n",shell);}Colored by Color Scriptercsshell 변수 부분에 system함수의 주소를 적는다.