일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |
- dreamhack
- picoCTF
- Montgomery Reduction
- RSA Common Modulas Attack
- RSA
- pycrpytodome
- Franklin-Reiter Related Message Attack
- Cube Root Attack
- bandit
- return address overflow
- redirect
- AES
- Crypto
- Hastad
- 드림핵
- arp
- XSS
- shellcode
- Bandit Level 1 → Level 2
- overthewire
- 시스템해킹
- CSRF
- weak key
- OverTheWire Bandit Level 1 → Level 2
- dns
- spoofing
- cryptography
- 웹해킹
- 암호학
- rao
- Today
- Total
목록shellcode (2)
암호(수학) 등.. 공부한 거 잊을거 같아서 만든 블로그

문제 문제에서는 basic_exploitation_000, basic_exploitation_000.c 파일을 제공해준다. basic_exploitation_000.c #include #include #include #include void alarm_handler() { puts("TIME OUT"); exit(-1); } void initialize() { setvbuf(stdin, NULL, _IONBF, 0); setvbuf(stdout, NULL, _IONBF, 0); signal(SIGALRM, alarm_handler); alarm(30); } int main(int argc, char *argv[]) { char buf[0x80]; initialize(); printf("buf = (%p)..

문제풀이문제에서는 shell_basic.c 와 shell_basic 파일을 제공한다. shell_basic.c// Compile: gcc -o shell_basic shell_basic.c -lseccomp// apt install seccomp libseccomp-dev#include #include #include #include #include #include #include #include #include void alarm_handler() { puts("TIME OUT"); exit(-1);}void init() { setvbuf(stdin, NULL, _IONBF, 0); setvbuf(stdout, NULL, _IONBF, 0); signal(SIGALRM, al..