├── README.md ├── crypto ├── bitcrypto │ ├── Dockerfile │ ├── challenge │ │ ├── secret.py │ │ └── server.py │ ├── distfiles │ │ └── server.py │ ├── docker-compose.yml │ ├── solution │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ └── solve.py │ └── task.json ├── ciphertexts │ ├── build.sh │ ├── challenge │ │ ├── flag.py │ │ └── main.py │ ├── distfiles │ │ ├── main.py │ │ └── output.txt │ ├── solution │ │ └── solve.py │ └── task.json ├── ochazuke │ ├── Dockerfile │ ├── challenge │ │ ├── chall.sage │ │ └── secret.py │ ├── distfiles │ │ └── chall.sage │ ├── docker-compose.yml │ ├── solution │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ ├── shattered-1.pdf │ │ ├── shattered-2.pdf │ │ └── solver.sage │ └── task.json ├── padding_oracle │ ├── Dockerfile │ ├── challenge │ │ ├── flag.py │ │ └── server.py │ ├── distfiles │ │ └── server.py │ ├── docker-compose.yml │ ├── solution │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ └── solve.py │ └── task.json └── padrsa │ ├── Dockerfile │ ├── challenge │ ├── flag.py │ └── server.py │ ├── distfiles │ └── server.py │ ├── docker-compose.yaml │ ├── solution │ ├── Dockerfile │ ├── docker-compose.yml │ └── solve.py │ └── task.json ├── misc ├── graphviz++ │ ├── Dockerfile │ ├── challenge │ │ ├── app.py │ │ ├── dotmerger.py │ │ ├── flag.txt │ │ ├── init.sh │ │ └── templates │ │ │ └── index.html │ ├── distfiles │ │ ├── app.py │ │ ├── dotmerger.py │ │ └── templates │ │ │ └── index.html │ ├── docker-compose.yml │ ├── solution │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ └── solve.py │ └── task.json ├── limited │ ├── challenge │ │ ├── Dockerfile │ │ ├── attacker │ │ │ └── leak.py │ │ ├── docker-compose.yml │ │ └── public │ │ │ ├── database.db │ │ │ └── search.php │ ├── distfiles │ │ └── packet.pcap │ ├── solution │ │ ├── solve.py │ │ └── solve.sh │ └── task.json ├── no_pressure │ ├── Dockerfile │ ├── challenge │ │ ├── chall.py │ │ └── flag.txt │ ├── distfiles │ │ └── chall.py │ ├── docker-compose.yml │ ├── solution │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ └── solve.py │ └── task.json ├── readme │ ├── Dockerfile │ ├── challenge │ │ ├── flag.txt │ │ └── server.py │ ├── distfiles │ │ └── server.py │ ├── docker-compose.yml │ ├── solution │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ └── solve.py │ └── task.json └── tip_toe │ ├── challenge │ └── main.hsp │ ├── distfiles │ ├── README.txt │ ├── res │ │ ├── body_SD.png │ │ ├── font.gpb │ │ ├── head_SD.png │ │ ├── shaders │ │ │ ├── colored.frag │ │ │ ├── colored.vert │ │ │ ├── colored.vert.err │ │ │ ├── font.frag │ │ │ ├── font.vert │ │ │ ├── lighting.frag │ │ │ ├── lighting.vert │ │ │ ├── skinning-none.vert │ │ │ ├── skinning.vert │ │ │ ├── sprite.frag │ │ │ ├── sprite.vert │ │ │ ├── spritecol.frag │ │ │ ├── spritecol.vert │ │ │ ├── textured.frag │ │ │ ├── textured.vert │ │ │ └── textured.vert.err │ │ ├── tamane.gpb │ │ ├── tamane.material │ │ ├── text_eliminated.png │ │ └── text_qualified.png │ └── tiptoe.exe │ └── task.json ├── pwn ├── authme │ ├── Dockerfile │ ├── challenge │ │ ├── Makefile │ │ ├── flag.txt │ │ ├── init.sh │ │ ├── main.c │ │ ├── password │ │ ├── pwn.xinetd │ │ ├── redir.sh │ │ └── username │ ├── distfiles │ │ ├── chall │ │ ├── main.c │ │ ├── password │ │ └── username │ ├── docker-compose.yml │ ├── solution │ │ ├── Dockerfile │ │ ├── chall │ │ ├── docker-compose.yml │ │ └── solve.py │ └── task.json ├── babysort │ ├── Dockerfile │ ├── challenge │ │ ├── Makefile │ │ ├── flag.txt │ │ ├── init.sh │ │ ├── main.c │ │ ├── pwn.xinetd │ │ └── redir.sh │ ├── distfiles │ │ ├── chall │ │ └── main.c │ ├── docker-compose.yml │ ├── solution │ │ ├── Dockerfile │ │ ├── chall │ │ ├── docker-compose.yml │ │ └── solve.py │ └── task.json ├── confusing │ ├── Dockerfile │ ├── challenge │ │ ├── Makefile │ │ ├── flag.txt │ │ ├── init.sh │ │ ├── main.c │ │ ├── pwn.xinetd │ │ ├── redir.sh │ │ └── type.h │ ├── distfiles │ │ ├── chall │ │ ├── libc-2.27.so │ │ ├── main.c │ │ └── type.h │ ├── docker-compose.yml │ ├── solution │ │ ├── Dockerfile │ │ ├── chall │ │ ├── docker-compose.yml │ │ ├── libc-2.27.so │ │ └── solve.py │ └── task.json ├── fables_of_aesop │ ├── Dockerfile │ ├── challenge │ │ ├── Makefile │ │ ├── banner.txt │ │ ├── flag.txt │ │ ├── init.sh │ │ ├── main.c │ │ ├── pwn.xinetd │ │ └── redir.sh │ ├── distfiles │ │ ├── banner.txt │ │ ├── chall │ │ └── libc-2.23.so │ ├── docker-compose.yml │ ├── solution │ │ ├── Dockerfile │ │ ├── chall │ │ ├── docker-compose.yml │ │ ├── libc-2.23.so │ │ └── solve.py │ └── task.json └── pash │ ├── Dockerfile │ ├── challenge │ ├── Makefile │ ├── flag.txt │ ├── pash │ └── pash.rs │ ├── docker-compose.yml │ ├── solution │ ├── Dockerfile │ ├── docker-compose.yml │ └── solve.py │ └── task.json ├── reversing ├── harmagedon │ ├── challenge │ │ ├── Makefile │ │ ├── gen.py │ │ └── template.asm │ ├── distfiles │ │ └── harmagedon │ ├── solution │ │ └── solve.py │ └── task.json ├── in_question │ ├── challenge │ │ ├── Makefile │ │ ├── Mod-ELF-Symbol │ │ │ └── mod-elf-symbol │ │ ├── corrupt.py │ │ ├── gen.py │ │ ├── main.c │ │ └── modify.py │ ├── distfiles │ │ └── chall │ ├── solution │ │ └── solve.py │ └── task.json ├── stratum │ ├── challenge │ │ ├── Makefile │ │ └── main.S │ ├── distfiles │ │ ├── chall │ │ ├── chall.sh │ │ └── flag.enc │ ├── solution │ │ └── solve.py │ └── task.json └── trilemma │ ├── challenge │ ├── Makefile │ ├── citizen.c │ ├── emperor.c │ ├── gen.py │ ├── main.c │ └── slave.c │ ├── distfiles │ ├── libcitizen.so │ ├── libemperor.so │ ├── libslave.so │ └── main.c │ ├── solution │ ├── solve01.py │ └── solve02.py │ └── task.json ├── web ├── just_sqli │ ├── Dockerfile │ ├── challenge │ │ ├── flag.php │ │ └── html │ │ │ └── index.php │ ├── docker-compose.yml │ ├── solution │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ └── solve.sh │ └── task.json ├── matsushima2 │ ├── Dockerfile │ ├── challenge │ │ ├── images │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 17.png │ │ │ ├── 18.png │ │ │ ├── 19.png │ │ │ ├── 2.png │ │ │ ├── 20.png │ │ │ ├── 21.png │ │ │ ├── 22.png │ │ │ ├── 23.png │ │ │ ├── 24.png │ │ │ ├── 25.png │ │ │ ├── 26.png │ │ │ ├── 27.png │ │ │ ├── 28.png │ │ │ ├── 29.png │ │ │ ├── 3.png │ │ │ ├── 30.png │ │ │ ├── 31.png │ │ │ ├── 32.png │ │ │ ├── 33.png │ │ │ ├── 34.png │ │ │ ├── 35.png │ │ │ ├── 36.png │ │ │ ├── 37.png │ │ │ ├── 38.png │ │ │ ├── 39.png │ │ │ ├── 4.png │ │ │ ├── 40.png │ │ │ ├── 41.png │ │ │ ├── 42.png │ │ │ ├── 43.png │ │ │ ├── 44.png │ │ │ ├── 45.png │ │ │ ├── 46.png │ │ │ ├── 47.png │ │ │ ├── 48.png │ │ │ ├── 49.png │ │ │ ├── 5.png │ │ │ ├── 50.png │ │ │ ├── 51.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── index.html │ │ ├── main.py │ │ ├── requirements.txt │ │ └── secret.py │ ├── distfiles │ │ ├── images │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 17.png │ │ │ ├── 18.png │ │ │ ├── 19.png │ │ │ ├── 2.png │ │ │ ├── 20.png │ │ │ ├── 21.png │ │ │ ├── 22.png │ │ │ ├── 23.png │ │ │ ├── 24.png │ │ │ ├── 25.png │ │ │ ├── 26.png │ │ │ ├── 27.png │ │ │ ├── 28.png │ │ │ ├── 29.png │ │ │ ├── 3.png │ │ │ ├── 30.png │ │ │ ├── 31.png │ │ │ ├── 32.png │ │ │ ├── 33.png │ │ │ ├── 34.png │ │ │ ├── 35.png │ │ │ ├── 36.png │ │ │ ├── 37.png │ │ │ ├── 38.png │ │ │ ├── 39.png │ │ │ ├── 4.png │ │ │ ├── 40.png │ │ │ ├── 41.png │ │ │ ├── 42.png │ │ │ ├── 43.png │ │ │ ├── 44.png │ │ │ ├── 45.png │ │ │ ├── 46.png │ │ │ ├── 47.png │ │ │ ├── 48.png │ │ │ ├── 49.png │ │ │ ├── 5.png │ │ │ ├── 50.png │ │ │ ├── 51.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── index.html │ │ ├── main.py │ │ └── requirements.txt │ ├── docker-compose.yaml │ ├── solution │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ └── solve.py │ └── task.json ├── maze │ ├── Dockerfile │ ├── challenge │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── app.js │ │ ├── flag.txt │ │ ├── maze.js │ │ ├── package.json │ │ ├── solve.js │ │ └── util.js │ ├── distfiles │ │ ├── src │ │ │ ├── app.js │ │ │ ├── maze.js │ │ │ ├── package.json │ │ │ ├── solve.js │ │ │ └── util.js │ │ └── usage │ │ │ └── sample.py │ ├── docker-compose.yml │ ├── solution │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ └── solve.py │ └── task.json └── miniblog │ ├── Dockerfile │ ├── challenge │ ├── flag │ └── miniblog │ │ ├── main.py │ │ ├── tmp │ │ └── .keep │ │ ├── user_template │ │ ├── attachments │ │ │ └── neko.png │ │ ├── posts │ │ │ └── 00000000000000000000000000000000 │ │ ├── template │ │ └── titles │ │ │ └── 00000000000000000000000000000000 │ │ ├── userdir │ │ └── .keep │ │ └── views │ │ ├── index.html │ │ └── user.html │ ├── distfiles │ └── miniblog │ │ ├── main.py │ │ ├── tmp │ │ └── .keep │ │ ├── user_template │ │ ├── attachments │ │ │ └── neko.png │ │ ├── posts │ │ │ └── 00000000000000000000000000000000 │ │ ├── template │ │ └── titles │ │ │ └── 00000000000000000000000000000000 │ │ ├── userdir │ │ └── .keep │ │ └── views │ │ ├── index.html │ │ └── user.html │ ├── docker-compose.yml │ ├── solution │ ├── Dockerfile │ ├── docker-compose.yml │ └── solve.sh │ └── task.json └── welcome_survey ├── survey └── task.json └── welcome └── task.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/README.md -------------------------------------------------------------------------------- /crypto/bitcrypto/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/bitcrypto/Dockerfile -------------------------------------------------------------------------------- /crypto/bitcrypto/challenge/secret.py: -------------------------------------------------------------------------------- 1 | flag = "KosenCTF{yoshiking_is_clever_and_wild_god_of_crypt}" 2 | -------------------------------------------------------------------------------- /crypto/bitcrypto/challenge/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/bitcrypto/challenge/server.py -------------------------------------------------------------------------------- /crypto/bitcrypto/distfiles/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/bitcrypto/distfiles/server.py -------------------------------------------------------------------------------- /crypto/bitcrypto/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/bitcrypto/docker-compose.yml -------------------------------------------------------------------------------- /crypto/bitcrypto/solution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/bitcrypto/solution/Dockerfile -------------------------------------------------------------------------------- /crypto/bitcrypto/solution/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/bitcrypto/solution/docker-compose.yml -------------------------------------------------------------------------------- /crypto/bitcrypto/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/bitcrypto/solution/solve.py -------------------------------------------------------------------------------- /crypto/bitcrypto/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/bitcrypto/task.json -------------------------------------------------------------------------------- /crypto/ciphertexts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/ciphertexts/build.sh -------------------------------------------------------------------------------- /crypto/ciphertexts/challenge/flag.py: -------------------------------------------------------------------------------- 1 | flag = b"KosenCTF{HALDYN_D0M3}" 2 | -------------------------------------------------------------------------------- /crypto/ciphertexts/challenge/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/ciphertexts/challenge/main.py -------------------------------------------------------------------------------- /crypto/ciphertexts/distfiles/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/ciphertexts/distfiles/main.py -------------------------------------------------------------------------------- /crypto/ciphertexts/distfiles/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/ciphertexts/distfiles/output.txt -------------------------------------------------------------------------------- /crypto/ciphertexts/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/ciphertexts/solution/solve.py -------------------------------------------------------------------------------- /crypto/ciphertexts/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/ciphertexts/task.json -------------------------------------------------------------------------------- /crypto/ochazuke/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/ochazuke/Dockerfile -------------------------------------------------------------------------------- /crypto/ochazuke/challenge/chall.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/ochazuke/challenge/chall.sage -------------------------------------------------------------------------------- /crypto/ochazuke/challenge/secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/ochazuke/challenge/secret.py -------------------------------------------------------------------------------- /crypto/ochazuke/distfiles/chall.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/ochazuke/distfiles/chall.sage -------------------------------------------------------------------------------- /crypto/ochazuke/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/ochazuke/docker-compose.yml -------------------------------------------------------------------------------- /crypto/ochazuke/solution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/ochazuke/solution/Dockerfile -------------------------------------------------------------------------------- /crypto/ochazuke/solution/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/ochazuke/solution/docker-compose.yml -------------------------------------------------------------------------------- /crypto/ochazuke/solution/shattered-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/ochazuke/solution/shattered-1.pdf -------------------------------------------------------------------------------- /crypto/ochazuke/solution/shattered-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/ochazuke/solution/shattered-2.pdf -------------------------------------------------------------------------------- /crypto/ochazuke/solution/solver.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/ochazuke/solution/solver.sage -------------------------------------------------------------------------------- /crypto/ochazuke/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/ochazuke/task.json -------------------------------------------------------------------------------- /crypto/padding_oracle/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/padding_oracle/Dockerfile -------------------------------------------------------------------------------- /crypto/padding_oracle/challenge/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/padding_oracle/challenge/flag.py -------------------------------------------------------------------------------- /crypto/padding_oracle/challenge/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/padding_oracle/challenge/server.py -------------------------------------------------------------------------------- /crypto/padding_oracle/distfiles/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/padding_oracle/distfiles/server.py -------------------------------------------------------------------------------- /crypto/padding_oracle/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/padding_oracle/docker-compose.yml -------------------------------------------------------------------------------- /crypto/padding_oracle/solution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/padding_oracle/solution/Dockerfile -------------------------------------------------------------------------------- /crypto/padding_oracle/solution/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/padding_oracle/solution/docker-compose.yml -------------------------------------------------------------------------------- /crypto/padding_oracle/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/padding_oracle/solution/solve.py -------------------------------------------------------------------------------- /crypto/padding_oracle/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/padding_oracle/task.json -------------------------------------------------------------------------------- /crypto/padrsa/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/padrsa/Dockerfile -------------------------------------------------------------------------------- /crypto/padrsa/challenge/flag.py: -------------------------------------------------------------------------------- 1 | flag = b"KosenCTF{p13as3_mak4_padding_unpr3dictab13}" 2 | -------------------------------------------------------------------------------- /crypto/padrsa/challenge/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/padrsa/challenge/server.py -------------------------------------------------------------------------------- /crypto/padrsa/distfiles/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/padrsa/distfiles/server.py -------------------------------------------------------------------------------- /crypto/padrsa/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/padrsa/docker-compose.yaml -------------------------------------------------------------------------------- /crypto/padrsa/solution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/padrsa/solution/Dockerfile -------------------------------------------------------------------------------- /crypto/padrsa/solution/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/padrsa/solution/docker-compose.yml -------------------------------------------------------------------------------- /crypto/padrsa/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/padrsa/solution/solve.py -------------------------------------------------------------------------------- /crypto/padrsa/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/crypto/padrsa/task.json -------------------------------------------------------------------------------- /misc/graphviz++/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/graphviz++/Dockerfile -------------------------------------------------------------------------------- /misc/graphviz++/challenge/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/graphviz++/challenge/app.py -------------------------------------------------------------------------------- /misc/graphviz++/challenge/dotmerger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/graphviz++/challenge/dotmerger.py -------------------------------------------------------------------------------- /misc/graphviz++/challenge/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/graphviz++/challenge/flag.txt -------------------------------------------------------------------------------- /misc/graphviz++/challenge/init.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cd /home/app && python3 app.py 3 | -------------------------------------------------------------------------------- /misc/graphviz++/challenge/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/graphviz++/challenge/templates/index.html -------------------------------------------------------------------------------- /misc/graphviz++/distfiles/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/graphviz++/distfiles/app.py -------------------------------------------------------------------------------- /misc/graphviz++/distfiles/dotmerger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/graphviz++/distfiles/dotmerger.py -------------------------------------------------------------------------------- /misc/graphviz++/distfiles/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/graphviz++/distfiles/templates/index.html -------------------------------------------------------------------------------- /misc/graphviz++/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/graphviz++/docker-compose.yml -------------------------------------------------------------------------------- /misc/graphviz++/solution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/graphviz++/solution/Dockerfile -------------------------------------------------------------------------------- /misc/graphviz++/solution/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/graphviz++/solution/docker-compose.yml -------------------------------------------------------------------------------- /misc/graphviz++/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/graphviz++/solution/solve.py -------------------------------------------------------------------------------- /misc/graphviz++/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/graphviz++/task.json -------------------------------------------------------------------------------- /misc/limited/challenge/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM php:7.2-apache 2 | -------------------------------------------------------------------------------- /misc/limited/challenge/attacker/leak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/limited/challenge/attacker/leak.py -------------------------------------------------------------------------------- /misc/limited/challenge/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/limited/challenge/docker-compose.yml -------------------------------------------------------------------------------- /misc/limited/challenge/public/database.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/limited/challenge/public/database.db -------------------------------------------------------------------------------- /misc/limited/challenge/public/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/limited/challenge/public/search.php -------------------------------------------------------------------------------- /misc/limited/distfiles/packet.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/limited/distfiles/packet.pcap -------------------------------------------------------------------------------- /misc/limited/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/limited/solution/solve.py -------------------------------------------------------------------------------- /misc/limited/solution/solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/limited/solution/solve.sh -------------------------------------------------------------------------------- /misc/limited/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/limited/task.json -------------------------------------------------------------------------------- /misc/no_pressure/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/no_pressure/Dockerfile -------------------------------------------------------------------------------- /misc/no_pressure/challenge/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/no_pressure/challenge/chall.py -------------------------------------------------------------------------------- /misc/no_pressure/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | KosenCTF{DEFLATE_is_an_algorithm_that_combines_LZ77_and_Huffman_coding} 2 | -------------------------------------------------------------------------------- /misc/no_pressure/distfiles/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/no_pressure/distfiles/chall.py -------------------------------------------------------------------------------- /misc/no_pressure/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/no_pressure/docker-compose.yml -------------------------------------------------------------------------------- /misc/no_pressure/solution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/no_pressure/solution/Dockerfile -------------------------------------------------------------------------------- /misc/no_pressure/solution/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/no_pressure/solution/docker-compose.yml -------------------------------------------------------------------------------- /misc/no_pressure/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/no_pressure/solution/solve.py -------------------------------------------------------------------------------- /misc/no_pressure/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/no_pressure/task.json -------------------------------------------------------------------------------- /misc/readme/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/readme/Dockerfile -------------------------------------------------------------------------------- /misc/readme/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | KosenCTF{fd_1s_l1nk3d_2_7h3_4c7u4l_f1l3p4th} 2 | -------------------------------------------------------------------------------- /misc/readme/challenge/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/readme/challenge/server.py -------------------------------------------------------------------------------- /misc/readme/distfiles/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/readme/distfiles/server.py -------------------------------------------------------------------------------- /misc/readme/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/readme/docker-compose.yml -------------------------------------------------------------------------------- /misc/readme/solution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/readme/solution/Dockerfile -------------------------------------------------------------------------------- /misc/readme/solution/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/readme/solution/docker-compose.yml -------------------------------------------------------------------------------- /misc/readme/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/readme/solution/solve.py -------------------------------------------------------------------------------- /misc/readme/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/readme/task.json -------------------------------------------------------------------------------- /misc/tip_toe/challenge/main.hsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/challenge/main.hsp -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/README.txt -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/res/body_SD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/res/body_SD.png -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/res/font.gpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/res/font.gpb -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/res/head_SD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/res/head_SD.png -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/res/shaders/colored.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/res/shaders/colored.frag -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/res/shaders/colored.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/res/shaders/colored.vert -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/res/shaders/colored.vert.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/res/shaders/colored.vert.err -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/res/shaders/font.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/res/shaders/font.frag -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/res/shaders/font.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/res/shaders/font.vert -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/res/shaders/lighting.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/res/shaders/lighting.frag -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/res/shaders/lighting.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/res/shaders/lighting.vert -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/res/shaders/skinning-none.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/res/shaders/skinning-none.vert -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/res/shaders/skinning.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/res/shaders/skinning.vert -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/res/shaders/sprite.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/res/shaders/sprite.frag -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/res/shaders/sprite.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/res/shaders/sprite.vert -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/res/shaders/spritecol.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/res/shaders/spritecol.frag -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/res/shaders/spritecol.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/res/shaders/spritecol.vert -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/res/shaders/textured.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/res/shaders/textured.frag -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/res/shaders/textured.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/res/shaders/textured.vert -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/res/shaders/textured.vert.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/res/shaders/textured.vert.err -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/res/tamane.gpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/res/tamane.gpb -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/res/tamane.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/res/tamane.material -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/res/text_eliminated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/res/text_eliminated.png -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/res/text_qualified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/res/text_qualified.png -------------------------------------------------------------------------------- /misc/tip_toe/distfiles/tiptoe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/distfiles/tiptoe.exe -------------------------------------------------------------------------------- /misc/tip_toe/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/misc/tip_toe/task.json -------------------------------------------------------------------------------- /pwn/authme/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/authme/Dockerfile -------------------------------------------------------------------------------- /pwn/authme/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/authme/challenge/Makefile -------------------------------------------------------------------------------- /pwn/authme/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | KosenCTF{cl0s3_ur_3y3_4nd_g0_w1th_th3_fl0w} 2 | -------------------------------------------------------------------------------- /pwn/authme/challenge/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/authme/challenge/init.sh -------------------------------------------------------------------------------- /pwn/authme/challenge/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/authme/challenge/main.c -------------------------------------------------------------------------------- /pwn/authme/challenge/password: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/authme/challenge/password -------------------------------------------------------------------------------- /pwn/authme/challenge/pwn.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/authme/challenge/pwn.xinetd -------------------------------------------------------------------------------- /pwn/authme/challenge/redir.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | cd /home/pwn && ./chall 3 | -------------------------------------------------------------------------------- /pwn/authme/challenge/username: -------------------------------------------------------------------------------- 1 | UnderUltimateUtterUranium 2 | -------------------------------------------------------------------------------- /pwn/authme/distfiles/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/authme/distfiles/chall -------------------------------------------------------------------------------- /pwn/authme/distfiles/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/authme/distfiles/main.c -------------------------------------------------------------------------------- /pwn/authme/distfiles/password: -------------------------------------------------------------------------------- 1 | DummyPassword 2 | -------------------------------------------------------------------------------- /pwn/authme/distfiles/username: -------------------------------------------------------------------------------- 1 | DummyUsername 2 | -------------------------------------------------------------------------------- /pwn/authme/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/authme/docker-compose.yml -------------------------------------------------------------------------------- /pwn/authme/solution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/authme/solution/Dockerfile -------------------------------------------------------------------------------- /pwn/authme/solution/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/authme/solution/chall -------------------------------------------------------------------------------- /pwn/authme/solution/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/authme/solution/docker-compose.yml -------------------------------------------------------------------------------- /pwn/authme/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/authme/solution/solve.py -------------------------------------------------------------------------------- /pwn/authme/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/authme/task.json -------------------------------------------------------------------------------- /pwn/babysort/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/babysort/Dockerfile -------------------------------------------------------------------------------- /pwn/babysort/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/babysort/challenge/Makefile -------------------------------------------------------------------------------- /pwn/babysort/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | KosenCTF{f4k3_p01nt3r_l34ds_u_2_w1n} 2 | -------------------------------------------------------------------------------- /pwn/babysort/challenge/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/babysort/challenge/init.sh -------------------------------------------------------------------------------- /pwn/babysort/challenge/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/babysort/challenge/main.c -------------------------------------------------------------------------------- /pwn/babysort/challenge/pwn.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/babysort/challenge/pwn.xinetd -------------------------------------------------------------------------------- /pwn/babysort/challenge/redir.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | cd /home/pwn && ./chall 3 | -------------------------------------------------------------------------------- /pwn/babysort/distfiles/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/babysort/distfiles/chall -------------------------------------------------------------------------------- /pwn/babysort/distfiles/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/babysort/distfiles/main.c -------------------------------------------------------------------------------- /pwn/babysort/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/babysort/docker-compose.yml -------------------------------------------------------------------------------- /pwn/babysort/solution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/babysort/solution/Dockerfile -------------------------------------------------------------------------------- /pwn/babysort/solution/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/babysort/solution/chall -------------------------------------------------------------------------------- /pwn/babysort/solution/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/babysort/solution/docker-compose.yml -------------------------------------------------------------------------------- /pwn/babysort/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/babysort/solution/solve.py -------------------------------------------------------------------------------- /pwn/babysort/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/babysort/task.json -------------------------------------------------------------------------------- /pwn/confusing/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/confusing/Dockerfile -------------------------------------------------------------------------------- /pwn/confusing/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/confusing/challenge/Makefile -------------------------------------------------------------------------------- /pwn/confusing/challenge/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/confusing/challenge/flag.txt -------------------------------------------------------------------------------- /pwn/confusing/challenge/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/confusing/challenge/init.sh -------------------------------------------------------------------------------- /pwn/confusing/challenge/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/confusing/challenge/main.c -------------------------------------------------------------------------------- /pwn/confusing/challenge/pwn.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/confusing/challenge/pwn.xinetd -------------------------------------------------------------------------------- /pwn/confusing/challenge/redir.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | cd /home/pwn && ./chall 3 | -------------------------------------------------------------------------------- /pwn/confusing/challenge/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/confusing/challenge/type.h -------------------------------------------------------------------------------- /pwn/confusing/distfiles/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/confusing/distfiles/chall -------------------------------------------------------------------------------- /pwn/confusing/distfiles/libc-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/confusing/distfiles/libc-2.27.so -------------------------------------------------------------------------------- /pwn/confusing/distfiles/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/confusing/distfiles/main.c -------------------------------------------------------------------------------- /pwn/confusing/distfiles/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/confusing/distfiles/type.h -------------------------------------------------------------------------------- /pwn/confusing/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/confusing/docker-compose.yml -------------------------------------------------------------------------------- /pwn/confusing/solution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/confusing/solution/Dockerfile -------------------------------------------------------------------------------- /pwn/confusing/solution/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/confusing/solution/chall -------------------------------------------------------------------------------- /pwn/confusing/solution/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/confusing/solution/docker-compose.yml -------------------------------------------------------------------------------- /pwn/confusing/solution/libc-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/confusing/solution/libc-2.27.so -------------------------------------------------------------------------------- /pwn/confusing/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/confusing/solution/solve.py -------------------------------------------------------------------------------- /pwn/confusing/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/confusing/task.json -------------------------------------------------------------------------------- /pwn/fables_of_aesop/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/fables_of_aesop/Dockerfile -------------------------------------------------------------------------------- /pwn/fables_of_aesop/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/fables_of_aesop/challenge/Makefile -------------------------------------------------------------------------------- /pwn/fables_of_aesop/challenge/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/fables_of_aesop/challenge/banner.txt -------------------------------------------------------------------------------- /pwn/fables_of_aesop/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | KosenCTF{FS0P_1s_s1mpl3_4nd_fun!} 2 | -------------------------------------------------------------------------------- /pwn/fables_of_aesop/challenge/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/fables_of_aesop/challenge/init.sh -------------------------------------------------------------------------------- /pwn/fables_of_aesop/challenge/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/fables_of_aesop/challenge/main.c -------------------------------------------------------------------------------- /pwn/fables_of_aesop/challenge/pwn.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/fables_of_aesop/challenge/pwn.xinetd -------------------------------------------------------------------------------- /pwn/fables_of_aesop/challenge/redir.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | cd /home/pwn && ./chall 3 | -------------------------------------------------------------------------------- /pwn/fables_of_aesop/distfiles/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/fables_of_aesop/distfiles/banner.txt -------------------------------------------------------------------------------- /pwn/fables_of_aesop/distfiles/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/fables_of_aesop/distfiles/chall -------------------------------------------------------------------------------- /pwn/fables_of_aesop/distfiles/libc-2.23.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/fables_of_aesop/distfiles/libc-2.23.so -------------------------------------------------------------------------------- /pwn/fables_of_aesop/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/fables_of_aesop/docker-compose.yml -------------------------------------------------------------------------------- /pwn/fables_of_aesop/solution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/fables_of_aesop/solution/Dockerfile -------------------------------------------------------------------------------- /pwn/fables_of_aesop/solution/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/fables_of_aesop/solution/chall -------------------------------------------------------------------------------- /pwn/fables_of_aesop/solution/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/fables_of_aesop/solution/docker-compose.yml -------------------------------------------------------------------------------- /pwn/fables_of_aesop/solution/libc-2.23.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/fables_of_aesop/solution/libc-2.23.so -------------------------------------------------------------------------------- /pwn/fables_of_aesop/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/fables_of_aesop/solution/solve.py -------------------------------------------------------------------------------- /pwn/fables_of_aesop/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/fables_of_aesop/task.json -------------------------------------------------------------------------------- /pwn/pash/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/pash/Dockerfile -------------------------------------------------------------------------------- /pwn/pash/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/pash/challenge/Makefile -------------------------------------------------------------------------------- /pwn/pash/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | KosenCTF{d1d_u_n0t1c3_th3r3_3x1sts_2_s0lut10ns?} 2 | -------------------------------------------------------------------------------- /pwn/pash/challenge/pash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/pash/challenge/pash -------------------------------------------------------------------------------- /pwn/pash/challenge/pash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/pash/challenge/pash.rs -------------------------------------------------------------------------------- /pwn/pash/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/pash/docker-compose.yml -------------------------------------------------------------------------------- /pwn/pash/solution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/pash/solution/Dockerfile -------------------------------------------------------------------------------- /pwn/pash/solution/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/pash/solution/docker-compose.yml -------------------------------------------------------------------------------- /pwn/pash/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/pash/solution/solve.py -------------------------------------------------------------------------------- /pwn/pash/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/pwn/pash/task.json -------------------------------------------------------------------------------- /reversing/harmagedon/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/harmagedon/challenge/Makefile -------------------------------------------------------------------------------- /reversing/harmagedon/challenge/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/harmagedon/challenge/gen.py -------------------------------------------------------------------------------- /reversing/harmagedon/challenge/template.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/harmagedon/challenge/template.asm -------------------------------------------------------------------------------- /reversing/harmagedon/distfiles/harmagedon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/harmagedon/distfiles/harmagedon -------------------------------------------------------------------------------- /reversing/harmagedon/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/harmagedon/solution/solve.py -------------------------------------------------------------------------------- /reversing/harmagedon/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/harmagedon/task.json -------------------------------------------------------------------------------- /reversing/in_question/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/in_question/challenge/Makefile -------------------------------------------------------------------------------- /reversing/in_question/challenge/Mod-ELF-Symbol/mod-elf-symbol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/in_question/challenge/Mod-ELF-Symbol/mod-elf-symbol -------------------------------------------------------------------------------- /reversing/in_question/challenge/corrupt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/in_question/challenge/corrupt.py -------------------------------------------------------------------------------- /reversing/in_question/challenge/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/in_question/challenge/gen.py -------------------------------------------------------------------------------- /reversing/in_question/challenge/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/in_question/challenge/main.c -------------------------------------------------------------------------------- /reversing/in_question/challenge/modify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/in_question/challenge/modify.py -------------------------------------------------------------------------------- /reversing/in_question/distfiles/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/in_question/distfiles/chall -------------------------------------------------------------------------------- /reversing/in_question/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/in_question/solution/solve.py -------------------------------------------------------------------------------- /reversing/in_question/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/in_question/task.json -------------------------------------------------------------------------------- /reversing/stratum/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/stratum/challenge/Makefile -------------------------------------------------------------------------------- /reversing/stratum/challenge/main.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/stratum/challenge/main.S -------------------------------------------------------------------------------- /reversing/stratum/distfiles/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/stratum/distfiles/chall -------------------------------------------------------------------------------- /reversing/stratum/distfiles/chall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/stratum/distfiles/chall.sh -------------------------------------------------------------------------------- /reversing/stratum/distfiles/flag.enc: -------------------------------------------------------------------------------- 1 | cmfhnfgjclgjfmjh/>&pfYn m$% 8nmksklmklfmhkvzm3Vm'R4D.> >dhkmhhfjhvmfzbgm?gV#7!v`qtLK!asnhkdhfksanhbxaay>17/IJe4R{ve -------------------------------------------------------------------------------- /reversing/stratum/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/stratum/solution/solve.py -------------------------------------------------------------------------------- /reversing/stratum/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/stratum/task.json -------------------------------------------------------------------------------- /reversing/trilemma/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/trilemma/challenge/Makefile -------------------------------------------------------------------------------- /reversing/trilemma/challenge/citizen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/trilemma/challenge/citizen.c -------------------------------------------------------------------------------- /reversing/trilemma/challenge/emperor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/trilemma/challenge/emperor.c -------------------------------------------------------------------------------- /reversing/trilemma/challenge/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/trilemma/challenge/gen.py -------------------------------------------------------------------------------- /reversing/trilemma/challenge/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/trilemma/challenge/main.c -------------------------------------------------------------------------------- /reversing/trilemma/challenge/slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/trilemma/challenge/slave.c -------------------------------------------------------------------------------- /reversing/trilemma/distfiles/libcitizen.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/trilemma/distfiles/libcitizen.so -------------------------------------------------------------------------------- /reversing/trilemma/distfiles/libemperor.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/trilemma/distfiles/libemperor.so -------------------------------------------------------------------------------- /reversing/trilemma/distfiles/libslave.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/trilemma/distfiles/libslave.so -------------------------------------------------------------------------------- /reversing/trilemma/distfiles/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/trilemma/distfiles/main.c -------------------------------------------------------------------------------- /reversing/trilemma/solution/solve01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/trilemma/solution/solve01.py -------------------------------------------------------------------------------- /reversing/trilemma/solution/solve02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/trilemma/solution/solve02.py -------------------------------------------------------------------------------- /reversing/trilemma/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/reversing/trilemma/task.json -------------------------------------------------------------------------------- /web/just_sqli/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/InterKosenCTF2020-challenges/HEAD/web/just_sqli/Dockerfile -------------------------------------------------------------------------------- /web/just_sqli/challenge/flag.php: -------------------------------------------------------------------------------- 1 |