├── defcon-2021 └── mooosl │ └── sln.py ├── dice-2023 └── sice │ ├── README.md │ ├── bins.png │ ├── child.c │ ├── fast_1.png │ ├── fast_2.png │ ├── flag.png │ ├── heap_1.png │ ├── heap_2.png │ ├── heap_before.png │ ├── parent.rs │ └── solve.py ├── flareon-2024 └── README.md ├── hxp-2020 ├── README.md ├── audited │ ├── README.md │ └── solution.py ├── heiko │ ├── README.md │ └── get_shell.py ├── resonator │ ├── README.md │ ├── exploit.py │ ├── fake_ftp.png │ └── fake_ftp.py └── security scanner │ ├── README.md │ ├── bad_workflow.png │ ├── exploit.py │ ├── fake_dns.py │ ├── fake_git.py │ ├── good_workflow.png │ └── tls_poison.png ├── plaid-2021 ├── plaidflix │ └── sln.py └── sos │ ├── README.md │ ├── sos.001.png │ └── sos.002.png ├── potluck-2023 └── auxv │ ├── 0001-Store-the-open-file-descriptors-of-the-process-in-it.patch │ ├── Dockerfile │ ├── Dockerfile.build_system │ ├── README.md │ ├── README_players.md │ ├── debugging-goodies.patch │ ├── docker-compose.yml │ ├── exploit │ ├── README.md │ ├── build.py │ ├── payload.asm │ └── pwn.sh │ ├── flag │ ├── init │ ├── potluck.config │ ├── prebuilt_system │ ├── bzImage │ └── initramfs.cpio.gz │ └── run.sh └── yactf-2025 └── README.md /defcon-2021/mooosl/sln.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/defcon-2021/mooosl/sln.py -------------------------------------------------------------------------------- /dice-2023/sice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/dice-2023/sice/README.md -------------------------------------------------------------------------------- /dice-2023/sice/bins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/dice-2023/sice/bins.png -------------------------------------------------------------------------------- /dice-2023/sice/child.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/dice-2023/sice/child.c -------------------------------------------------------------------------------- /dice-2023/sice/fast_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/dice-2023/sice/fast_1.png -------------------------------------------------------------------------------- /dice-2023/sice/fast_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/dice-2023/sice/fast_2.png -------------------------------------------------------------------------------- /dice-2023/sice/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/dice-2023/sice/flag.png -------------------------------------------------------------------------------- /dice-2023/sice/heap_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/dice-2023/sice/heap_1.png -------------------------------------------------------------------------------- /dice-2023/sice/heap_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/dice-2023/sice/heap_2.png -------------------------------------------------------------------------------- /dice-2023/sice/heap_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/dice-2023/sice/heap_before.png -------------------------------------------------------------------------------- /dice-2023/sice/parent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/dice-2023/sice/parent.rs -------------------------------------------------------------------------------- /dice-2023/sice/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/dice-2023/sice/solve.py -------------------------------------------------------------------------------- /flareon-2024/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/flareon-2024/README.md -------------------------------------------------------------------------------- /hxp-2020/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/hxp-2020/README.md -------------------------------------------------------------------------------- /hxp-2020/audited/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/hxp-2020/audited/README.md -------------------------------------------------------------------------------- /hxp-2020/audited/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/hxp-2020/audited/solution.py -------------------------------------------------------------------------------- /hxp-2020/heiko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/hxp-2020/heiko/README.md -------------------------------------------------------------------------------- /hxp-2020/heiko/get_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/hxp-2020/heiko/get_shell.py -------------------------------------------------------------------------------- /hxp-2020/resonator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/hxp-2020/resonator/README.md -------------------------------------------------------------------------------- /hxp-2020/resonator/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/hxp-2020/resonator/exploit.py -------------------------------------------------------------------------------- /hxp-2020/resonator/fake_ftp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/hxp-2020/resonator/fake_ftp.png -------------------------------------------------------------------------------- /hxp-2020/resonator/fake_ftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/hxp-2020/resonator/fake_ftp.py -------------------------------------------------------------------------------- /hxp-2020/security scanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/hxp-2020/security scanner/README.md -------------------------------------------------------------------------------- /hxp-2020/security scanner/bad_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/hxp-2020/security scanner/bad_workflow.png -------------------------------------------------------------------------------- /hxp-2020/security scanner/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/hxp-2020/security scanner/exploit.py -------------------------------------------------------------------------------- /hxp-2020/security scanner/fake_dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/hxp-2020/security scanner/fake_dns.py -------------------------------------------------------------------------------- /hxp-2020/security scanner/fake_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/hxp-2020/security scanner/fake_git.py -------------------------------------------------------------------------------- /hxp-2020/security scanner/good_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/hxp-2020/security scanner/good_workflow.png -------------------------------------------------------------------------------- /hxp-2020/security scanner/tls_poison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/hxp-2020/security scanner/tls_poison.png -------------------------------------------------------------------------------- /plaid-2021/plaidflix/sln.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/plaid-2021/plaidflix/sln.py -------------------------------------------------------------------------------- /plaid-2021/sos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/plaid-2021/sos/README.md -------------------------------------------------------------------------------- /plaid-2021/sos/sos.001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/plaid-2021/sos/sos.001.png -------------------------------------------------------------------------------- /plaid-2021/sos/sos.002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/plaid-2021/sos/sos.002.png -------------------------------------------------------------------------------- /potluck-2023/auxv/0001-Store-the-open-file-descriptors-of-the-process-in-it.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/potluck-2023/auxv/0001-Store-the-open-file-descriptors-of-the-process-in-it.patch -------------------------------------------------------------------------------- /potluck-2023/auxv/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/potluck-2023/auxv/Dockerfile -------------------------------------------------------------------------------- /potluck-2023/auxv/Dockerfile.build_system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/potluck-2023/auxv/Dockerfile.build_system -------------------------------------------------------------------------------- /potluck-2023/auxv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/potluck-2023/auxv/README.md -------------------------------------------------------------------------------- /potluck-2023/auxv/README_players.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/potluck-2023/auxv/README_players.md -------------------------------------------------------------------------------- /potluck-2023/auxv/debugging-goodies.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/potluck-2023/auxv/debugging-goodies.patch -------------------------------------------------------------------------------- /potluck-2023/auxv/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/potluck-2023/auxv/docker-compose.yml -------------------------------------------------------------------------------- /potluck-2023/auxv/exploit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/potluck-2023/auxv/exploit/README.md -------------------------------------------------------------------------------- /potluck-2023/auxv/exploit/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/potluck-2023/auxv/exploit/build.py -------------------------------------------------------------------------------- /potluck-2023/auxv/exploit/payload.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/potluck-2023/auxv/exploit/payload.asm -------------------------------------------------------------------------------- /potluck-2023/auxv/exploit/pwn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/potluck-2023/auxv/exploit/pwn.sh -------------------------------------------------------------------------------- /potluck-2023/auxv/flag: -------------------------------------------------------------------------------- 1 | potluck{wh0ops_I_gu3ss_n0w_L1nus_1s_g01ng_t0_y31l_4t_m3} 2 | -------------------------------------------------------------------------------- /potluck-2023/auxv/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/potluck-2023/auxv/init -------------------------------------------------------------------------------- /potluck-2023/auxv/potluck.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/potluck-2023/auxv/potluck.config -------------------------------------------------------------------------------- /potluck-2023/auxv/prebuilt_system/bzImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/potluck-2023/auxv/prebuilt_system/bzImage -------------------------------------------------------------------------------- /potluck-2023/auxv/prebuilt_system/initramfs.cpio.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/potluck-2023/auxv/prebuilt_system/initramfs.cpio.gz -------------------------------------------------------------------------------- /potluck-2023/auxv/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/potluck-2023/auxv/run.sh -------------------------------------------------------------------------------- /yactf-2025/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfyz/ctf-writeups/HEAD/yactf-2025/README.md --------------------------------------------------------------------------------