일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
31 |
- picoCTF
- 시스템해킹
- 암호학
- Bandit Level 1 → Level 2
- rao
- pycrpytodome
- 드림핵
- Crypto
- spoofing
- CSRF
- arp
- 웹해킹
- XSS
- overthewire
- cryptography
- dns
- return address overflow
- bandit
- Montgomery Reduction
- Hastad
- AES
- weak key
- Cube Root Attack
- redirect
- Franklin-Reiter Related Message Attack
- RSA Common Modulas Attack
- RSA
- OverTheWire Bandit Level 1 → Level 2
- dreamhack
- shellcode
- 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..