0x04 pwnable/RootMe(2)
-
ELF x86 - Stack buffer overflow basic 4
보호되어 있는 글입니다.
2019.03.23 -
Bash - System 1
문제 파악 : ls 이지만, .passwd를 읽어야 한다. #include #include /* gcc -m32 -o ch11 ch11.c */ int main(void){ system("ls /challenge/app-script/ch11/.passwd"); return 0;} 권한 파악 : app-script-ch11-cracked는 .passwd 읽는 권한이 있다. app-script-ch11@challenge02:~$ ls -altotal 24dr-xr-x--- 2 app-script-ch11-cracked app-script-ch11 4096 Aug 11 2015 .drwxr-xr-x 18 root root 4096 Feb 28 21:15 ..-r--r----- 1 app-script-ch11-..
2019.03.23