├── .gitignore ├── LICENSE ├── README.md ├── crypto ├── README.md ├── RSA1 │ ├── README.md │ ├── RSA1.txt │ ├── challenge.yml │ └── solution │ │ ├── README.md │ │ └── exploit.py ├── RSA2 │ ├── README.md │ ├── RSA2.txt │ ├── challenge.yml │ └── solution │ │ ├── README.md │ │ └── exploit.py ├── Unrecoverable │ ├── README.md │ ├── challenge.py │ ├── challenge.yml │ ├── secret.py │ └── solution │ │ ├── README.md │ │ └── solve.py ├── Xoring_is_Caring │ ├── README.md │ ├── challenge.yml │ ├── enc.txt │ └── solution │ │ ├── README.md │ │ └── exploit.py └── ebg-is-fun │ ├── README.md │ ├── challenge.yml │ └── solution │ └── README.md ├── forensics ├── README.md ├── haystack │ ├── README.md │ ├── challenge.yml │ ├── challenge │ │ └── haystack.bin │ └── solution │ │ └── README.md ├── hide-and-hide │ ├── README.md │ ├── challenge.yml │ ├── logo.png │ └── solution │ │ └── README.md ├── hills │ ├── README.md │ ├── challenge.yml │ ├── green-hills.png │ ├── include │ │ ├── flag.png │ │ ├── green-hills.png │ │ ├── script.py │ │ └── zip.gz │ └── solution │ │ └── README.md └── wildshark │ ├── README.md │ ├── capture.pcapng │ ├── challenge.yml │ ├── include │ ├── flag │ └── src.c │ └── solution │ └── README.md ├── linux ├── just-binbash │ ├── Dockerfile │ ├── README.md │ ├── challenge.yml │ ├── docker-compose.yml │ ├── flag.txt │ ├── solution │ │ └── README.md │ └── sshd_config ├── linux1 │ ├── Dockerfile │ ├── README.md │ ├── challenge.yml │ ├── challenge │ │ ├── flag.txt │ │ └── perms │ ├── docker-compose.yml │ └── solution │ │ └── README.md ├── linux2 │ ├── Dockerfile │ ├── README.md │ ├── challenge.yml │ ├── docker-compose.yml │ └── solution │ │ └── README.md └── linux3 │ ├── Dockerfile │ ├── README.md │ ├── challenge.yml │ ├── challenge │ ├── flag.txt │ ├── perms │ └── read.py │ ├── docker-compose.yml │ └── solution │ ├── README.md │ └── solution.sh ├── misc ├── README.md ├── cant-see-0x0 │ ├── Dockerfile │ ├── README.md │ ├── challenge.yml │ ├── docker-compose.yml │ ├── entrypoint.sh │ ├── flag.txt │ ├── shell.sh │ └── solution │ │ └── README.md ├── cant-see-0x1 │ ├── Dockerfile │ ├── README.md │ ├── challenge.yml │ ├── docker-compose.yml │ ├── entrypoint.sh │ ├── flag.txt │ ├── shell.sh │ └── solution │ │ └── README.md └── sos │ ├── README.md │ ├── challenge.yml │ ├── message.txt │ └── solution │ └── README.md ├── programming ├── README.md └── sudoku │ ├── Dockerfile │ ├── README.md │ ├── challenge.yml │ ├── challenge │ ├── run.sh │ └── sudoku.py │ ├── docker-compose.yml │ └── solution │ ├── README.md │ ├── board_template.py │ └── xpl.py ├── pwn ├── README.md ├── crashini-0x0 │ ├── Dockerfile │ ├── README.md │ ├── challenge.yml │ ├── challenge │ │ ├── crashini │ │ ├── flag1.txt │ │ ├── flag2.txt │ │ ├── flag3.txt │ │ └── run.sh │ ├── docker-compose.yml │ ├── solution │ │ └── README.md │ └── src │ │ ├── Makefile │ │ └── crashini.c ├── crashini-0x1 │ ├── README.md │ ├── challenge.yml │ └── solution │ │ └── README.md ├── crashini-0x2 │ ├── README.md │ ├── challenge.yml │ └── solution │ │ ├── README.md │ │ └── xpl.py ├── formatini │ ├── Dockerfile │ ├── README.md │ ├── challenge.yml │ ├── challenge │ │ ├── flag.txt │ │ ├── formatini │ │ └── run.sh │ ├── docker-compose.yml │ ├── solution │ │ ├── README.md │ │ └── xpl.py │ └── src │ │ ├── Makefile │ │ └── formatini.c └── www │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── challenge.yml │ ├── challenge │ ├── entrypoint.sh │ ├── flag.txt │ └── www │ ├── docker-compose.yml │ ├── lib │ └── libc-2.27.so │ ├── solution │ ├── README.md │ ├── flag.txt │ ├── libc-2.27.so │ ├── solve.py │ └── www │ ├── src │ └── www.c │ └── www │ ├── connect.sh │ ├── libc-2.27.so │ └── www ├── reverse ├── README.md ├── crackini │ ├── README.md │ ├── challenge.yml │ ├── challenge │ │ └── crackini │ ├── solution │ │ └── README.md │ └── src │ │ ├── Makefile │ │ ├── crackini.c │ │ ├── flag.txt │ │ ├── makechall.py │ │ └── shellcode.asm ├── decode_me │ ├── README.md │ ├── challenge.yml │ ├── program │ └── solution │ │ ├── Makefile │ │ ├── README.md │ │ ├── functions.asm │ │ ├── gen_flag.rb │ │ ├── letter.txt │ │ └── main.c ├── memfrob │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── challenge.yml │ ├── challenge │ │ ├── entrypoint.sh │ │ ├── flag.txt │ │ └── memfrob │ ├── docker-compose.yml │ ├── memfrob-28f22a13f0b86c2c3238b77670568c92.zip │ ├── solution │ │ ├── README.md │ │ └── solve.py │ └── src │ │ └── memfrob.c └── tok │ ├── README.md │ ├── challenge.yml │ ├── solution │ └── README.md │ └── tok ├── web ├── README.md ├── inspect-me │ ├── Dockerfile │ ├── README.md │ ├── challenge.yml │ ├── docker-compose.yml │ ├── index.html │ ├── nginx.conf │ └── solution │ │ └── README.md ├── my-first-sqli │ ├── Dockerfile │ ├── README.md │ ├── app │ │ ├── Gemfile │ │ ├── app.rb │ │ ├── sqli.db │ │ └── views │ │ │ ├── flag.erb │ │ │ └── login.erb │ ├── challenge.yml │ ├── docker-compose.yml │ └── solution │ │ └── README.md ├── post-the-get │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── app │ │ ├── app.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── css │ │ │ │ └── style.css │ │ │ └── js │ │ │ │ └── file.js │ │ └── views │ │ │ ├── gets.html │ │ │ └── index.html │ ├── challenge.yml │ ├── docker-compose.yml │ └── solution │ │ └── README.md ├── sqli-0x1 │ ├── Dockerfile │ ├── README.md │ ├── challenge.yml │ ├── challenge │ │ ├── flag.php │ │ ├── index.php │ │ └── setup.php │ ├── docker-compose.yml │ └── solution │ │ ├── README.md │ │ └── xpl.py └── sqli-0x2 │ ├── README.md │ ├── challenge.yml │ └── solution │ ├── README.md │ └── xpl.py └── welcome ├── README.md ├── my-first-netcat ├── Dockerfile ├── README.md ├── challenge.yml ├── docker-compose.yml ├── run.sh └── solution │ └── README.md └── welcome ├── README.md ├── challenge.yml └── solution └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/README.md -------------------------------------------------------------------------------- /crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/README.md -------------------------------------------------------------------------------- /crypto/RSA1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/RSA1/README.md -------------------------------------------------------------------------------- /crypto/RSA1/RSA1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/RSA1/RSA1.txt -------------------------------------------------------------------------------- /crypto/RSA1/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/RSA1/challenge.yml -------------------------------------------------------------------------------- /crypto/RSA1/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/RSA1/solution/README.md -------------------------------------------------------------------------------- /crypto/RSA1/solution/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/RSA1/solution/exploit.py -------------------------------------------------------------------------------- /crypto/RSA2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/RSA2/README.md -------------------------------------------------------------------------------- /crypto/RSA2/RSA2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/RSA2/RSA2.txt -------------------------------------------------------------------------------- /crypto/RSA2/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/RSA2/challenge.yml -------------------------------------------------------------------------------- /crypto/RSA2/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/RSA2/solution/README.md -------------------------------------------------------------------------------- /crypto/RSA2/solution/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/RSA2/solution/exploit.py -------------------------------------------------------------------------------- /crypto/Unrecoverable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/Unrecoverable/README.md -------------------------------------------------------------------------------- /crypto/Unrecoverable/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/Unrecoverable/challenge.py -------------------------------------------------------------------------------- /crypto/Unrecoverable/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/Unrecoverable/challenge.yml -------------------------------------------------------------------------------- /crypto/Unrecoverable/secret.py: -------------------------------------------------------------------------------- 1 | flag = "shellmates{f1x1ng_th3_s33d_1s_d4ng3r10us}" -------------------------------------------------------------------------------- /crypto/Unrecoverable/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/Unrecoverable/solution/README.md -------------------------------------------------------------------------------- /crypto/Unrecoverable/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/Unrecoverable/solution/solve.py -------------------------------------------------------------------------------- /crypto/Xoring_is_Caring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/Xoring_is_Caring/README.md -------------------------------------------------------------------------------- /crypto/Xoring_is_Caring/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/Xoring_is_Caring/challenge.yml -------------------------------------------------------------------------------- /crypto/Xoring_is_Caring/enc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/Xoring_is_Caring/enc.txt -------------------------------------------------------------------------------- /crypto/Xoring_is_Caring/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/Xoring_is_Caring/solution/README.md -------------------------------------------------------------------------------- /crypto/Xoring_is_Caring/solution/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/Xoring_is_Caring/solution/exploit.py -------------------------------------------------------------------------------- /crypto/ebg-is-fun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/ebg-is-fun/README.md -------------------------------------------------------------------------------- /crypto/ebg-is-fun/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/ebg-is-fun/challenge.yml -------------------------------------------------------------------------------- /crypto/ebg-is-fun/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/crypto/ebg-is-fun/solution/README.md -------------------------------------------------------------------------------- /forensics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/forensics/README.md -------------------------------------------------------------------------------- /forensics/haystack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/forensics/haystack/README.md -------------------------------------------------------------------------------- /forensics/haystack/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/forensics/haystack/challenge.yml -------------------------------------------------------------------------------- /forensics/haystack/challenge/haystack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/forensics/haystack/challenge/haystack.bin -------------------------------------------------------------------------------- /forensics/haystack/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/forensics/haystack/solution/README.md -------------------------------------------------------------------------------- /forensics/hide-and-hide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/forensics/hide-and-hide/README.md -------------------------------------------------------------------------------- /forensics/hide-and-hide/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/forensics/hide-and-hide/challenge.yml -------------------------------------------------------------------------------- /forensics/hide-and-hide/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/forensics/hide-and-hide/logo.png -------------------------------------------------------------------------------- /forensics/hide-and-hide/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/forensics/hide-and-hide/solution/README.md -------------------------------------------------------------------------------- /forensics/hills/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/forensics/hills/README.md -------------------------------------------------------------------------------- /forensics/hills/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/forensics/hills/challenge.yml -------------------------------------------------------------------------------- /forensics/hills/green-hills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/forensics/hills/green-hills.png -------------------------------------------------------------------------------- /forensics/hills/include/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/forensics/hills/include/flag.png -------------------------------------------------------------------------------- /forensics/hills/include/green-hills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/forensics/hills/include/green-hills.png -------------------------------------------------------------------------------- /forensics/hills/include/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/forensics/hills/include/script.py -------------------------------------------------------------------------------- /forensics/hills/include/zip.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/forensics/hills/include/zip.gz -------------------------------------------------------------------------------- /forensics/hills/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/forensics/hills/solution/README.md -------------------------------------------------------------------------------- /forensics/wildshark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/forensics/wildshark/README.md -------------------------------------------------------------------------------- /forensics/wildshark/capture.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/forensics/wildshark/capture.pcapng -------------------------------------------------------------------------------- /forensics/wildshark/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/forensics/wildshark/challenge.yml -------------------------------------------------------------------------------- /forensics/wildshark/include/flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/forensics/wildshark/include/flag -------------------------------------------------------------------------------- /forensics/wildshark/include/src.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/forensics/wildshark/include/src.c -------------------------------------------------------------------------------- /forensics/wildshark/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/forensics/wildshark/solution/README.md -------------------------------------------------------------------------------- /linux/just-binbash/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/just-binbash/Dockerfile -------------------------------------------------------------------------------- /linux/just-binbash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/just-binbash/README.md -------------------------------------------------------------------------------- /linux/just-binbash/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/just-binbash/challenge.yml -------------------------------------------------------------------------------- /linux/just-binbash/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/just-binbash/docker-compose.yml -------------------------------------------------------------------------------- /linux/just-binbash/flag.txt: -------------------------------------------------------------------------------- 1 | shellmates{sH3ll_built1ns_FTW} 2 | -------------------------------------------------------------------------------- /linux/just-binbash/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/just-binbash/solution/README.md -------------------------------------------------------------------------------- /linux/just-binbash/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/just-binbash/sshd_config -------------------------------------------------------------------------------- /linux/linux1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/linux1/Dockerfile -------------------------------------------------------------------------------- /linux/linux1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/linux1/README.md -------------------------------------------------------------------------------- /linux/linux1/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/linux1/challenge.yml -------------------------------------------------------------------------------- /linux/linux1/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | shellmates{This_k1D_KnOws_how_We_d0_7h1ng5_h3R3} 2 | -------------------------------------------------------------------------------- /linux/linux1/challenge/perms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/linux1/challenge/perms -------------------------------------------------------------------------------- /linux/linux1/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/linux1/docker-compose.yml -------------------------------------------------------------------------------- /linux/linux1/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/linux1/solution/README.md -------------------------------------------------------------------------------- /linux/linux2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/linux2/Dockerfile -------------------------------------------------------------------------------- /linux/linux2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/linux2/README.md -------------------------------------------------------------------------------- /linux/linux2/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/linux2/challenge.yml -------------------------------------------------------------------------------- /linux/linux2/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/linux2/docker-compose.yml -------------------------------------------------------------------------------- /linux/linux2/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/linux2/solution/README.md -------------------------------------------------------------------------------- /linux/linux3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/linux3/Dockerfile -------------------------------------------------------------------------------- /linux/linux3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/linux3/README.md -------------------------------------------------------------------------------- /linux/linux3/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/linux3/challenge.yml -------------------------------------------------------------------------------- /linux/linux3/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | shellmates{Wh0_ThouGht_SSSYM_l1nk5_cAn_C4uSe_Pr0bleM$} 2 | -------------------------------------------------------------------------------- /linux/linux3/challenge/perms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/linux3/challenge/perms -------------------------------------------------------------------------------- /linux/linux3/challenge/read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/linux3/challenge/read.py -------------------------------------------------------------------------------- /linux/linux3/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/linux3/docker-compose.yml -------------------------------------------------------------------------------- /linux/linux3/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/linux3/solution/README.md -------------------------------------------------------------------------------- /linux/linux3/solution/solution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/linux/linux3/solution/solution.sh -------------------------------------------------------------------------------- /misc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/misc/README.md -------------------------------------------------------------------------------- /misc/cant-see-0x0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/misc/cant-see-0x0/Dockerfile -------------------------------------------------------------------------------- /misc/cant-see-0x0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/misc/cant-see-0x0/README.md -------------------------------------------------------------------------------- /misc/cant-see-0x0/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/misc/cant-see-0x0/challenge.yml -------------------------------------------------------------------------------- /misc/cant-see-0x0/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/misc/cant-see-0x0/docker-compose.yml -------------------------------------------------------------------------------- /misc/cant-see-0x0/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/misc/cant-see-0x0/entrypoint.sh -------------------------------------------------------------------------------- /misc/cant-see-0x0/flag.txt: -------------------------------------------------------------------------------- 1 | shellmates{GOo0Od_wARmuP_F0r_Wh47$_n3xT} 2 | -------------------------------------------------------------------------------- /misc/cant-see-0x0/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/misc/cant-see-0x0/shell.sh -------------------------------------------------------------------------------- /misc/cant-see-0x0/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/misc/cant-see-0x0/solution/README.md -------------------------------------------------------------------------------- /misc/cant-see-0x1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/misc/cant-see-0x1/Dockerfile -------------------------------------------------------------------------------- /misc/cant-see-0x1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/misc/cant-see-0x1/README.md -------------------------------------------------------------------------------- /misc/cant-see-0x1/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/misc/cant-see-0x1/challenge.yml -------------------------------------------------------------------------------- /misc/cant-see-0x1/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/misc/cant-see-0x1/docker-compose.yml -------------------------------------------------------------------------------- /misc/cant-see-0x1/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/misc/cant-see-0x1/entrypoint.sh -------------------------------------------------------------------------------- /misc/cant-see-0x1/flag.txt: -------------------------------------------------------------------------------- 1 | shellmates{IO_reDIr3CtI0N_i$_a1W4y$_ImPOr7Ant} 2 | -------------------------------------------------------------------------------- /misc/cant-see-0x1/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/misc/cant-see-0x1/shell.sh -------------------------------------------------------------------------------- /misc/cant-see-0x1/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/misc/cant-see-0x1/solution/README.md -------------------------------------------------------------------------------- /misc/sos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/misc/sos/README.md -------------------------------------------------------------------------------- /misc/sos/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/misc/sos/challenge.yml -------------------------------------------------------------------------------- /misc/sos/message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/misc/sos/message.txt -------------------------------------------------------------------------------- /misc/sos/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/misc/sos/solution/README.md -------------------------------------------------------------------------------- /programming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/programming/README.md -------------------------------------------------------------------------------- /programming/sudoku/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/programming/sudoku/Dockerfile -------------------------------------------------------------------------------- /programming/sudoku/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/programming/sudoku/README.md -------------------------------------------------------------------------------- /programming/sudoku/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/programming/sudoku/challenge.yml -------------------------------------------------------------------------------- /programming/sudoku/challenge/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/programming/sudoku/challenge/run.sh -------------------------------------------------------------------------------- /programming/sudoku/challenge/sudoku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/programming/sudoku/challenge/sudoku.py -------------------------------------------------------------------------------- /programming/sudoku/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/programming/sudoku/docker-compose.yml -------------------------------------------------------------------------------- /programming/sudoku/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/programming/sudoku/solution/README.md -------------------------------------------------------------------------------- /programming/sudoku/solution/board_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/programming/sudoku/solution/board_template.py -------------------------------------------------------------------------------- /programming/sudoku/solution/xpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/programming/sudoku/solution/xpl.py -------------------------------------------------------------------------------- /pwn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/README.md -------------------------------------------------------------------------------- /pwn/crashini-0x0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/crashini-0x0/Dockerfile -------------------------------------------------------------------------------- /pwn/crashini-0x0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/crashini-0x0/README.md -------------------------------------------------------------------------------- /pwn/crashini-0x0/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/crashini-0x0/challenge.yml -------------------------------------------------------------------------------- /pwn/crashini-0x0/challenge/crashini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/crashini-0x0/challenge/crashini -------------------------------------------------------------------------------- /pwn/crashini-0x0/challenge/flag1.txt: -------------------------------------------------------------------------------- 1 | shellmates{g00d_j0b_y0u_cr4sh3d_th3_pr0gram} 2 | -------------------------------------------------------------------------------- /pwn/crashini-0x0/challenge/flag2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/crashini-0x0/challenge/flag2.txt -------------------------------------------------------------------------------- /pwn/crashini-0x0/challenge/flag3.txt: -------------------------------------------------------------------------------- 1 | shellmates{sm4sh1ng_th3_st4ck_f0r_fun_4nd_pr0f1t} 2 | -------------------------------------------------------------------------------- /pwn/crashini-0x0/challenge/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/crashini-0x0/challenge/run.sh -------------------------------------------------------------------------------- /pwn/crashini-0x0/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/crashini-0x0/docker-compose.yml -------------------------------------------------------------------------------- /pwn/crashini-0x0/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/crashini-0x0/solution/README.md -------------------------------------------------------------------------------- /pwn/crashini-0x0/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/crashini-0x0/src/Makefile -------------------------------------------------------------------------------- /pwn/crashini-0x0/src/crashini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/crashini-0x0/src/crashini.c -------------------------------------------------------------------------------- /pwn/crashini-0x1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/crashini-0x1/README.md -------------------------------------------------------------------------------- /pwn/crashini-0x1/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/crashini-0x1/challenge.yml -------------------------------------------------------------------------------- /pwn/crashini-0x1/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/crashini-0x1/solution/README.md -------------------------------------------------------------------------------- /pwn/crashini-0x2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/crashini-0x2/README.md -------------------------------------------------------------------------------- /pwn/crashini-0x2/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/crashini-0x2/challenge.yml -------------------------------------------------------------------------------- /pwn/crashini-0x2/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/crashini-0x2/solution/README.md -------------------------------------------------------------------------------- /pwn/crashini-0x2/solution/xpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/crashini-0x2/solution/xpl.py -------------------------------------------------------------------------------- /pwn/formatini/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/formatini/Dockerfile -------------------------------------------------------------------------------- /pwn/formatini/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/formatini/README.md -------------------------------------------------------------------------------- /pwn/formatini/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/formatini/challenge.yml -------------------------------------------------------------------------------- /pwn/formatini/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | shellmates{0h_s%n4p!_1_d1d%n't_%n0w_th1s_w0uld_c4us3_m3_tr0ubl3} 2 | -------------------------------------------------------------------------------- /pwn/formatini/challenge/formatini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/formatini/challenge/formatini -------------------------------------------------------------------------------- /pwn/formatini/challenge/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/formatini/challenge/run.sh -------------------------------------------------------------------------------- /pwn/formatini/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/formatini/docker-compose.yml -------------------------------------------------------------------------------- /pwn/formatini/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/formatini/solution/README.md -------------------------------------------------------------------------------- /pwn/formatini/solution/xpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/formatini/solution/xpl.py -------------------------------------------------------------------------------- /pwn/formatini/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/formatini/src/Makefile -------------------------------------------------------------------------------- /pwn/formatini/src/formatini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/formatini/src/formatini.c -------------------------------------------------------------------------------- /pwn/www/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/www/Dockerfile -------------------------------------------------------------------------------- /pwn/www/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/www/Makefile -------------------------------------------------------------------------------- /pwn/www/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/www/README.md -------------------------------------------------------------------------------- /pwn/www/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/www/challenge.yml -------------------------------------------------------------------------------- /pwn/www/challenge/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/www/challenge/entrypoint.sh -------------------------------------------------------------------------------- /pwn/www/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | shellmates{WrITE_Wh44AA4AT_WH3r3} 2 | -------------------------------------------------------------------------------- /pwn/www/challenge/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/www/challenge/www -------------------------------------------------------------------------------- /pwn/www/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/www/docker-compose.yml -------------------------------------------------------------------------------- /pwn/www/lib/libc-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/www/lib/libc-2.27.so -------------------------------------------------------------------------------- /pwn/www/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/www/solution/README.md -------------------------------------------------------------------------------- /pwn/www/solution/flag.txt: -------------------------------------------------------------------------------- 1 | shellmates{WrITE_Wh44AA4AT_WH3r3} 2 | -------------------------------------------------------------------------------- /pwn/www/solution/libc-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/www/solution/libc-2.27.so -------------------------------------------------------------------------------- /pwn/www/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/www/solution/solve.py -------------------------------------------------------------------------------- /pwn/www/solution/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/www/solution/www -------------------------------------------------------------------------------- /pwn/www/src/www.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/www/src/www.c -------------------------------------------------------------------------------- /pwn/www/www/connect.sh: -------------------------------------------------------------------------------- 1 | nc 138.68.101.239 1337 2 | -------------------------------------------------------------------------------- /pwn/www/www/libc-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/www/www/libc-2.27.so -------------------------------------------------------------------------------- /pwn/www/www/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/pwn/www/www/www -------------------------------------------------------------------------------- /reverse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/README.md -------------------------------------------------------------------------------- /reverse/crackini/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/crackini/README.md -------------------------------------------------------------------------------- /reverse/crackini/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/crackini/challenge.yml -------------------------------------------------------------------------------- /reverse/crackini/challenge/crackini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/crackini/challenge/crackini -------------------------------------------------------------------------------- /reverse/crackini/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/crackini/solution/README.md -------------------------------------------------------------------------------- /reverse/crackini/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/crackini/src/Makefile -------------------------------------------------------------------------------- /reverse/crackini/src/crackini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/crackini/src/crackini.c -------------------------------------------------------------------------------- /reverse/crackini/src/flag.txt: -------------------------------------------------------------------------------- 1 | shellmates{PPTAH-VOCBB-IEAIC-15UXU-2TDOK-4FOBQ} 2 | -------------------------------------------------------------------------------- /reverse/crackini/src/makechall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/crackini/src/makechall.py -------------------------------------------------------------------------------- /reverse/crackini/src/shellcode.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/crackini/src/shellcode.asm -------------------------------------------------------------------------------- /reverse/decode_me/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/decode_me/README.md -------------------------------------------------------------------------------- /reverse/decode_me/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/decode_me/challenge.yml -------------------------------------------------------------------------------- /reverse/decode_me/program: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/decode_me/program -------------------------------------------------------------------------------- /reverse/decode_me/solution/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/decode_me/solution/Makefile -------------------------------------------------------------------------------- /reverse/decode_me/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/decode_me/solution/README.md -------------------------------------------------------------------------------- /reverse/decode_me/solution/functions.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/decode_me/solution/functions.asm -------------------------------------------------------------------------------- /reverse/decode_me/solution/gen_flag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/decode_me/solution/gen_flag.rb -------------------------------------------------------------------------------- /reverse/decode_me/solution/letter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/decode_me/solution/letter.txt -------------------------------------------------------------------------------- /reverse/decode_me/solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/decode_me/solution/main.c -------------------------------------------------------------------------------- /reverse/memfrob/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/memfrob/Dockerfile -------------------------------------------------------------------------------- /reverse/memfrob/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/memfrob/Makefile -------------------------------------------------------------------------------- /reverse/memfrob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/memfrob/README.md -------------------------------------------------------------------------------- /reverse/memfrob/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/memfrob/challenge.yml -------------------------------------------------------------------------------- /reverse/memfrob/challenge/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/memfrob/challenge/entrypoint.sh -------------------------------------------------------------------------------- /reverse/memfrob/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | shellmates{mEmFRob_i$_JusT_$1mplE_xOoOor} 2 | -------------------------------------------------------------------------------- /reverse/memfrob/challenge/memfrob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/memfrob/challenge/memfrob -------------------------------------------------------------------------------- /reverse/memfrob/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/memfrob/docker-compose.yml -------------------------------------------------------------------------------- /reverse/memfrob/memfrob-28f22a13f0b86c2c3238b77670568c92.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/memfrob/memfrob-28f22a13f0b86c2c3238b77670568c92.zip -------------------------------------------------------------------------------- /reverse/memfrob/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/memfrob/solution/README.md -------------------------------------------------------------------------------- /reverse/memfrob/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/memfrob/solution/solve.py -------------------------------------------------------------------------------- /reverse/memfrob/src/memfrob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/memfrob/src/memfrob.c -------------------------------------------------------------------------------- /reverse/tok/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/tok/README.md -------------------------------------------------------------------------------- /reverse/tok/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/tok/challenge.yml -------------------------------------------------------------------------------- /reverse/tok/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/tok/solution/README.md -------------------------------------------------------------------------------- /reverse/tok/tok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/reverse/tok/tok -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/README.md -------------------------------------------------------------------------------- /web/inspect-me/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/inspect-me/Dockerfile -------------------------------------------------------------------------------- /web/inspect-me/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/inspect-me/README.md -------------------------------------------------------------------------------- /web/inspect-me/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/inspect-me/challenge.yml -------------------------------------------------------------------------------- /web/inspect-me/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/inspect-me/docker-compose.yml -------------------------------------------------------------------------------- /web/inspect-me/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/inspect-me/index.html -------------------------------------------------------------------------------- /web/inspect-me/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/inspect-me/nginx.conf -------------------------------------------------------------------------------- /web/inspect-me/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/inspect-me/solution/README.md -------------------------------------------------------------------------------- /web/my-first-sqli/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/my-first-sqli/Dockerfile -------------------------------------------------------------------------------- /web/my-first-sqli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/my-first-sqli/README.md -------------------------------------------------------------------------------- /web/my-first-sqli/app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/my-first-sqli/app/Gemfile -------------------------------------------------------------------------------- /web/my-first-sqli/app/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/my-first-sqli/app/app.rb -------------------------------------------------------------------------------- /web/my-first-sqli/app/sqli.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/my-first-sqli/app/sqli.db -------------------------------------------------------------------------------- /web/my-first-sqli/app/views/flag.erb: -------------------------------------------------------------------------------- 1 | shellmates{SQLi_goeS_BrrRrRR} 2 | -------------------------------------------------------------------------------- /web/my-first-sqli/app/views/login.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/my-first-sqli/app/views/login.erb -------------------------------------------------------------------------------- /web/my-first-sqli/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/my-first-sqli/challenge.yml -------------------------------------------------------------------------------- /web/my-first-sqli/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/my-first-sqli/docker-compose.yml -------------------------------------------------------------------------------- /web/my-first-sqli/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/my-first-sqli/solution/README.md -------------------------------------------------------------------------------- /web/post-the-get/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | npm-debug.log 4 | .env 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /web/post-the-get/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/post-the-get/Dockerfile -------------------------------------------------------------------------------- /web/post-the-get/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/post-the-get/README.md -------------------------------------------------------------------------------- /web/post-the-get/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/post-the-get/app/app.js -------------------------------------------------------------------------------- /web/post-the-get/app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/post-the-get/app/package-lock.json -------------------------------------------------------------------------------- /web/post-the-get/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/post-the-get/app/package.json -------------------------------------------------------------------------------- /web/post-the-get/app/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/post-the-get/app/public/css/style.css -------------------------------------------------------------------------------- /web/post-the-get/app/public/js/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/post-the-get/app/public/js/file.js -------------------------------------------------------------------------------- /web/post-the-get/app/views/gets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/post-the-get/app/views/gets.html -------------------------------------------------------------------------------- /web/post-the-get/app/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/post-the-get/app/views/index.html -------------------------------------------------------------------------------- /web/post-the-get/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/post-the-get/challenge.yml -------------------------------------------------------------------------------- /web/post-the-get/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/post-the-get/docker-compose.yml -------------------------------------------------------------------------------- /web/post-the-get/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/post-the-get/solution/README.md -------------------------------------------------------------------------------- /web/sqli-0x1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/sqli-0x1/Dockerfile -------------------------------------------------------------------------------- /web/sqli-0x1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/sqli-0x1/README.md -------------------------------------------------------------------------------- /web/sqli-0x1/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/sqli-0x1/challenge.yml -------------------------------------------------------------------------------- /web/sqli-0x1/challenge/flag.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /web/sqli-0x1/challenge/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/sqli-0x1/challenge/index.php -------------------------------------------------------------------------------- /web/sqli-0x1/challenge/setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/sqli-0x1/challenge/setup.php -------------------------------------------------------------------------------- /web/sqli-0x1/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/sqli-0x1/docker-compose.yml -------------------------------------------------------------------------------- /web/sqli-0x1/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/sqli-0x1/solution/README.md -------------------------------------------------------------------------------- /web/sqli-0x1/solution/xpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/sqli-0x1/solution/xpl.py -------------------------------------------------------------------------------- /web/sqli-0x2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/sqli-0x2/README.md -------------------------------------------------------------------------------- /web/sqli-0x2/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/sqli-0x2/challenge.yml -------------------------------------------------------------------------------- /web/sqli-0x2/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/sqli-0x2/solution/README.md -------------------------------------------------------------------------------- /web/sqli-0x2/solution/xpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/web/sqli-0x2/solution/xpl.py -------------------------------------------------------------------------------- /welcome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/welcome/README.md -------------------------------------------------------------------------------- /welcome/my-first-netcat/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/welcome/my-first-netcat/Dockerfile -------------------------------------------------------------------------------- /welcome/my-first-netcat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/welcome/my-first-netcat/README.md -------------------------------------------------------------------------------- /welcome/my-first-netcat/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/welcome/my-first-netcat/challenge.yml -------------------------------------------------------------------------------- /welcome/my-first-netcat/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/welcome/my-first-netcat/docker-compose.yml -------------------------------------------------------------------------------- /welcome/my-first-netcat/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/welcome/my-first-netcat/run.sh -------------------------------------------------------------------------------- /welcome/my-first-netcat/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/welcome/my-first-netcat/solution/README.md -------------------------------------------------------------------------------- /welcome/welcome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/welcome/welcome/README.md -------------------------------------------------------------------------------- /welcome/welcome/challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/welcome/welcome/challenge.yml -------------------------------------------------------------------------------- /welcome/welcome/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shellmates/HackINI-2k21-CTF-challenges/HEAD/welcome/welcome/solution/README.md --------------------------------------------------------------------------------