일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- TeamH4C
- crypto
- KAIST
- Gon
- 워게임
- System Hacking
- writeup
- dreamhack
- Wargame
- Wreckctf
- got overwrite
- deayzl
- CTF
- ctf player
- 2022 Fall GoN Open Qual CTF
- 해킹
- cryptography
- WEB
- webhacking
- christmas ctf
- hack
- h4cking game
- reversing
- hacking game
- hacking
- Buffer Overflow
- pwnable
- 웹해킹
- webhacking.kr
- python
- Today
- Total
목록CTF (20)
deayzl's blog
This challenge is easy but there were some mistakes so I couldn't solve it quickly.I think I need to practice taking care of details of my solve script fast.Recently, I'm even thinking of solving leetcode thanks to my poor script writing skills :( This challenge is in c++ and uses std::variant, std::_Function_base::_Base_manager, blahblahblah.The tricky point of this challenge is that it impleme..
It was a simple challenge using clamav which parses a binary in a specific rule. https://github.com/Cisco-Talos/clamav GitHub - Cisco-Talos/clamav: ClamAV - Documentation is here: https://docs.clamav.netClamAV - Documentation is here: https://docs.clamav.net - Cisco-Talos/clamavgithub.com run.sh:#!/bin/shdocker run -v /home/ctf/clamav/:/test/ --rm -it clamav/clamav clamscan --bytecode-unsigned -..
https://velog.io/@0range1337/CTF-DEF-CON-CTF-Qualifier-2024-pass-it-on-analysis-deep-dive-into-swift-virtual-machine [CTF] DEF CON CTF Qualifier 2024 - pass-it-on analysis : deep dive into swift virtual machineThis challenge is from DEFCON CTF 32 Qualifier (reversing).This post contains my approach of how I tried to solve it and failed before seeing writeup,velog.io
The binary consists of two functions; main and main[cold]. main: int __cdecl main(int argc, const char **argv, const char **envp) { __int64 v3; // rax char *v4; // rdi char *v5; // rdx char *v6; // rax __int64 v7; // rsi __int64 v8; // rcx signed __int64 v9; // rbx signed __int64 v10; // rax size_t v11; // rdx char *v12; // rsi __int64 v13; // rbx int v14; // ebp char v15; // cl int *v16; // rdi..
I did play this ctf as team 프로그램털모찌.It was about 7 am for me in korea when I solved this.I spent the night with no sleep. Then I fell asleep right after I solved this.I realized that.. guys, try to sleep at the appropriate time, or you gon miss upcoming challenges.When I opened my eyes, there was already "subformore" released long time ago :((this is why I could only give an aaw primitive functi..
box.c : // gcc box.c -o box -no-pie #include #include #include #include #include #include #include #include #define FLAG_PATH "/flag" int install_seccomp(uint8_t *filt, unsigned short len); void vuln(); void read_flag(); uint32_t target = 0xdead; int main(int argc, char **argv) { uint32_t filt_len; setvbuf(stdin, NULL, _IONBF, 0); setvbuf(stdout, NULL, _IONBF, 0); setvbuf(stderr, NULL, _IONBF, 0..