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