├── If_on_a_winter's_night_a_traveler ├── Dockerfile ├── README.md ├── flag ├── perm.diff ├── service.py ├── solution │ ├── gen.py │ └── solve.py ├── vim └── xinetd ├── README.md ├── babydb ├── README.md ├── solution │ └── solve.py ├── task.ml └── task.native ├── babymath ├── babymath └── solution │ ├── flag │ ├── solve.py │ └── task.cpp ├── babysponge ├── CompactFIPS202.py ├── README.md ├── flag.py ├── solution │ ├── Keccak-readable-and-compact.c │ ├── solve.cpp │ └── solve.py └── task.py ├── zer0des ├── README.md ├── des.py ├── flag.py ├── solution │ ├── solve.cpp │ └── solve.py └── task.py ├── zer0mi ├── README.md ├── encrypt.py ├── flag ├── output └── solution │ └── solve-final.sage └── zer0ssh ├── README.md ├── client ├── Dockerfile ├── config ├── id_xmss ├── service.py └── ssh ├── server ├── Dockerfile ├── flag ├── id_xmss.pub ├── ssh_host_rsa_key ├── ssh_host_rsa_key.pub ├── sshd └── sshd_config └── solution ├── collect.py ├── flag ├── openssh.patch └── solve.py /If_on_a_winter's_night_a_traveler/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/If_on_a_winter's_night_a_traveler/Dockerfile -------------------------------------------------------------------------------- /If_on_a_winter's_night_a_traveler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/If_on_a_winter's_night_a_traveler/README.md -------------------------------------------------------------------------------- /If_on_a_winter's_night_a_traveler/flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/If_on_a_winter's_night_a_traveler/flag -------------------------------------------------------------------------------- /If_on_a_winter's_night_a_traveler/perm.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/If_on_a_winter's_night_a_traveler/perm.diff -------------------------------------------------------------------------------- /If_on_a_winter's_night_a_traveler/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/If_on_a_winter's_night_a_traveler/service.py -------------------------------------------------------------------------------- /If_on_a_winter's_night_a_traveler/solution/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/If_on_a_winter's_night_a_traveler/solution/gen.py -------------------------------------------------------------------------------- /If_on_a_winter's_night_a_traveler/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/If_on_a_winter's_night_a_traveler/solution/solve.py -------------------------------------------------------------------------------- /If_on_a_winter's_night_a_traveler/vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/If_on_a_winter's_night_a_traveler/vim -------------------------------------------------------------------------------- /If_on_a_winter's_night_a_traveler/xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/If_on_a_winter's_night_a_traveler/xinetd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/README.md -------------------------------------------------------------------------------- /babydb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/babydb/README.md -------------------------------------------------------------------------------- /babydb/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/babydb/solution/solve.py -------------------------------------------------------------------------------- /babydb/task.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/babydb/task.ml -------------------------------------------------------------------------------- /babydb/task.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/babydb/task.native -------------------------------------------------------------------------------- /babymath/babymath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/babymath/babymath -------------------------------------------------------------------------------- /babymath/solution/flag: -------------------------------------------------------------------------------- 1 | flag{1807948441590188} 2 | -------------------------------------------------------------------------------- /babymath/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/babymath/solution/solve.py -------------------------------------------------------------------------------- /babymath/solution/task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/babymath/solution/task.cpp -------------------------------------------------------------------------------- /babysponge/CompactFIPS202.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/babysponge/CompactFIPS202.py -------------------------------------------------------------------------------- /babysponge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/babysponge/README.md -------------------------------------------------------------------------------- /babysponge/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/babysponge/flag.py -------------------------------------------------------------------------------- /babysponge/solution/Keccak-readable-and-compact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/babysponge/solution/Keccak-readable-and-compact.c -------------------------------------------------------------------------------- /babysponge/solution/solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/babysponge/solution/solve.cpp -------------------------------------------------------------------------------- /babysponge/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/babysponge/solution/solve.py -------------------------------------------------------------------------------- /babysponge/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/babysponge/task.py -------------------------------------------------------------------------------- /zer0des/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/zer0des/README.md -------------------------------------------------------------------------------- /zer0des/des.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/zer0des/des.py -------------------------------------------------------------------------------- /zer0des/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/zer0des/flag.py -------------------------------------------------------------------------------- /zer0des/solution/solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/zer0des/solution/solve.cpp -------------------------------------------------------------------------------- /zer0des/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/zer0des/solution/solve.py -------------------------------------------------------------------------------- /zer0des/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/zer0des/task.py -------------------------------------------------------------------------------- /zer0mi/README.md: -------------------------------------------------------------------------------- 1 | MI is for Matsumoto-Imai 2 | -------------------------------------------------------------------------------- /zer0mi/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/zer0mi/encrypt.py -------------------------------------------------------------------------------- /zer0mi/flag: -------------------------------------------------------------------------------- 1 | flag{E$t-ce_qu3_Le_c!3l_m0uRra,_Mourr4_?} 2 | -------------------------------------------------------------------------------- /zer0mi/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/zer0mi/output -------------------------------------------------------------------------------- /zer0mi/solution/solve-final.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/zer0mi/solution/solve-final.sage -------------------------------------------------------------------------------- /zer0ssh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/zer0ssh/README.md -------------------------------------------------------------------------------- /zer0ssh/client/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/zer0ssh/client/Dockerfile -------------------------------------------------------------------------------- /zer0ssh/client/config: -------------------------------------------------------------------------------- 1 | UserKnownHostsFile=/dev/null 2 | StrictHostKeyChecking=no 3 | -------------------------------------------------------------------------------- /zer0ssh/client/id_xmss: -------------------------------------------------------------------------------- 1 | private key here! 2 | -------------------------------------------------------------------------------- /zer0ssh/client/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/zer0ssh/client/service.py -------------------------------------------------------------------------------- /zer0ssh/client/ssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/zer0ssh/client/ssh -------------------------------------------------------------------------------- /zer0ssh/server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/zer0ssh/server/Dockerfile -------------------------------------------------------------------------------- /zer0ssh/server/flag: -------------------------------------------------------------------------------- 1 | server flag here! 2 | -------------------------------------------------------------------------------- /zer0ssh/server/id_xmss.pub: -------------------------------------------------------------------------------- 1 | public key here! 2 | -------------------------------------------------------------------------------- /zer0ssh/server/ssh_host_rsa_key: -------------------------------------------------------------------------------- 1 | sshd private key here! 2 | -------------------------------------------------------------------------------- /zer0ssh/server/ssh_host_rsa_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/zer0ssh/server/ssh_host_rsa_key.pub -------------------------------------------------------------------------------- /zer0ssh/server/sshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/zer0ssh/server/sshd -------------------------------------------------------------------------------- /zer0ssh/server/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/zer0ssh/server/sshd_config -------------------------------------------------------------------------------- /zer0ssh/solution/collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/zer0ssh/solution/collect.py -------------------------------------------------------------------------------- /zer0ssh/solution/flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/zer0ssh/solution/flag -------------------------------------------------------------------------------- /zer0ssh/solution/openssh.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/zer0ssh/solution/openssh.patch -------------------------------------------------------------------------------- /zer0ssh/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/0ctf_tctf_2019/HEAD/zer0ssh/solution/solve.py --------------------------------------------------------------------------------