├── LICENSE ├── README.md ├── Solved ├── A_Simple_Question │ ├── README.md │ └── solve.py ├── Aca_Shell_A │ ├── README.md │ └── payload.txt ├── Artisinal_Handcrafted_HTTP_3 │ ├── README.md │ └── log.txt ├── Crypto_Warmup_1 │ ├── README.md │ ├── solve.py │ └── table.txt ├── Desrouleaux │ ├── README.md │ ├── incidents.json │ └── solve.py ├── Flaskcards │ └── README.md ├── Flaskcards_Skeleton_Key │ ├── README.md │ └── cookie_decode.py ├── Flaskcards_and_Freedom │ ├── README.md │ └── cookie_decode.py ├── HEEEEEEERE_S_Johnny │ ├── README.md │ ├── passwd │ ├── result.db │ └── shadow ├── LoadSomeBits │ ├── README.md │ ├── pico2018-special-logo.bmp │ └── search.py ├── Magic_Padding_Oracle │ ├── README.md │ ├── pkcs7.py │ ├── solve_bitflip.py │ └── solve_extract.py ├── Malware_Shops │ ├── README.md │ ├── info.txt │ └── plot.png ├── No_Login │ └── README.md ├── Radix_s_Terminal │ ├── README.md │ └── radix ├── Reading_Between_the_Eyes │ ├── README.md │ ├── husky.png │ └── solve.py ├── Recovering_From_the_Snap │ ├── 00005861.jpg │ ├── README.md │ └── animals.dd ├── Safe_RSA │ ├── README.md │ ├── ciphertext │ └── solve.py ├── Secure_Logon │ ├── README.md │ ├── server_noflag.py │ └── solve.py ├── SpyFi │ ├── README.md │ ├── aes-bruteforce.py │ └── spy_terminal_no_flag.py ├── Super_Safe_RSA │ ├── README.md │ ├── collect-test-failed │ │ ├── collect.py │ │ └── collect_slow.sh │ └── solve.py ├── Super_Safe_RSA_2 │ └── README.md ├── Super_Safe_RSA_3 │ ├── README.md │ └── solve.py ├── The_Vault │ ├── README.md │ └── login.txt ├── are_you_root │ ├── README.md │ ├── auth │ └── auth.c ├── assembly_0 │ ├── README.md │ └── intro_asm_rev.S ├── assembly_1 │ ├── README.md │ └── eq_asm_rev.S ├── assembly_2 │ ├── README.md │ └── loop_asm_rev.S ├── assembly_3 │ ├── README.md │ └── end_asm_rev.S ├── assembly_4 │ ├── README.md │ ├── comp │ └── solve │ │ ├── comp-decompiled.c │ │ ├── comp.nasm │ │ └── comp.o ├── authenticate │ ├── README.md │ ├── auth │ └── auth.c ├── be_quick_or_be_dead_1 │ ├── README.md │ └── be-quick-or-be-dead-1 ├── be_quick_or_be_dead_2 │ ├── README.md │ ├── be-quick-or-be-dead-2 │ └── fib.py ├── be_quick_or_be_dead_3 │ ├── README.md │ ├── be-quick-or-be-dead-3 │ └── memoize.py ├── buffer_overflow_0 │ ├── README.md │ ├── vuln │ └── vuln.c ├── buffer_overflow_1 │ ├── README.md │ ├── vuln │ └── vuln.c ├── buffer_overflow_2 │ ├── README.md │ ├── vuln │ └── vuln.c ├── buffer_overflow_3 │ ├── README.md │ ├── solve.py │ ├── vuln │ └── vuln.c ├── caesar_cipher_2 │ ├── README.md │ └── ciphertext ├── circuit123 │ ├── README.md │ ├── decrypt-debug.py │ ├── decrypt.py │ ├── map1.txt │ ├── map2.txt │ └── solve.py ├── core │ ├── README.md │ ├── core │ ├── print_flag │ └── print_flag-decompiled.c ├── echooo │ ├── README.md │ ├── echo │ ├── echo.c │ └── solve.py ├── eleCTRic │ ├── README.md │ ├── aes-ctr.png │ ├── eleCTRic.py │ └── solve.py ├── environ │ └── README.md ├── fancy_alive_monitoring │ ├── README.md │ └── index.txt ├── got_2_learn_libc │ ├── README.md │ ├── solve.py │ ├── vuln │ └── vuln.c ├── got_shell │ ├── README.md │ ├── auth │ └── auth.c ├── in_out_error │ ├── README.md │ └── in-out-error ├── keygen_me_1 │ ├── README.md │ ├── activate │ ├── activate-decompiled.c │ └── debug.c ├── keygen_me_2 │ ├── README.md │ ├── activate │ ├── activate-decompiled.c │ ├── test1.c │ ├── test2.c │ └── z3-solve.py ├── learn_gdb │ ├── README.md │ └── run ├── quackme │ ├── README.md │ ├── main │ ├── main-decompiled.c │ └── payload.c ├── quackme_up │ ├── README.md │ ├── main │ └── solve.py ├── rop_chain │ ├── README.md │ ├── rop │ └── rop.c ├── roulette │ ├── README.md │ ├── roulette │ ├── roulette.c │ ├── solve-get_spin_value.c │ └── try.py ├── rsa_madlibs │ ├── 6-cuberoot.py │ ├── 7-modinv.py │ ├── 8-getflag.py │ ├── README.md │ └── log.txt ├── script_me │ ├── README.md │ ├── output.txt │ └── solve.py ├── shellcode │ ├── README.md │ ├── vuln │ └── vuln.c ├── store │ ├── README.md │ ├── source.c │ └── store ├── what_base_is_this │ ├── README.md │ └── solve.py └── you_can_t_see_me │ └── README.md ├── TEMPLATE.md ├── new └── server.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/README.md -------------------------------------------------------------------------------- /Solved/A_Simple_Question/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/A_Simple_Question/README.md -------------------------------------------------------------------------------- /Solved/A_Simple_Question/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/A_Simple_Question/solve.py -------------------------------------------------------------------------------- /Solved/Aca_Shell_A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Aca_Shell_A/README.md -------------------------------------------------------------------------------- /Solved/Aca_Shell_A/payload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Aca_Shell_A/payload.txt -------------------------------------------------------------------------------- /Solved/Artisinal_Handcrafted_HTTP_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Artisinal_Handcrafted_HTTP_3/README.md -------------------------------------------------------------------------------- /Solved/Artisinal_Handcrafted_HTTP_3/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Artisinal_Handcrafted_HTTP_3/log.txt -------------------------------------------------------------------------------- /Solved/Crypto_Warmup_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Crypto_Warmup_1/README.md -------------------------------------------------------------------------------- /Solved/Crypto_Warmup_1/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Crypto_Warmup_1/solve.py -------------------------------------------------------------------------------- /Solved/Crypto_Warmup_1/table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Crypto_Warmup_1/table.txt -------------------------------------------------------------------------------- /Solved/Desrouleaux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Desrouleaux/README.md -------------------------------------------------------------------------------- /Solved/Desrouleaux/incidents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Desrouleaux/incidents.json -------------------------------------------------------------------------------- /Solved/Desrouleaux/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Desrouleaux/solve.py -------------------------------------------------------------------------------- /Solved/Flaskcards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Flaskcards/README.md -------------------------------------------------------------------------------- /Solved/Flaskcards_Skeleton_Key/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Flaskcards_Skeleton_Key/README.md -------------------------------------------------------------------------------- /Solved/Flaskcards_Skeleton_Key/cookie_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Flaskcards_Skeleton_Key/cookie_decode.py -------------------------------------------------------------------------------- /Solved/Flaskcards_and_Freedom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Flaskcards_and_Freedom/README.md -------------------------------------------------------------------------------- /Solved/Flaskcards_and_Freedom/cookie_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Flaskcards_and_Freedom/cookie_decode.py -------------------------------------------------------------------------------- /Solved/HEEEEEEERE_S_Johnny/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/HEEEEEEERE_S_Johnny/README.md -------------------------------------------------------------------------------- /Solved/HEEEEEEERE_S_Johnny/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/HEEEEEEERE_S_Johnny/passwd -------------------------------------------------------------------------------- /Solved/HEEEEEEERE_S_Johnny/result.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/HEEEEEEERE_S_Johnny/result.db -------------------------------------------------------------------------------- /Solved/HEEEEEEERE_S_Johnny/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/HEEEEEEERE_S_Johnny/shadow -------------------------------------------------------------------------------- /Solved/LoadSomeBits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/LoadSomeBits/README.md -------------------------------------------------------------------------------- /Solved/LoadSomeBits/pico2018-special-logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/LoadSomeBits/pico2018-special-logo.bmp -------------------------------------------------------------------------------- /Solved/LoadSomeBits/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/LoadSomeBits/search.py -------------------------------------------------------------------------------- /Solved/Magic_Padding_Oracle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Magic_Padding_Oracle/README.md -------------------------------------------------------------------------------- /Solved/Magic_Padding_Oracle/pkcs7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Magic_Padding_Oracle/pkcs7.py -------------------------------------------------------------------------------- /Solved/Magic_Padding_Oracle/solve_bitflip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Magic_Padding_Oracle/solve_bitflip.py -------------------------------------------------------------------------------- /Solved/Magic_Padding_Oracle/solve_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Magic_Padding_Oracle/solve_extract.py -------------------------------------------------------------------------------- /Solved/Malware_Shops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Malware_Shops/README.md -------------------------------------------------------------------------------- /Solved/Malware_Shops/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Malware_Shops/info.txt -------------------------------------------------------------------------------- /Solved/Malware_Shops/plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Malware_Shops/plot.png -------------------------------------------------------------------------------- /Solved/No_Login/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/No_Login/README.md -------------------------------------------------------------------------------- /Solved/Radix_s_Terminal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Radix_s_Terminal/README.md -------------------------------------------------------------------------------- /Solved/Radix_s_Terminal/radix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Radix_s_Terminal/radix -------------------------------------------------------------------------------- /Solved/Reading_Between_the_Eyes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Reading_Between_the_Eyes/README.md -------------------------------------------------------------------------------- /Solved/Reading_Between_the_Eyes/husky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Reading_Between_the_Eyes/husky.png -------------------------------------------------------------------------------- /Solved/Reading_Between_the_Eyes/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Reading_Between_the_Eyes/solve.py -------------------------------------------------------------------------------- /Solved/Recovering_From_the_Snap/00005861.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Recovering_From_the_Snap/00005861.jpg -------------------------------------------------------------------------------- /Solved/Recovering_From_the_Snap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Recovering_From_the_Snap/README.md -------------------------------------------------------------------------------- /Solved/Recovering_From_the_Snap/animals.dd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Recovering_From_the_Snap/animals.dd -------------------------------------------------------------------------------- /Solved/Safe_RSA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Safe_RSA/README.md -------------------------------------------------------------------------------- /Solved/Safe_RSA/ciphertext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Safe_RSA/ciphertext -------------------------------------------------------------------------------- /Solved/Safe_RSA/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Safe_RSA/solve.py -------------------------------------------------------------------------------- /Solved/Secure_Logon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Secure_Logon/README.md -------------------------------------------------------------------------------- /Solved/Secure_Logon/server_noflag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Secure_Logon/server_noflag.py -------------------------------------------------------------------------------- /Solved/Secure_Logon/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Secure_Logon/solve.py -------------------------------------------------------------------------------- /Solved/SpyFi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/SpyFi/README.md -------------------------------------------------------------------------------- /Solved/SpyFi/aes-bruteforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/SpyFi/aes-bruteforce.py -------------------------------------------------------------------------------- /Solved/SpyFi/spy_terminal_no_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/SpyFi/spy_terminal_no_flag.py -------------------------------------------------------------------------------- /Solved/Super_Safe_RSA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Super_Safe_RSA/README.md -------------------------------------------------------------------------------- /Solved/Super_Safe_RSA/collect-test-failed/collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Super_Safe_RSA/collect-test-failed/collect.py -------------------------------------------------------------------------------- /Solved/Super_Safe_RSA/collect-test-failed/collect_slow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Super_Safe_RSA/collect-test-failed/collect_slow.sh -------------------------------------------------------------------------------- /Solved/Super_Safe_RSA/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Super_Safe_RSA/solve.py -------------------------------------------------------------------------------- /Solved/Super_Safe_RSA_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Super_Safe_RSA_2/README.md -------------------------------------------------------------------------------- /Solved/Super_Safe_RSA_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Super_Safe_RSA_3/README.md -------------------------------------------------------------------------------- /Solved/Super_Safe_RSA_3/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/Super_Safe_RSA_3/solve.py -------------------------------------------------------------------------------- /Solved/The_Vault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/The_Vault/README.md -------------------------------------------------------------------------------- /Solved/The_Vault/login.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/The_Vault/login.txt -------------------------------------------------------------------------------- /Solved/are_you_root/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/are_you_root/README.md -------------------------------------------------------------------------------- /Solved/are_you_root/auth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/are_you_root/auth -------------------------------------------------------------------------------- /Solved/are_you_root/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/are_you_root/auth.c -------------------------------------------------------------------------------- /Solved/assembly_0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/assembly_0/README.md -------------------------------------------------------------------------------- /Solved/assembly_0/intro_asm_rev.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/assembly_0/intro_asm_rev.S -------------------------------------------------------------------------------- /Solved/assembly_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/assembly_1/README.md -------------------------------------------------------------------------------- /Solved/assembly_1/eq_asm_rev.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/assembly_1/eq_asm_rev.S -------------------------------------------------------------------------------- /Solved/assembly_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/assembly_2/README.md -------------------------------------------------------------------------------- /Solved/assembly_2/loop_asm_rev.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/assembly_2/loop_asm_rev.S -------------------------------------------------------------------------------- /Solved/assembly_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/assembly_3/README.md -------------------------------------------------------------------------------- /Solved/assembly_3/end_asm_rev.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/assembly_3/end_asm_rev.S -------------------------------------------------------------------------------- /Solved/assembly_4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/assembly_4/README.md -------------------------------------------------------------------------------- /Solved/assembly_4/comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/assembly_4/comp -------------------------------------------------------------------------------- /Solved/assembly_4/solve/comp-decompiled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/assembly_4/solve/comp-decompiled.c -------------------------------------------------------------------------------- /Solved/assembly_4/solve/comp.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/assembly_4/solve/comp.nasm -------------------------------------------------------------------------------- /Solved/assembly_4/solve/comp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/assembly_4/solve/comp.o -------------------------------------------------------------------------------- /Solved/authenticate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/authenticate/README.md -------------------------------------------------------------------------------- /Solved/authenticate/auth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/authenticate/auth -------------------------------------------------------------------------------- /Solved/authenticate/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/authenticate/auth.c -------------------------------------------------------------------------------- /Solved/be_quick_or_be_dead_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/be_quick_or_be_dead_1/README.md -------------------------------------------------------------------------------- /Solved/be_quick_or_be_dead_1/be-quick-or-be-dead-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/be_quick_or_be_dead_1/be-quick-or-be-dead-1 -------------------------------------------------------------------------------- /Solved/be_quick_or_be_dead_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/be_quick_or_be_dead_2/README.md -------------------------------------------------------------------------------- /Solved/be_quick_or_be_dead_2/be-quick-or-be-dead-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/be_quick_or_be_dead_2/be-quick-or-be-dead-2 -------------------------------------------------------------------------------- /Solved/be_quick_or_be_dead_2/fib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/be_quick_or_be_dead_2/fib.py -------------------------------------------------------------------------------- /Solved/be_quick_or_be_dead_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/be_quick_or_be_dead_3/README.md -------------------------------------------------------------------------------- /Solved/be_quick_or_be_dead_3/be-quick-or-be-dead-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/be_quick_or_be_dead_3/be-quick-or-be-dead-3 -------------------------------------------------------------------------------- /Solved/be_quick_or_be_dead_3/memoize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/be_quick_or_be_dead_3/memoize.py -------------------------------------------------------------------------------- /Solved/buffer_overflow_0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/buffer_overflow_0/README.md -------------------------------------------------------------------------------- /Solved/buffer_overflow_0/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/buffer_overflow_0/vuln -------------------------------------------------------------------------------- /Solved/buffer_overflow_0/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/buffer_overflow_0/vuln.c -------------------------------------------------------------------------------- /Solved/buffer_overflow_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/buffer_overflow_1/README.md -------------------------------------------------------------------------------- /Solved/buffer_overflow_1/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/buffer_overflow_1/vuln -------------------------------------------------------------------------------- /Solved/buffer_overflow_1/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/buffer_overflow_1/vuln.c -------------------------------------------------------------------------------- /Solved/buffer_overflow_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/buffer_overflow_2/README.md -------------------------------------------------------------------------------- /Solved/buffer_overflow_2/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/buffer_overflow_2/vuln -------------------------------------------------------------------------------- /Solved/buffer_overflow_2/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/buffer_overflow_2/vuln.c -------------------------------------------------------------------------------- /Solved/buffer_overflow_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/buffer_overflow_3/README.md -------------------------------------------------------------------------------- /Solved/buffer_overflow_3/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/buffer_overflow_3/solve.py -------------------------------------------------------------------------------- /Solved/buffer_overflow_3/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/buffer_overflow_3/vuln -------------------------------------------------------------------------------- /Solved/buffer_overflow_3/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/buffer_overflow_3/vuln.c -------------------------------------------------------------------------------- /Solved/caesar_cipher_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/caesar_cipher_2/README.md -------------------------------------------------------------------------------- /Solved/caesar_cipher_2/ciphertext: -------------------------------------------------------------------------------- 1 | PICO#4&[C!ESA2?#I0H%R3?JU34?A2%N4?S%C5R%] -------------------------------------------------------------------------------- /Solved/circuit123/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/circuit123/README.md -------------------------------------------------------------------------------- /Solved/circuit123/decrypt-debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/circuit123/decrypt-debug.py -------------------------------------------------------------------------------- /Solved/circuit123/decrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/circuit123/decrypt.py -------------------------------------------------------------------------------- /Solved/circuit123/map1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/circuit123/map1.txt -------------------------------------------------------------------------------- /Solved/circuit123/map2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/circuit123/map2.txt -------------------------------------------------------------------------------- /Solved/circuit123/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/circuit123/solve.py -------------------------------------------------------------------------------- /Solved/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/core/README.md -------------------------------------------------------------------------------- /Solved/core/core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/core/core -------------------------------------------------------------------------------- /Solved/core/print_flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/core/print_flag -------------------------------------------------------------------------------- /Solved/core/print_flag-decompiled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/core/print_flag-decompiled.c -------------------------------------------------------------------------------- /Solved/echooo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/echooo/README.md -------------------------------------------------------------------------------- /Solved/echooo/echo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/echooo/echo -------------------------------------------------------------------------------- /Solved/echooo/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/echooo/echo.c -------------------------------------------------------------------------------- /Solved/echooo/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/echooo/solve.py -------------------------------------------------------------------------------- /Solved/eleCTRic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/eleCTRic/README.md -------------------------------------------------------------------------------- /Solved/eleCTRic/aes-ctr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/eleCTRic/aes-ctr.png -------------------------------------------------------------------------------- /Solved/eleCTRic/eleCTRic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/eleCTRic/eleCTRic.py -------------------------------------------------------------------------------- /Solved/eleCTRic/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/eleCTRic/solve.py -------------------------------------------------------------------------------- /Solved/environ/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/environ/README.md -------------------------------------------------------------------------------- /Solved/fancy_alive_monitoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/fancy_alive_monitoring/README.md -------------------------------------------------------------------------------- /Solved/fancy_alive_monitoring/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/fancy_alive_monitoring/index.txt -------------------------------------------------------------------------------- /Solved/got_2_learn_libc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/got_2_learn_libc/README.md -------------------------------------------------------------------------------- /Solved/got_2_learn_libc/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/got_2_learn_libc/solve.py -------------------------------------------------------------------------------- /Solved/got_2_learn_libc/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/got_2_learn_libc/vuln -------------------------------------------------------------------------------- /Solved/got_2_learn_libc/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/got_2_learn_libc/vuln.c -------------------------------------------------------------------------------- /Solved/got_shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/got_shell/README.md -------------------------------------------------------------------------------- /Solved/got_shell/auth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/got_shell/auth -------------------------------------------------------------------------------- /Solved/got_shell/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/got_shell/auth.c -------------------------------------------------------------------------------- /Solved/in_out_error/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/in_out_error/README.md -------------------------------------------------------------------------------- /Solved/in_out_error/in-out-error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/in_out_error/in-out-error -------------------------------------------------------------------------------- /Solved/keygen_me_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/keygen_me_1/README.md -------------------------------------------------------------------------------- /Solved/keygen_me_1/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/keygen_me_1/activate -------------------------------------------------------------------------------- /Solved/keygen_me_1/activate-decompiled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/keygen_me_1/activate-decompiled.c -------------------------------------------------------------------------------- /Solved/keygen_me_1/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/keygen_me_1/debug.c -------------------------------------------------------------------------------- /Solved/keygen_me_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/keygen_me_2/README.md -------------------------------------------------------------------------------- /Solved/keygen_me_2/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/keygen_me_2/activate -------------------------------------------------------------------------------- /Solved/keygen_me_2/activate-decompiled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/keygen_me_2/activate-decompiled.c -------------------------------------------------------------------------------- /Solved/keygen_me_2/test1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/keygen_me_2/test1.c -------------------------------------------------------------------------------- /Solved/keygen_me_2/test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/keygen_me_2/test2.c -------------------------------------------------------------------------------- /Solved/keygen_me_2/z3-solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/keygen_me_2/z3-solve.py -------------------------------------------------------------------------------- /Solved/learn_gdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/learn_gdb/README.md -------------------------------------------------------------------------------- /Solved/learn_gdb/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/learn_gdb/run -------------------------------------------------------------------------------- /Solved/quackme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/quackme/README.md -------------------------------------------------------------------------------- /Solved/quackme/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/quackme/main -------------------------------------------------------------------------------- /Solved/quackme/main-decompiled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/quackme/main-decompiled.c -------------------------------------------------------------------------------- /Solved/quackme/payload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/quackme/payload.c -------------------------------------------------------------------------------- /Solved/quackme_up/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/quackme_up/README.md -------------------------------------------------------------------------------- /Solved/quackme_up/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/quackme_up/main -------------------------------------------------------------------------------- /Solved/quackme_up/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/quackme_up/solve.py -------------------------------------------------------------------------------- /Solved/rop_chain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/rop_chain/README.md -------------------------------------------------------------------------------- /Solved/rop_chain/rop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/rop_chain/rop -------------------------------------------------------------------------------- /Solved/rop_chain/rop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/rop_chain/rop.c -------------------------------------------------------------------------------- /Solved/roulette/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/roulette/README.md -------------------------------------------------------------------------------- /Solved/roulette/roulette: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/roulette/roulette -------------------------------------------------------------------------------- /Solved/roulette/roulette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/roulette/roulette.c -------------------------------------------------------------------------------- /Solved/roulette/solve-get_spin_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/roulette/solve-get_spin_value.c -------------------------------------------------------------------------------- /Solved/roulette/try.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/roulette/try.py -------------------------------------------------------------------------------- /Solved/rsa_madlibs/6-cuberoot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/rsa_madlibs/6-cuberoot.py -------------------------------------------------------------------------------- /Solved/rsa_madlibs/7-modinv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/rsa_madlibs/7-modinv.py -------------------------------------------------------------------------------- /Solved/rsa_madlibs/8-getflag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/rsa_madlibs/8-getflag.py -------------------------------------------------------------------------------- /Solved/rsa_madlibs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/rsa_madlibs/README.md -------------------------------------------------------------------------------- /Solved/rsa_madlibs/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/rsa_madlibs/log.txt -------------------------------------------------------------------------------- /Solved/script_me/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/script_me/README.md -------------------------------------------------------------------------------- /Solved/script_me/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/script_me/output.txt -------------------------------------------------------------------------------- /Solved/script_me/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/script_me/solve.py -------------------------------------------------------------------------------- /Solved/shellcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/shellcode/README.md -------------------------------------------------------------------------------- /Solved/shellcode/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/shellcode/vuln -------------------------------------------------------------------------------- /Solved/shellcode/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/shellcode/vuln.c -------------------------------------------------------------------------------- /Solved/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/store/README.md -------------------------------------------------------------------------------- /Solved/store/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/store/source.c -------------------------------------------------------------------------------- /Solved/store/store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/store/store -------------------------------------------------------------------------------- /Solved/what_base_is_this/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/what_base_is_this/README.md -------------------------------------------------------------------------------- /Solved/what_base_is_this/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/what_base_is_this/solve.py -------------------------------------------------------------------------------- /Solved/you_can_t_see_me/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/Solved/you_can_t_see_me/README.md -------------------------------------------------------------------------------- /TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/TEMPLATE.md -------------------------------------------------------------------------------- /new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst-ctf/picoctf-2018-writeups/HEAD/new -------------------------------------------------------------------------------- /server.sh: -------------------------------------------------------------------------------- 1 | ssh 'zst123@2018shell2.picoctf.com' 2 | --------------------------------------------------------------------------------