├── ALLES └── 2021 │ └── pwn │ └── Ccanary │ ├── README.md │ ├── conf.toml │ └── img │ ├── checksec.png │ ├── feature.png │ ├── flag.png │ ├── initial.png │ ├── mappings.png │ └── struct.png ├── DAM └── 2021 │ └── reverse │ └── danceparty │ ├── README.md │ ├── conf.toml │ └── img │ ├── crypt_function.png │ ├── decoding_function.png │ ├── feature.jpg │ ├── python_solve.png │ ├── solution.png │ ├── string_b64_decode.png │ ├── string_xref_init.png │ ├── string_xref_table.png │ ├── strings.png │ └── xor_function.png ├── TSJ └── 2022 │ └── reverse │ └── javascript-vm │ ├── README.md │ ├── chall.decompiled.cpp │ ├── chall.disassembled │ ├── conf.toml │ ├── disassemble.py │ ├── img │ ├── feature.jpg │ ├── flag.png │ ├── init_end.png │ ├── init_start.png │ └── output_modes.png │ └── solve.py ├── UMD └── 2022 │ └── reverse │ └── bmpv-love-letter │ ├── README.md │ ├── chall.bmpx │ ├── conf.toml │ ├── img │ └── feature.png │ ├── sol.py │ └── solve.bmpx ├── hack-the-box-uni-ctf ├── 2021 │ ├── crypto │ │ └── space-pirates │ │ │ ├── README.md │ │ │ ├── conf.toml │ │ │ ├── img │ │ │ ├── enc.png │ │ │ ├── feature.jpg │ │ │ ├── first_coeff.png │ │ │ ├── flag.png │ │ │ └── next_coeff.png │ │ │ └── solve.py │ ├── forensics │ │ └── peel-back-the-layers │ │ │ ├── README.md │ │ │ ├── conf.toml │ │ │ └── img │ │ │ ├── feature.jpg │ │ │ ├── flag.png │ │ │ ├── history.png │ │ │ └── save.png │ ├── hardware │ │ └── mechanical-madness │ │ │ ├── README.md │ │ │ ├── assembler.py │ │ │ ├── conf.toml │ │ │ └── img │ │ │ ├── call_full.png │ │ │ ├── call_ir.png │ │ │ ├── cjmp.png │ │ │ ├── cpu_instructions.png │ │ │ ├── example.png │ │ │ ├── feature.jpg │ │ │ ├── flag.png │ │ │ ├── frequency.png │ │ │ ├── logi_init.png │ │ │ ├── opcodes.png │ │ │ ├── parse_labels.png │ │ │ ├── ram_loaded.png │ │ │ ├── registers.png │ │ │ └── wr.png │ ├── misc │ │ └── insane-bolt │ │ │ ├── README.md │ │ │ ├── conf.toml │ │ │ ├── img │ │ │ ├── feature.jpg │ │ │ ├── first.png │ │ │ ├── flag.png │ │ │ ├── instructions.png │ │ │ └── second.png │ │ │ └── solve.py │ ├── pwn │ │ └── arachnoid-heaven │ │ │ ├── README.md │ │ │ ├── conf.toml │ │ │ ├── img │ │ │ ├── craft.png │ │ │ ├── craft_live.png │ │ │ ├── dangling.png │ │ │ ├── delete.png │ │ │ ├── feature.jpg │ │ │ ├── flag.png │ │ │ ├── free_exploit.png │ │ │ ├── free_list_1.png │ │ │ ├── free_list_2.png │ │ │ ├── malloc_exploit.png │ │ │ └── obtain.png │ │ │ └── solve.py │ └── reverse │ │ ├── the-vault │ │ ├── README.md │ │ ├── conf.toml │ │ └── img │ │ │ ├── asm.png │ │ │ ├── compare.png │ │ │ ├── feature.jpg │ │ │ ├── flag1.png │ │ │ ├── flag2.png │ │ │ ├── idc.png │ │ │ └── run.png │ │ └── upgrades │ │ ├── README.md │ │ ├── conf.toml │ │ ├── img │ │ ├── decrypt_func.png │ │ ├── enc_strings.png │ │ ├── feature.jpg │ │ ├── flag.png │ │ └── olevba.png │ │ └── solve.py └── 2022 │ └── pwn │ └── spellbook │ ├── README.md │ ├── conf.toml │ ├── exploit.py │ ├── flag.txt │ ├── glibc │ ├── ld-linux-x86-64.so.2 │ └── libc.so.6 │ ├── img │ ├── alloc_1.png │ ├── almost.png │ ├── close.png │ ├── feature.jpg │ ├── flag.png │ ├── fmt.png │ ├── free_1_2.png │ ├── free_1_2_1.png │ ├── ida_delete.png │ ├── ida_edit.png │ ├── ida_show.png │ ├── libc.png │ └── prompt.png │ └── spellbook ├── naham └── 2022 │ └── reverse │ └── babyrev │ ├── README.md │ ├── conf.toml │ ├── img │ ├── feature.png │ ├── global.png │ ├── ida_main.png │ ├── ida_new_type.png │ ├── ida_secret.png │ ├── ida_type_change.png │ ├── initial.png │ ├── solve.png │ ├── sub.png │ └── sub_reconstruct.png │ └── solve.py ├── real-world └── 2023 │ └── clone-and-pwn │ └── non-heavy-ftp │ ├── README.md │ ├── conf.toml │ └── img │ └── feature.png └── sekai └── 2025 └── rev └── sekai-bank ├── README.md ├── conf.toml └── img ├── dashboard.png ├── flag.png ├── login.png ├── pin.png └── sendto.png /ALLES/2021/pwn/Ccanary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/ALLES/2021/pwn/Ccanary/README.md -------------------------------------------------------------------------------- /ALLES/2021/pwn/Ccanary/conf.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/ALLES/2021/pwn/Ccanary/conf.toml -------------------------------------------------------------------------------- /ALLES/2021/pwn/Ccanary/img/checksec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/ALLES/2021/pwn/Ccanary/img/checksec.png -------------------------------------------------------------------------------- /ALLES/2021/pwn/Ccanary/img/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/ALLES/2021/pwn/Ccanary/img/feature.png -------------------------------------------------------------------------------- /ALLES/2021/pwn/Ccanary/img/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/ALLES/2021/pwn/Ccanary/img/flag.png -------------------------------------------------------------------------------- /ALLES/2021/pwn/Ccanary/img/initial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/ALLES/2021/pwn/Ccanary/img/initial.png -------------------------------------------------------------------------------- /ALLES/2021/pwn/Ccanary/img/mappings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/ALLES/2021/pwn/Ccanary/img/mappings.png -------------------------------------------------------------------------------- /ALLES/2021/pwn/Ccanary/img/struct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/ALLES/2021/pwn/Ccanary/img/struct.png -------------------------------------------------------------------------------- /DAM/2021/reverse/danceparty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/DAM/2021/reverse/danceparty/README.md -------------------------------------------------------------------------------- /DAM/2021/reverse/danceparty/conf.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/DAM/2021/reverse/danceparty/conf.toml -------------------------------------------------------------------------------- /DAM/2021/reverse/danceparty/img/crypt_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/DAM/2021/reverse/danceparty/img/crypt_function.png -------------------------------------------------------------------------------- /DAM/2021/reverse/danceparty/img/decoding_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/DAM/2021/reverse/danceparty/img/decoding_function.png -------------------------------------------------------------------------------- /DAM/2021/reverse/danceparty/img/feature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/DAM/2021/reverse/danceparty/img/feature.jpg -------------------------------------------------------------------------------- /DAM/2021/reverse/danceparty/img/python_solve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/DAM/2021/reverse/danceparty/img/python_solve.png -------------------------------------------------------------------------------- /DAM/2021/reverse/danceparty/img/solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/DAM/2021/reverse/danceparty/img/solution.png -------------------------------------------------------------------------------- /DAM/2021/reverse/danceparty/img/string_b64_decode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/DAM/2021/reverse/danceparty/img/string_b64_decode.png -------------------------------------------------------------------------------- /DAM/2021/reverse/danceparty/img/string_xref_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/DAM/2021/reverse/danceparty/img/string_xref_init.png -------------------------------------------------------------------------------- /DAM/2021/reverse/danceparty/img/string_xref_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/DAM/2021/reverse/danceparty/img/string_xref_table.png -------------------------------------------------------------------------------- /DAM/2021/reverse/danceparty/img/strings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/DAM/2021/reverse/danceparty/img/strings.png -------------------------------------------------------------------------------- /DAM/2021/reverse/danceparty/img/xor_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/DAM/2021/reverse/danceparty/img/xor_function.png -------------------------------------------------------------------------------- /TSJ/2022/reverse/javascript-vm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/TSJ/2022/reverse/javascript-vm/README.md -------------------------------------------------------------------------------- /TSJ/2022/reverse/javascript-vm/chall.decompiled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/TSJ/2022/reverse/javascript-vm/chall.decompiled.cpp -------------------------------------------------------------------------------- /TSJ/2022/reverse/javascript-vm/chall.disassembled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/TSJ/2022/reverse/javascript-vm/chall.disassembled -------------------------------------------------------------------------------- /TSJ/2022/reverse/javascript-vm/conf.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/TSJ/2022/reverse/javascript-vm/conf.toml -------------------------------------------------------------------------------- /TSJ/2022/reverse/javascript-vm/disassemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/TSJ/2022/reverse/javascript-vm/disassemble.py -------------------------------------------------------------------------------- /TSJ/2022/reverse/javascript-vm/img/feature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/TSJ/2022/reverse/javascript-vm/img/feature.jpg -------------------------------------------------------------------------------- /TSJ/2022/reverse/javascript-vm/img/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/TSJ/2022/reverse/javascript-vm/img/flag.png -------------------------------------------------------------------------------- /TSJ/2022/reverse/javascript-vm/img/init_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/TSJ/2022/reverse/javascript-vm/img/init_end.png -------------------------------------------------------------------------------- /TSJ/2022/reverse/javascript-vm/img/init_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/TSJ/2022/reverse/javascript-vm/img/init_start.png -------------------------------------------------------------------------------- /TSJ/2022/reverse/javascript-vm/img/output_modes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/TSJ/2022/reverse/javascript-vm/img/output_modes.png -------------------------------------------------------------------------------- /TSJ/2022/reverse/javascript-vm/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/TSJ/2022/reverse/javascript-vm/solve.py -------------------------------------------------------------------------------- /UMD/2022/reverse/bmpv-love-letter/README.md: -------------------------------------------------------------------------------- 1 | # BMPX Love Letter 2 | 3 | A normal .bmp bitmap file. Or is it? 4 | 5 | ## Initial Thoughts -------------------------------------------------------------------------------- /UMD/2022/reverse/bmpv-love-letter/chall.bmpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/UMD/2022/reverse/bmpv-love-letter/chall.bmpx -------------------------------------------------------------------------------- /UMD/2022/reverse/bmpv-love-letter/conf.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/UMD/2022/reverse/bmpv-love-letter/conf.toml -------------------------------------------------------------------------------- /UMD/2022/reverse/bmpv-love-letter/img/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/UMD/2022/reverse/bmpv-love-letter/img/feature.png -------------------------------------------------------------------------------- /UMD/2022/reverse/bmpv-love-letter/sol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/UMD/2022/reverse/bmpv-love-letter/sol.py -------------------------------------------------------------------------------- /UMD/2022/reverse/bmpv-love-letter/solve.bmpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/UMD/2022/reverse/bmpv-love-letter/solve.bmpx -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/crypto/space-pirates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/crypto/space-pirates/README.md -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/crypto/space-pirates/conf.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/crypto/space-pirates/conf.toml -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/crypto/space-pirates/img/enc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/crypto/space-pirates/img/enc.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/crypto/space-pirates/img/feature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/crypto/space-pirates/img/feature.jpg -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/crypto/space-pirates/img/first_coeff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/crypto/space-pirates/img/first_coeff.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/crypto/space-pirates/img/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/crypto/space-pirates/img/flag.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/crypto/space-pirates/img/next_coeff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/crypto/space-pirates/img/next_coeff.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/crypto/space-pirates/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/crypto/space-pirates/solve.py -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/forensics/peel-back-the-layers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/forensics/peel-back-the-layers/README.md -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/forensics/peel-back-the-layers/conf.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/forensics/peel-back-the-layers/conf.toml -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/forensics/peel-back-the-layers/img/feature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/forensics/peel-back-the-layers/img/feature.jpg -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/forensics/peel-back-the-layers/img/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/forensics/peel-back-the-layers/img/flag.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/forensics/peel-back-the-layers/img/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/forensics/peel-back-the-layers/img/history.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/forensics/peel-back-the-layers/img/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/forensics/peel-back-the-layers/img/save.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/hardware/mechanical-madness/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/hardware/mechanical-madness/README.md -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/hardware/mechanical-madness/assembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/hardware/mechanical-madness/assembler.py -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/hardware/mechanical-madness/conf.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/hardware/mechanical-madness/conf.toml -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/call_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/call_full.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/call_ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/call_ir.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/cjmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/cjmp.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/cpu_instructions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/cpu_instructions.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/example.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/feature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/feature.jpg -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/flag.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/frequency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/frequency.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/logi_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/logi_init.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/opcodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/opcodes.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/parse_labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/parse_labels.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/ram_loaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/ram_loaded.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/registers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/registers.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/wr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/hardware/mechanical-madness/img/wr.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/misc/insane-bolt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/misc/insane-bolt/README.md -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/misc/insane-bolt/conf.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/misc/insane-bolt/conf.toml -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/misc/insane-bolt/img/feature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/misc/insane-bolt/img/feature.jpg -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/misc/insane-bolt/img/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/misc/insane-bolt/img/first.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/misc/insane-bolt/img/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/misc/insane-bolt/img/flag.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/misc/insane-bolt/img/instructions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/misc/insane-bolt/img/instructions.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/misc/insane-bolt/img/second.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/misc/insane-bolt/img/second.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/misc/insane-bolt/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/misc/insane-bolt/solve.py -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/README.md -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/conf.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/conf.toml -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/img/craft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/img/craft.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/img/craft_live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/img/craft_live.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/img/dangling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/img/dangling.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/img/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/img/delete.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/img/feature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/img/feature.jpg -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/img/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/img/flag.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/img/free_exploit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/img/free_exploit.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/img/free_list_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/img/free_list_1.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/img/free_list_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/img/free_list_2.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/img/malloc_exploit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/img/malloc_exploit.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/img/obtain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/img/obtain.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/pwn/arachnoid-heaven/solve.py -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/reverse/the-vault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/reverse/the-vault/README.md -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/reverse/the-vault/conf.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/reverse/the-vault/conf.toml -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/reverse/the-vault/img/asm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/reverse/the-vault/img/asm.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/reverse/the-vault/img/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/reverse/the-vault/img/compare.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/reverse/the-vault/img/feature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/reverse/the-vault/img/feature.jpg -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/reverse/the-vault/img/flag1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/reverse/the-vault/img/flag1.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/reverse/the-vault/img/flag2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/reverse/the-vault/img/flag2.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/reverse/the-vault/img/idc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/reverse/the-vault/img/idc.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/reverse/the-vault/img/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/reverse/the-vault/img/run.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/reverse/upgrades/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/reverse/upgrades/README.md -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/reverse/upgrades/conf.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/reverse/upgrades/conf.toml -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/reverse/upgrades/img/decrypt_func.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/reverse/upgrades/img/decrypt_func.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/reverse/upgrades/img/enc_strings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/reverse/upgrades/img/enc_strings.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/reverse/upgrades/img/feature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/reverse/upgrades/img/feature.jpg -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/reverse/upgrades/img/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/reverse/upgrades/img/flag.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/reverse/upgrades/img/olevba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/reverse/upgrades/img/olevba.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2021/reverse/upgrades/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2021/reverse/upgrades/solve.py -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2022/pwn/spellbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2022/pwn/spellbook/README.md -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2022/pwn/spellbook/conf.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2022/pwn/spellbook/conf.toml -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2022/pwn/spellbook/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2022/pwn/spellbook/exploit.py -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2022/pwn/spellbook/flag.txt: -------------------------------------------------------------------------------- 1 | HTB{f45tb1n_c0rrupt10n_0n_p4g3_gl1bc_2.23} 2 | -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2022/pwn/spellbook/glibc/ld-linux-x86-64.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2022/pwn/spellbook/glibc/ld-linux-x86-64.so.2 -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2022/pwn/spellbook/glibc/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2022/pwn/spellbook/glibc/libc.so.6 -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2022/pwn/spellbook/img/alloc_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2022/pwn/spellbook/img/alloc_1.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2022/pwn/spellbook/img/almost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2022/pwn/spellbook/img/almost.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2022/pwn/spellbook/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2022/pwn/spellbook/img/close.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2022/pwn/spellbook/img/feature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2022/pwn/spellbook/img/feature.jpg -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2022/pwn/spellbook/img/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2022/pwn/spellbook/img/flag.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2022/pwn/spellbook/img/fmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2022/pwn/spellbook/img/fmt.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2022/pwn/spellbook/img/free_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2022/pwn/spellbook/img/free_1_2.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2022/pwn/spellbook/img/free_1_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2022/pwn/spellbook/img/free_1_2_1.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2022/pwn/spellbook/img/ida_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2022/pwn/spellbook/img/ida_delete.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2022/pwn/spellbook/img/ida_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2022/pwn/spellbook/img/ida_edit.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2022/pwn/spellbook/img/ida_show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2022/pwn/spellbook/img/ida_show.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2022/pwn/spellbook/img/libc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2022/pwn/spellbook/img/libc.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2022/pwn/spellbook/img/prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2022/pwn/spellbook/img/prompt.png -------------------------------------------------------------------------------- /hack-the-box-uni-ctf/2022/pwn/spellbook/spellbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/hack-the-box-uni-ctf/2022/pwn/spellbook/spellbook -------------------------------------------------------------------------------- /naham/2022/reverse/babyrev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/naham/2022/reverse/babyrev/README.md -------------------------------------------------------------------------------- /naham/2022/reverse/babyrev/conf.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/naham/2022/reverse/babyrev/conf.toml -------------------------------------------------------------------------------- /naham/2022/reverse/babyrev/img/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/naham/2022/reverse/babyrev/img/feature.png -------------------------------------------------------------------------------- /naham/2022/reverse/babyrev/img/global.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/naham/2022/reverse/babyrev/img/global.png -------------------------------------------------------------------------------- /naham/2022/reverse/babyrev/img/ida_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/naham/2022/reverse/babyrev/img/ida_main.png -------------------------------------------------------------------------------- /naham/2022/reverse/babyrev/img/ida_new_type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/naham/2022/reverse/babyrev/img/ida_new_type.png -------------------------------------------------------------------------------- /naham/2022/reverse/babyrev/img/ida_secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/naham/2022/reverse/babyrev/img/ida_secret.png -------------------------------------------------------------------------------- /naham/2022/reverse/babyrev/img/ida_type_change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/naham/2022/reverse/babyrev/img/ida_type_change.png -------------------------------------------------------------------------------- /naham/2022/reverse/babyrev/img/initial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/naham/2022/reverse/babyrev/img/initial.png -------------------------------------------------------------------------------- /naham/2022/reverse/babyrev/img/solve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/naham/2022/reverse/babyrev/img/solve.png -------------------------------------------------------------------------------- /naham/2022/reverse/babyrev/img/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/naham/2022/reverse/babyrev/img/sub.png -------------------------------------------------------------------------------- /naham/2022/reverse/babyrev/img/sub_reconstruct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/naham/2022/reverse/babyrev/img/sub_reconstruct.png -------------------------------------------------------------------------------- /naham/2022/reverse/babyrev/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/naham/2022/reverse/babyrev/solve.py -------------------------------------------------------------------------------- /real-world/2023/clone-and-pwn/non-heavy-ftp/README.md: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /real-world/2023/clone-and-pwn/non-heavy-ftp/conf.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/real-world/2023/clone-and-pwn/non-heavy-ftp/conf.toml -------------------------------------------------------------------------------- /real-world/2023/clone-and-pwn/non-heavy-ftp/img/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/real-world/2023/clone-and-pwn/non-heavy-ftp/img/feature.png -------------------------------------------------------------------------------- /sekai/2025/rev/sekai-bank/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/sekai/2025/rev/sekai-bank/README.md -------------------------------------------------------------------------------- /sekai/2025/rev/sekai-bank/conf.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/sekai/2025/rev/sekai-bank/conf.toml -------------------------------------------------------------------------------- /sekai/2025/rev/sekai-bank/img/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/sekai/2025/rev/sekai-bank/img/dashboard.png -------------------------------------------------------------------------------- /sekai/2025/rev/sekai-bank/img/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/sekai/2025/rev/sekai-bank/img/flag.png -------------------------------------------------------------------------------- /sekai/2025/rev/sekai-bank/img/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/sekai/2025/rev/sekai-bank/img/login.png -------------------------------------------------------------------------------- /sekai/2025/rev/sekai-bank/img/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/sekai/2025/rev/sekai-bank/img/pin.png -------------------------------------------------------------------------------- /sekai/2025/rev/sekai-bank/img/sendto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verd1c/ctf-writeups/HEAD/sekai/2025/rev/sekai-bank/img/sendto.png --------------------------------------------------------------------------------