├── !alphabet ├── README.md ├── handout │ ├── Dockerfile │ ├── chal.py │ └── flag.txt ├── remote │ ├── Dockerfile │ ├── chal.py │ └── flag.txt └── solve │ ├── solve.c │ └── solve_expanded.c ├── .gitignore ├── 2call ├── README.md ├── handout │ ├── Dockerfile │ ├── chal.js │ └── flag.txt ├── remote │ ├── Dockerfile │ ├── chal.js │ └── flag.txt └── solve │ ├── README.md │ ├── gen.py │ ├── payload.js │ └── solve.py ├── MMM ├── README.md ├── handout │ ├── Dockerfile │ ├── docker-compose.yml │ ├── flag.txt │ ├── server.py │ ├── start.sh │ └── templates │ │ └── home.html ├── remote │ ├── Dockerfile │ ├── docker-compose.yml │ ├── flag.txt │ ├── server.py │ ├── start.sh │ └── templates │ │ └── home.html └── solve │ ├── README.md │ └── solve.py ├── SUS-Calculator ├── README.md ├── handout │ ├── Dockerfile │ ├── chal.rb │ └── flag.txt ├── remote │ ├── Dockerfile │ ├── chal.rb │ └── flag.txt └── solve │ └── README.md ├── befunge-breakout ├── README.md ├── handout │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── flag.txt │ ├── run.sh │ └── src │ │ ├── build.sh │ │ ├── cbi │ │ ├── cbi.c │ │ ├── cbi.h │ │ ├── cbi.o │ │ ├── delta.c │ │ ├── delta.h │ │ ├── delta.o │ │ ├── stack.c │ │ ├── stack.h │ │ ├── stack.o │ │ └── test │ │ ├── calc.bf │ │ └── hw.bf ├── remote │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── flag.txt │ ├── run.sh │ └── src │ │ ├── build.sh │ │ ├── cbi │ │ ├── cbi.c │ │ ├── cbi.h │ │ ├── cbi.o │ │ ├── delta.c │ │ ├── delta.h │ │ ├── delta.o │ │ ├── stack.c │ │ ├── stack.h │ │ ├── stack.o │ │ └── test │ │ ├── calc.bf │ │ └── hw.bf └── solve │ ├── README.md │ ├── ld-linux-x86-64.so.2 │ ├── libc.so.6 │ └── solve.py ├── blind-calc ├── README.md ├── remote │ ├── Dockerfile │ ├── blind.sh │ ├── flag.txt │ └── run.sh └── solve │ └── README.md ├── charredcoal ├── README.md ├── handout │ ├── Charcoal │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── TODO.md │ │ ├── __init__.py │ │ ├── ansiterm.py │ │ ├── appveyor.yml │ │ ├── astprocessor.py │ │ ├── charactertransformers.py │ │ ├── charcoal │ │ ├── charcoal.py │ │ ├── charcoaltoken.py │ │ ├── codepage.py │ │ ├── compression.py │ │ ├── direction.py │ │ ├── directiondictionaries.py │ │ ├── extras.py │ │ ├── extras │ │ │ └── chc │ │ ├── highlighters │ │ │ └── Charcoal.sublime-syntax │ │ ├── interpreterprocessor.py │ │ ├── requirements.txt │ │ ├── stringifierprocessor.py │ │ ├── test │ │ ├── test.py │ │ ├── tox.ini │ │ ├── tutor │ │ ├── tutor.py │ │ ├── unicodegrammars.py │ │ ├── verbosegrammars.py │ │ ├── verbosifierprocessor.py │ │ └── wolfram.py │ ├── Dockerfile │ ├── flag.txt │ └── main.py ├── remote │ ├── Charcoal │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── TODO.md │ │ ├── __init__.py │ │ ├── ansiterm.py │ │ ├── appveyor.yml │ │ ├── astprocessor.py │ │ ├── charactertransformers.py │ │ ├── charcoal │ │ ├── charcoal.py │ │ ├── charcoaltoken.py │ │ ├── codepage.py │ │ ├── compression.py │ │ ├── direction.py │ │ ├── directiondictionaries.py │ │ ├── extras.py │ │ ├── extras │ │ │ └── chc │ │ ├── highlighters │ │ │ └── Charcoal.sublime-syntax │ │ ├── interpreterprocessor.py │ │ ├── requirements.txt │ │ ├── stringifierprocessor.py │ │ ├── test │ │ ├── test.py │ │ ├── tox.ini │ │ ├── tutor │ │ ├── tutor.py │ │ ├── unicodegrammars.py │ │ ├── verbosegrammars.py │ │ ├── verbosifierprocessor.py │ │ └── wolfram.py │ ├── Dockerfile │ ├── flag.txt │ └── main.py └── solve │ └── README.md ├── filterd ├── README.md ├── handout │ ├── Dockerfile │ ├── chal.py │ └── flag.txt ├── remote │ ├── Dockerfile │ ├── chal.py │ └── flag.txt └── solve │ └── README.md ├── functional-programming ├── README.md ├── handout │ ├── Dockerfile │ ├── flag.txt │ └── main.py ├── remote │ ├── Dockerfile │ ├── flag.txt │ └── main.py └── solve │ ├── README.md │ ├── brute.c │ └── payload.txt ├── get-and-call ├── README.md ├── handout │ ├── Dockerfile │ ├── flag.txt │ └── main.py ├── remote │ ├── Dockerfile │ ├── flag.txt │ └── main.py └── solve │ ├── README.md │ ├── solve1.py │ └── solve2.py ├── impossible-maze ├── README.md └── solve │ ├── README.md │ └── images │ ├── blocked.png │ ├── io.png │ ├── partial_flag.png │ └── proc_list.png ├── jailguessr ├── README.md ├── handout │ └── image.png ├── remote │ ├── Dockerfile │ ├── flag.txt │ └── main.py └── solve │ └── README.md ├── jellyjail ├── README.md ├── handout │ ├── Dockerfile │ ├── flag.txt │ ├── jellylanguage │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── jelly │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── dictionary.py │ │ │ ├── interpreter.py │ │ │ └── utils.py │ │ ├── scripts │ │ │ └── jelly │ │ ├── setup.py │ │ └── utils │ │ │ ├── Makefile │ │ │ ├── findhash │ │ │ ├── findhash1.py │ │ │ └── findhash2.c │ └── main.py ├── remote │ ├── Dockerfile │ ├── flag.txt │ ├── jellylanguage │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── jelly │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── dictionary.py │ │ │ ├── interpreter.py │ │ │ └── utils.py │ │ ├── scripts │ │ │ └── jelly │ │ ├── setup.py │ │ └── utils │ │ │ ├── Makefile │ │ │ ├── findhash │ │ │ ├── findhash1.py │ │ │ └── findhash2.c │ └── main.py └── solve │ └── README.md ├── js-without-getattr ├── README.md ├── handout │ ├── Dockerfile │ ├── flag.txt │ ├── main.js │ └── package.json ├── remote │ ├── Dockerfile │ ├── flag.txt │ ├── main.js │ └── package.json └── solve │ └── README.md ├── last-message ├── .gitignore ├── README.md ├── handout │ ├── app │ │ ├── Dockerfile │ │ ├── account.py │ │ ├── app.py │ │ ├── index.html │ │ ├── requirements.txt │ │ └── static │ │ │ ├── default.jpg │ │ │ ├── index.css │ │ │ ├── index.py │ │ │ └── pyscript.json │ ├── bot │ │ ├── Dockerfile │ │ ├── bot.js │ │ ├── flag.txt │ │ └── run.sh │ └── docker-compose.yml ├── remote │ ├── app │ │ ├── Dockerfile │ │ ├── account.py │ │ ├── app.py │ │ ├── index.html │ │ ├── requirements.txt │ │ └── static │ │ │ ├── default.jpg │ │ │ ├── index.css │ │ │ ├── index.py │ │ │ └── pyscript.json │ ├── bot │ │ ├── Dockerfile │ │ ├── bot.js │ │ ├── flag.txt │ │ └── run.sh │ └── docker-compose.yml └── solve │ ├── exploit.py │ └── solve.html ├── lost-in-transit ├── README.md ├── handout │ ├── Dockerfile │ ├── flag.txt │ └── main.py ├── remote │ ├── Dockerfile │ ├── flag.txt │ └── main.py └── solve │ ├── README.md │ └── solve.py ├── mathjail ├── README.md ├── handout │ ├── Dockerfile │ ├── chal.py │ └── flag.txt ├── remote │ ├── Dockerfile │ ├── chal.py │ └── flag.txt └── solve │ ├── README.md │ └── solve.py ├── minieval-1 ├── README.md ├── handout │ ├── Dockerfile │ ├── flag.txt │ └── jail.pl ├── remote │ ├── Dockerfile │ ├── flag.txt │ └── jail.pl └── solve │ ├── README.md │ └── solve.txt ├── no-nonsense ├── README.md ├── handout │ ├── Dockerfile │ ├── flag.txt │ └── main.py ├── remote │ ├── Dockerfile │ ├── flag.txt │ └── main.py └── solve │ ├── payload.txt │ └── solve.py ├── parity-1 ├── README.md ├── handout │ ├── Dockerfile │ ├── flag.txt │ └── main.py ├── remote │ ├── Dockerfile │ ├── flag.txt │ └── main.py └── solve │ └── README.md ├── parity-2 ├── README.md ├── handout │ ├── Dockerfile │ ├── flag.txt │ └── main.py ├── remote │ ├── Dockerfile │ ├── flag.txt │ └── main.py └── solve │ └── README.md ├── parseltongue ├── README.md ├── handout │ ├── Dockerfile │ ├── chal.py │ └── flag.txt ├── remote │ ├── Dockerfile │ ├── chal.py │ └── flag.txt └── solve │ ├── README.md │ ├── gen-solve.py │ └── real-solve.py ├── pickled-magic ├── README.md ├── handout │ ├── Dockerfile │ ├── flag.txt │ └── main.py ├── remote │ ├── Dockerfile │ ├── flag.txt │ └── main.py └── solve │ ├── README.md │ └── solve.py ├── polyglo7quine ├── README.md ├── handout │ └── handout.py ├── remote │ ├── Dockerfile │ └── chal.cr └── solve │ └── README.md ├── respy-evil-challenge ├── README.md ├── handout │ ├── Dockerfile │ ├── flag.txt │ └── main.py └── remote │ ├── Dockerfile │ ├── flag.txt │ └── main.py ├── respy-nice-challenge ├── README.md ├── handout │ ├── Dockerfile │ ├── flag.txt │ └── main.py └── remote │ ├── Dockerfile │ ├── flag.txt │ └── main.py ├── ruby-on-jails ├── README.md ├── handout │ ├── Dockerfile │ ├── chal.rb │ └── flag.txt ├── remote │ ├── Dockerfile │ ├── chal.rb │ └── flag.txt └── solve │ └── README.md ├── smiley-faiss ├── README.md ├── handout │ ├── Dockerfile │ ├── flag.txt │ ├── main.py │ └── safernumpy │ │ ├── __init__.py │ │ └── core │ │ ├── __init__.py │ │ └── multiarray │ │ └── __init__.py ├── remote │ ├── Dockerfile │ ├── flag.txt │ ├── main.py │ └── safernumpy │ │ ├── __init__.py │ │ └── core │ │ ├── __init__.py │ │ └── multiarray │ │ └── __init__.py └── solve │ └── README.md ├── stupid-crypto-chall ├── README.md ├── handout │ ├── Dockerfile │ ├── flag.txt │ └── main.py ├── remote │ ├── Dockerfile │ ├── flag.txt │ └── main.py └── solve │ ├── README.md │ ├── payload.txt │ └── solve.py ├── substitute-teacher ├── README.md ├── handout │ ├── Dockerfile │ ├── flag.txt │ └── main.py ├── remote │ ├── Dockerfile │ ├── flag.txt │ └── main.py └── solve │ ├── README.md │ └── solve.py ├── tiniest ├── README.md ├── handout │ ├── Dockerfile │ ├── chal.pl │ └── flag.txt ├── remote │ ├── Dockerfile │ ├── chal.pl │ └── flag.txt └── solve │ ├── README.md │ └── payload.pl ├── void ├── README.md ├── handout │ ├── docker │ │ ├── Dockerfile.local.prebuilt │ │ ├── Dockerfile.prebuilt │ │ ├── entry.py │ │ ├── hook.sh │ │ └── local_entry.py │ ├── embedder.c │ ├── embedder.docker │ └── flag └── remote │ ├── Makefile │ ├── docker │ ├── Dockerfile │ ├── Dockerfile.local │ ├── Dockerfile.local.prebuilt │ ├── Dockerfile.prebuilt │ ├── entry.py │ ├── hook.sh │ └── local_entry.py │ ├── embedder.c │ ├── embedder.docker │ └── flag ├── what-flag ├── README.md ├── handout │ ├── Dockerfile │ ├── flag.txt │ └── main.py ├── remote │ ├── Dockerfile │ ├── flag.txt │ └── main.py └── solve │ ├── README.md │ ├── solve-remote.py │ └── solve.py ├── what-numbers ├── README.md ├── handout │ ├── Dockerfile │ ├── chal.py │ └── flag.txt ├── remote │ ├── Dockerfile │ ├── chal.py │ └── flag.txt └── solve │ ├── README.md │ ├── best │ ├── 1099.txt │ ├── 123456789.txt │ ├── 1337.txt │ ├── 13371337.txt │ ├── 14600926.txt │ ├── 1784768876.txt │ ├── 2396745.txt │ ├── 322376503.txt │ ├── 3735928559.txt │ ├── 420.txt │ ├── 4886718345.txt │ ├── 48879.txt │ ├── 51966.txt │ ├── 57005.txt │ └── 69.txt │ ├── createnums.py │ ├── dunders.txt │ ├── gen-final.py │ ├── payload.txt │ └── searchattrs.py └── x86fuck ├── README.md ├── handout ├── Dockerfile ├── chal.py └── flag.txt ├── remote ├── Dockerfile ├── chal.py └── flag.txt └── solve ├── README.md └── solve.py /!alphabet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/!alphabet/README.md -------------------------------------------------------------------------------- /!alphabet/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/!alphabet/handout/Dockerfile -------------------------------------------------------------------------------- /!alphabet/handout/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/!alphabet/handout/chal.py -------------------------------------------------------------------------------- /!alphabet/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_in_root_dir_on_remote} 2 | -------------------------------------------------------------------------------- /!alphabet/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/!alphabet/remote/Dockerfile -------------------------------------------------------------------------------- /!alphabet/remote/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/!alphabet/remote/chal.py -------------------------------------------------------------------------------- /!alphabet/remote/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/!alphabet/remote/flag.txt -------------------------------------------------------------------------------- /!alphabet/solve/solve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/!alphabet/solve/solve.c -------------------------------------------------------------------------------- /!alphabet/solve/solve_expanded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/!alphabet/solve/solve_expanded.c -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .idea 3 | -------------------------------------------------------------------------------- /2call/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/2call/README.md -------------------------------------------------------------------------------- /2call/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/2call/handout/Dockerfile -------------------------------------------------------------------------------- /2call/handout/chal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/2call/handout/chal.js -------------------------------------------------------------------------------- /2call/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_in_root_dir_on_remote} 2 | -------------------------------------------------------------------------------- /2call/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/2call/remote/Dockerfile -------------------------------------------------------------------------------- /2call/remote/chal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/2call/remote/chal.js -------------------------------------------------------------------------------- /2call/remote/flag.txt: -------------------------------------------------------------------------------- 1 | jail{btoa_hard_carry_fr_1cf0ea60f5} 2 | -------------------------------------------------------------------------------- /2call/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/2call/solve/README.md -------------------------------------------------------------------------------- /2call/solve/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/2call/solve/gen.py -------------------------------------------------------------------------------- /2call/solve/payload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/2call/solve/payload.js -------------------------------------------------------------------------------- /2call/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/2call/solve/solve.py -------------------------------------------------------------------------------- /MMM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/MMM/README.md -------------------------------------------------------------------------------- /MMM/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/MMM/handout/Dockerfile -------------------------------------------------------------------------------- /MMM/handout/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/MMM/handout/docker-compose.yml -------------------------------------------------------------------------------- /MMM/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /MMM/handout/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/MMM/handout/server.py -------------------------------------------------------------------------------- /MMM/handout/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/MMM/handout/start.sh -------------------------------------------------------------------------------- /MMM/handout/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/MMM/handout/templates/home.html -------------------------------------------------------------------------------- /MMM/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/MMM/remote/Dockerfile -------------------------------------------------------------------------------- /MMM/remote/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/MMM/remote/docker-compose.yml -------------------------------------------------------------------------------- /MMM/remote/flag.txt: -------------------------------------------------------------------------------- 1 | jail{s4ndb0x3d_j1nja_1s_n0t_s4f3_aga1n5t_cu5t0m_f1lt3r5} 2 | -------------------------------------------------------------------------------- /MMM/remote/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/MMM/remote/server.py -------------------------------------------------------------------------------- /MMM/remote/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/MMM/remote/start.sh -------------------------------------------------------------------------------- /MMM/remote/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/MMM/remote/templates/home.html -------------------------------------------------------------------------------- /MMM/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/MMM/solve/README.md -------------------------------------------------------------------------------- /MMM/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/MMM/solve/solve.py -------------------------------------------------------------------------------- /SUS-Calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/SUS-Calculator/README.md -------------------------------------------------------------------------------- /SUS-Calculator/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/SUS-Calculator/handout/Dockerfile -------------------------------------------------------------------------------- /SUS-Calculator/handout/chal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/SUS-Calculator/handout/chal.rb -------------------------------------------------------------------------------- /SUS-Calculator/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /SUS-Calculator/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/SUS-Calculator/remote/Dockerfile -------------------------------------------------------------------------------- /SUS-Calculator/remote/chal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/SUS-Calculator/remote/chal.rb -------------------------------------------------------------------------------- /SUS-Calculator/remote/flag.txt: -------------------------------------------------------------------------------- 1 | jail{me_when_i_uhhh_escape} 2 | -------------------------------------------------------------------------------- /SUS-Calculator/solve/README.md: -------------------------------------------------------------------------------- 1 | # SUS Calculator 2 | 3 | todo put solve idea here 4 | 5 | -------------------------------------------------------------------------------- /befunge-breakout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/README.md -------------------------------------------------------------------------------- /befunge-breakout/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/handout/Dockerfile -------------------------------------------------------------------------------- /befunge-breakout/handout/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/handout/LICENSE -------------------------------------------------------------------------------- /befunge-breakout/handout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/handout/README.md -------------------------------------------------------------------------------- /befunge-breakout/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /befunge-breakout/handout/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/handout/run.sh -------------------------------------------------------------------------------- /befunge-breakout/handout/src/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/handout/src/build.sh -------------------------------------------------------------------------------- /befunge-breakout/handout/src/cbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/handout/src/cbi -------------------------------------------------------------------------------- /befunge-breakout/handout/src/cbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/handout/src/cbi.c -------------------------------------------------------------------------------- /befunge-breakout/handout/src/cbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/handout/src/cbi.h -------------------------------------------------------------------------------- /befunge-breakout/handout/src/cbi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/handout/src/cbi.o -------------------------------------------------------------------------------- /befunge-breakout/handout/src/delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/handout/src/delta.c -------------------------------------------------------------------------------- /befunge-breakout/handout/src/delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/handout/src/delta.h -------------------------------------------------------------------------------- /befunge-breakout/handout/src/delta.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/handout/src/delta.o -------------------------------------------------------------------------------- /befunge-breakout/handout/src/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/handout/src/stack.c -------------------------------------------------------------------------------- /befunge-breakout/handout/src/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/handout/src/stack.h -------------------------------------------------------------------------------- /befunge-breakout/handout/src/stack.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/handout/src/stack.o -------------------------------------------------------------------------------- /befunge-breakout/handout/src/test/calc.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/handout/src/test/calc.bf -------------------------------------------------------------------------------- /befunge-breakout/handout/src/test/hw.bf: -------------------------------------------------------------------------------- 1 | dk,@ 3 | -------------------------------------------------------------------------------- /befunge-breakout/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/remote/Dockerfile -------------------------------------------------------------------------------- /befunge-breakout/remote/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/remote/LICENSE -------------------------------------------------------------------------------- /befunge-breakout/remote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/remote/README.md -------------------------------------------------------------------------------- /befunge-breakout/remote/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/remote/flag.txt -------------------------------------------------------------------------------- /befunge-breakout/remote/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/remote/run.sh -------------------------------------------------------------------------------- /befunge-breakout/remote/src/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/remote/src/build.sh -------------------------------------------------------------------------------- /befunge-breakout/remote/src/cbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/remote/src/cbi -------------------------------------------------------------------------------- /befunge-breakout/remote/src/cbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/remote/src/cbi.c -------------------------------------------------------------------------------- /befunge-breakout/remote/src/cbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/remote/src/cbi.h -------------------------------------------------------------------------------- /befunge-breakout/remote/src/cbi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/remote/src/cbi.o -------------------------------------------------------------------------------- /befunge-breakout/remote/src/delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/remote/src/delta.c -------------------------------------------------------------------------------- /befunge-breakout/remote/src/delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/remote/src/delta.h -------------------------------------------------------------------------------- /befunge-breakout/remote/src/delta.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/remote/src/delta.o -------------------------------------------------------------------------------- /befunge-breakout/remote/src/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/remote/src/stack.c -------------------------------------------------------------------------------- /befunge-breakout/remote/src/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/remote/src/stack.h -------------------------------------------------------------------------------- /befunge-breakout/remote/src/stack.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/remote/src/stack.o -------------------------------------------------------------------------------- /befunge-breakout/remote/src/test/calc.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/remote/src/test/calc.bf -------------------------------------------------------------------------------- /befunge-breakout/remote/src/test/hw.bf: -------------------------------------------------------------------------------- 1 | dk,@ 3 | -------------------------------------------------------------------------------- /befunge-breakout/solve/README.md: -------------------------------------------------------------------------------- 1 | # befunge breakout 2 | 3 | todo solve idea here 4 | 5 | -------------------------------------------------------------------------------- /befunge-breakout/solve/ld-linux-x86-64.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/solve/ld-linux-x86-64.so.2 -------------------------------------------------------------------------------- /befunge-breakout/solve/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/solve/libc.so.6 -------------------------------------------------------------------------------- /befunge-breakout/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/befunge-breakout/solve/solve.py -------------------------------------------------------------------------------- /blind-calc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/blind-calc/README.md -------------------------------------------------------------------------------- /blind-calc/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/blind-calc/remote/Dockerfile -------------------------------------------------------------------------------- /blind-calc/remote/blind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/blind-calc/remote/blind.sh -------------------------------------------------------------------------------- /blind-calc/remote/flag.txt: -------------------------------------------------------------------------------- 1 | jail{blind-calc_9c701e8c09f6cc0edd6} 2 | -------------------------------------------------------------------------------- /blind-calc/remote/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/blind-calc/remote/run.sh -------------------------------------------------------------------------------- /blind-calc/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/blind-calc/solve/README.md -------------------------------------------------------------------------------- /charredcoal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/README.md -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/.gitignore -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/.travis.yml -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/LICENSE -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/README.md -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/TODO.md -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/ansiterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/ansiterm.py -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/appveyor.yml -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/astprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/astprocessor.py -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/charactertransformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/charactertransformers.py -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/charcoal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/charcoal -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/charcoal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/charcoal.py -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/charcoaltoken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/charcoaltoken.py -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/codepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/codepage.py -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/compression.py -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/direction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/direction.py -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/directiondictionaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/directiondictionaries.py -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/extras.py -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/extras/chc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/extras/chc -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/highlighters/Charcoal.sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/highlighters/Charcoal.sublime-syntax -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/interpreterprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/interpreterprocessor.py -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/requirements.txt: -------------------------------------------------------------------------------- 1 | brotli 2 | regex 3 | -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/stringifierprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/stringifierprocessor.py -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/test -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/test.py -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/tox.ini -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/tutor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/tutor -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/tutor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/tutor.py -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/unicodegrammars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/unicodegrammars.py -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/verbosegrammars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/verbosegrammars.py -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/verbosifierprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/verbosifierprocessor.py -------------------------------------------------------------------------------- /charredcoal/handout/Charcoal/wolfram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Charcoal/wolfram.py -------------------------------------------------------------------------------- /charredcoal/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/Dockerfile -------------------------------------------------------------------------------- /charredcoal/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /charredcoal/handout/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/handout/main.py -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/.gitignore -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/.travis.yml -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/LICENSE -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/README.md -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/TODO.md -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/ansiterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/ansiterm.py -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/appveyor.yml -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/astprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/astprocessor.py -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/charactertransformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/charactertransformers.py -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/charcoal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/charcoal -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/charcoal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/charcoal.py -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/charcoaltoken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/charcoaltoken.py -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/codepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/codepage.py -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/compression.py -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/direction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/direction.py -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/directiondictionaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/directiondictionaries.py -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/extras.py -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/extras/chc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/extras/chc -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/highlighters/Charcoal.sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/highlighters/Charcoal.sublime-syntax -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/interpreterprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/interpreterprocessor.py -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/requirements.txt: -------------------------------------------------------------------------------- 1 | brotli 2 | regex 3 | -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/stringifierprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/stringifierprocessor.py -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/test -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/test.py -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/tox.ini -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/tutor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/tutor -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/tutor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/tutor.py -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/unicodegrammars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/unicodegrammars.py -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/verbosegrammars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/verbosegrammars.py -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/verbosifierprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/verbosifierprocessor.py -------------------------------------------------------------------------------- /charredcoal/remote/Charcoal/wolfram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Charcoal/wolfram.py -------------------------------------------------------------------------------- /charredcoal/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/Dockerfile -------------------------------------------------------------------------------- /charredcoal/remote/flag.txt: -------------------------------------------------------------------------------- 1 | jail{ord_is_a_weirdo_d9479722fdb4b49bd40494c2acb} 2 | -------------------------------------------------------------------------------- /charredcoal/remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/remote/main.py -------------------------------------------------------------------------------- /charredcoal/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/charredcoal/solve/README.md -------------------------------------------------------------------------------- /filterd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/filterd/README.md -------------------------------------------------------------------------------- /filterd/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/filterd/handout/Dockerfile -------------------------------------------------------------------------------- /filterd/handout/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/filterd/handout/chal.py -------------------------------------------------------------------------------- /filterd/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /filterd/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/filterd/remote/Dockerfile -------------------------------------------------------------------------------- /filterd/remote/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/filterd/remote/chal.py -------------------------------------------------------------------------------- /filterd/remote/flag.txt: -------------------------------------------------------------------------------- 1 | jail{can_you_repeat_that_for_me?_aacb7144d2c} 2 | -------------------------------------------------------------------------------- /filterd/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/filterd/solve/README.md -------------------------------------------------------------------------------- /functional-programming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/functional-programming/README.md -------------------------------------------------------------------------------- /functional-programming/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/functional-programming/handout/Dockerfile -------------------------------------------------------------------------------- /functional-programming/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /functional-programming/handout/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/functional-programming/handout/main.py -------------------------------------------------------------------------------- /functional-programming/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/functional-programming/remote/Dockerfile -------------------------------------------------------------------------------- /functional-programming/remote/flag.txt: -------------------------------------------------------------------------------- 1 | jail{brut1n9_h45h_funct10n5_ftw!!!} 2 | -------------------------------------------------------------------------------- /functional-programming/remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/functional-programming/remote/main.py -------------------------------------------------------------------------------- /functional-programming/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/functional-programming/solve/README.md -------------------------------------------------------------------------------- /functional-programming/solve/brute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/functional-programming/solve/brute.c -------------------------------------------------------------------------------- /functional-programming/solve/payload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/functional-programming/solve/payload.txt -------------------------------------------------------------------------------- /get-and-call/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/get-and-call/README.md -------------------------------------------------------------------------------- /get-and-call/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/get-and-call/handout/Dockerfile -------------------------------------------------------------------------------- /get-and-call/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /get-and-call/handout/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/get-and-call/handout/main.py -------------------------------------------------------------------------------- /get-and-call/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/get-and-call/remote/Dockerfile -------------------------------------------------------------------------------- /get-and-call/remote/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/get-and-call/remote/flag.txt -------------------------------------------------------------------------------- /get-and-call/remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/get-and-call/remote/main.py -------------------------------------------------------------------------------- /get-and-call/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/get-and-call/solve/README.md -------------------------------------------------------------------------------- /get-and-call/solve/solve1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/get-and-call/solve/solve1.py -------------------------------------------------------------------------------- /get-and-call/solve/solve2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/get-and-call/solve/solve2.py -------------------------------------------------------------------------------- /impossible-maze/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/impossible-maze/README.md -------------------------------------------------------------------------------- /impossible-maze/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/impossible-maze/solve/README.md -------------------------------------------------------------------------------- /impossible-maze/solve/images/blocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/impossible-maze/solve/images/blocked.png -------------------------------------------------------------------------------- /impossible-maze/solve/images/io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/impossible-maze/solve/images/io.png -------------------------------------------------------------------------------- /impossible-maze/solve/images/partial_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/impossible-maze/solve/images/partial_flag.png -------------------------------------------------------------------------------- /impossible-maze/solve/images/proc_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/impossible-maze/solve/images/proc_list.png -------------------------------------------------------------------------------- /jailguessr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jailguessr/README.md -------------------------------------------------------------------------------- /jailguessr/handout/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jailguessr/handout/image.png -------------------------------------------------------------------------------- /jailguessr/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jailguessr/remote/Dockerfile -------------------------------------------------------------------------------- /jailguessr/remote/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jailguessr/remote/flag.txt -------------------------------------------------------------------------------- /jailguessr/remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jailguessr/remote/main.py -------------------------------------------------------------------------------- /jailguessr/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jailguessr/solve/README.md -------------------------------------------------------------------------------- /jellyjail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/README.md -------------------------------------------------------------------------------- /jellyjail/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/handout/Dockerfile -------------------------------------------------------------------------------- /jellyjail/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /jellyjail/handout/jellylanguage/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | utils/findhash2 3 | *.pyc 4 | -------------------------------------------------------------------------------- /jellyjail/handout/jellylanguage/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/handout/jellylanguage/LICENSE.txt -------------------------------------------------------------------------------- /jellyjail/handout/jellylanguage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/handout/jellylanguage/README.md -------------------------------------------------------------------------------- /jellyjail/handout/jellylanguage/jelly/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/handout/jellylanguage/jelly/__init__.py -------------------------------------------------------------------------------- /jellyjail/handout/jellylanguage/jelly/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/handout/jellylanguage/jelly/__main__.py -------------------------------------------------------------------------------- /jellyjail/handout/jellylanguage/jelly/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/handout/jellylanguage/jelly/dictionary.py -------------------------------------------------------------------------------- /jellyjail/handout/jellylanguage/jelly/interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/handout/jellylanguage/jelly/interpreter.py -------------------------------------------------------------------------------- /jellyjail/handout/jellylanguage/jelly/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/handout/jellylanguage/jelly/utils.py -------------------------------------------------------------------------------- /jellyjail/handout/jellylanguage/scripts/jelly: -------------------------------------------------------------------------------- 1 | ../jelly/__main__.py -------------------------------------------------------------------------------- /jellyjail/handout/jellylanguage/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/handout/jellylanguage/setup.py -------------------------------------------------------------------------------- /jellyjail/handout/jellylanguage/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/handout/jellylanguage/utils/Makefile -------------------------------------------------------------------------------- /jellyjail/handout/jellylanguage/utils/findhash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/handout/jellylanguage/utils/findhash -------------------------------------------------------------------------------- /jellyjail/handout/jellylanguage/utils/findhash1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/handout/jellylanguage/utils/findhash1.py -------------------------------------------------------------------------------- /jellyjail/handout/jellylanguage/utils/findhash2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/handout/jellylanguage/utils/findhash2.c -------------------------------------------------------------------------------- /jellyjail/handout/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/handout/main.py -------------------------------------------------------------------------------- /jellyjail/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/remote/Dockerfile -------------------------------------------------------------------------------- /jellyjail/remote/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/remote/flag.txt -------------------------------------------------------------------------------- /jellyjail/remote/jellylanguage/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | utils/findhash2 3 | *.pyc 4 | -------------------------------------------------------------------------------- /jellyjail/remote/jellylanguage/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/remote/jellylanguage/LICENSE.txt -------------------------------------------------------------------------------- /jellyjail/remote/jellylanguage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/remote/jellylanguage/README.md -------------------------------------------------------------------------------- /jellyjail/remote/jellylanguage/jelly/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/remote/jellylanguage/jelly/__init__.py -------------------------------------------------------------------------------- /jellyjail/remote/jellylanguage/jelly/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/remote/jellylanguage/jelly/__main__.py -------------------------------------------------------------------------------- /jellyjail/remote/jellylanguage/jelly/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/remote/jellylanguage/jelly/dictionary.py -------------------------------------------------------------------------------- /jellyjail/remote/jellylanguage/jelly/interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/remote/jellylanguage/jelly/interpreter.py -------------------------------------------------------------------------------- /jellyjail/remote/jellylanguage/jelly/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/remote/jellylanguage/jelly/utils.py -------------------------------------------------------------------------------- /jellyjail/remote/jellylanguage/scripts/jelly: -------------------------------------------------------------------------------- 1 | ../jelly/__main__.py -------------------------------------------------------------------------------- /jellyjail/remote/jellylanguage/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/remote/jellylanguage/setup.py -------------------------------------------------------------------------------- /jellyjail/remote/jellylanguage/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/remote/jellylanguage/utils/Makefile -------------------------------------------------------------------------------- /jellyjail/remote/jellylanguage/utils/findhash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/remote/jellylanguage/utils/findhash -------------------------------------------------------------------------------- /jellyjail/remote/jellylanguage/utils/findhash1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/remote/jellylanguage/utils/findhash1.py -------------------------------------------------------------------------------- /jellyjail/remote/jellylanguage/utils/findhash2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/remote/jellylanguage/utils/findhash2.c -------------------------------------------------------------------------------- /jellyjail/remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/remote/main.py -------------------------------------------------------------------------------- /jellyjail/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/jellyjail/solve/README.md -------------------------------------------------------------------------------- /js-without-getattr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/js-without-getattr/README.md -------------------------------------------------------------------------------- /js-without-getattr/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/js-without-getattr/handout/Dockerfile -------------------------------------------------------------------------------- /js-without-getattr/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /js-without-getattr/handout/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/js-without-getattr/handout/main.js -------------------------------------------------------------------------------- /js-without-getattr/handout/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/js-without-getattr/handout/package.json -------------------------------------------------------------------------------- /js-without-getattr/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/js-without-getattr/remote/Dockerfile -------------------------------------------------------------------------------- /js-without-getattr/remote/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/js-without-getattr/remote/flag.txt -------------------------------------------------------------------------------- /js-without-getattr/remote/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/js-without-getattr/remote/main.js -------------------------------------------------------------------------------- /js-without-getattr/remote/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/js-without-getattr/remote/package.json -------------------------------------------------------------------------------- /js-without-getattr/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/js-without-getattr/solve/README.md -------------------------------------------------------------------------------- /last-message/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/.gitignore -------------------------------------------------------------------------------- /last-message/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/README.md -------------------------------------------------------------------------------- /last-message/handout/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/handout/app/Dockerfile -------------------------------------------------------------------------------- /last-message/handout/app/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/handout/app/account.py -------------------------------------------------------------------------------- /last-message/handout/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/handout/app/app.py -------------------------------------------------------------------------------- /last-message/handout/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/handout/app/index.html -------------------------------------------------------------------------------- /last-message/handout/app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/handout/app/requirements.txt -------------------------------------------------------------------------------- /last-message/handout/app/static/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/handout/app/static/default.jpg -------------------------------------------------------------------------------- /last-message/handout/app/static/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/handout/app/static/index.css -------------------------------------------------------------------------------- /last-message/handout/app/static/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/handout/app/static/index.py -------------------------------------------------------------------------------- /last-message/handout/app/static/pyscript.json: -------------------------------------------------------------------------------- 1 | { 2 | "packages": [] 3 | } -------------------------------------------------------------------------------- /last-message/handout/bot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/handout/bot/Dockerfile -------------------------------------------------------------------------------- /last-message/handout/bot/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/handout/bot/bot.js -------------------------------------------------------------------------------- /last-message/handout/bot/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /last-message/handout/bot/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | socat TCP-LISTEN:4444,reuseaddr,fork EXEC:"node bot.js" -------------------------------------------------------------------------------- /last-message/handout/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/handout/docker-compose.yml -------------------------------------------------------------------------------- /last-message/remote/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/remote/app/Dockerfile -------------------------------------------------------------------------------- /last-message/remote/app/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/remote/app/account.py -------------------------------------------------------------------------------- /last-message/remote/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/remote/app/app.py -------------------------------------------------------------------------------- /last-message/remote/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/remote/app/index.html -------------------------------------------------------------------------------- /last-message/remote/app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/remote/app/requirements.txt -------------------------------------------------------------------------------- /last-message/remote/app/static/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/remote/app/static/default.jpg -------------------------------------------------------------------------------- /last-message/remote/app/static/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/remote/app/static/index.css -------------------------------------------------------------------------------- /last-message/remote/app/static/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/remote/app/static/index.py -------------------------------------------------------------------------------- /last-message/remote/app/static/pyscript.json: -------------------------------------------------------------------------------- 1 | { 2 | "packages": [] 3 | } -------------------------------------------------------------------------------- /last-message/remote/bot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/remote/bot/Dockerfile -------------------------------------------------------------------------------- /last-message/remote/bot/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/remote/bot/bot.js -------------------------------------------------------------------------------- /last-message/remote/bot/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/remote/bot/flag.txt -------------------------------------------------------------------------------- /last-message/remote/bot/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | socat TCP-LISTEN:4444,reuseaddr,fork EXEC:"node bot.js" -------------------------------------------------------------------------------- /last-message/remote/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/remote/docker-compose.yml -------------------------------------------------------------------------------- /last-message/solve/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/solve/exploit.py -------------------------------------------------------------------------------- /last-message/solve/solve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/last-message/solve/solve.html -------------------------------------------------------------------------------- /lost-in-transit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/lost-in-transit/README.md -------------------------------------------------------------------------------- /lost-in-transit/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/lost-in-transit/handout/Dockerfile -------------------------------------------------------------------------------- /lost-in-transit/handout/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/lost-in-transit/handout/flag.txt -------------------------------------------------------------------------------- /lost-in-transit/handout/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/lost-in-transit/handout/main.py -------------------------------------------------------------------------------- /lost-in-transit/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/lost-in-transit/remote/Dockerfile -------------------------------------------------------------------------------- /lost-in-transit/remote/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/lost-in-transit/remote/flag.txt -------------------------------------------------------------------------------- /lost-in-transit/remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/lost-in-transit/remote/main.py -------------------------------------------------------------------------------- /lost-in-transit/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/lost-in-transit/solve/README.md -------------------------------------------------------------------------------- /lost-in-transit/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/lost-in-transit/solve/solve.py -------------------------------------------------------------------------------- /mathjail/README.md: -------------------------------------------------------------------------------- 1 | # mathjail 2 | 3 | category: misc 4 | 5 | ## description 6 | 7 | ELEMENTARY, my dear Watson. 8 | -------------------------------------------------------------------------------- /mathjail/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/mathjail/handout/Dockerfile -------------------------------------------------------------------------------- /mathjail/handout/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/mathjail/handout/chal.py -------------------------------------------------------------------------------- /mathjail/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /mathjail/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/mathjail/remote/Dockerfile -------------------------------------------------------------------------------- /mathjail/remote/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/mathjail/remote/chal.py -------------------------------------------------------------------------------- /mathjail/remote/flag.txt: -------------------------------------------------------------------------------- 1 | jail{wh0_n33d5_l00p5_wh3n_y0u_h4v3_m4th_:)} 2 | -------------------------------------------------------------------------------- /mathjail/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/mathjail/solve/README.md -------------------------------------------------------------------------------- /mathjail/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/mathjail/solve/solve.py -------------------------------------------------------------------------------- /minieval-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/minieval-1/README.md -------------------------------------------------------------------------------- /minieval-1/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/minieval-1/handout/Dockerfile -------------------------------------------------------------------------------- /minieval-1/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /minieval-1/handout/jail.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/minieval-1/handout/jail.pl -------------------------------------------------------------------------------- /minieval-1/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/minieval-1/remote/Dockerfile -------------------------------------------------------------------------------- /minieval-1/remote/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/minieval-1/remote/flag.txt -------------------------------------------------------------------------------- /minieval-1/remote/jail.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/minieval-1/remote/jail.pl -------------------------------------------------------------------------------- /minieval-1/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/minieval-1/solve/README.md -------------------------------------------------------------------------------- /minieval-1/solve/solve.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/minieval-1/solve/solve.txt -------------------------------------------------------------------------------- /no-nonsense/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/no-nonsense/README.md -------------------------------------------------------------------------------- /no-nonsense/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/no-nonsense/handout/Dockerfile -------------------------------------------------------------------------------- /no-nonsense/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /no-nonsense/handout/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/no-nonsense/handout/main.py -------------------------------------------------------------------------------- /no-nonsense/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/no-nonsense/remote/Dockerfile -------------------------------------------------------------------------------- /no-nonsense/remote/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/no-nonsense/remote/flag.txt -------------------------------------------------------------------------------- /no-nonsense/remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/no-nonsense/remote/main.py -------------------------------------------------------------------------------- /no-nonsense/solve/payload.txt: -------------------------------------------------------------------------------- 1 | @ᵉᵛªₗ @ᵢⁿₚᵘₜ class fl: pass 2 | breakpoint() 3 | __import__('os').system('cat flag.txt') 4 | -------------------------------------------------------------------------------- /no-nonsense/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/no-nonsense/solve/solve.py -------------------------------------------------------------------------------- /parity-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/parity-1/README.md -------------------------------------------------------------------------------- /parity-1/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/parity-1/handout/Dockerfile -------------------------------------------------------------------------------- /parity-1/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /parity-1/handout/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/parity-1/handout/main.py -------------------------------------------------------------------------------- /parity-1/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/parity-1/remote/Dockerfile -------------------------------------------------------------------------------- /parity-1/remote/flag.txt: -------------------------------------------------------------------------------- 1 | jail{parity_41f5812e8c0cd9} 2 | -------------------------------------------------------------------------------- /parity-1/remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/parity-1/remote/main.py -------------------------------------------------------------------------------- /parity-1/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/parity-1/solve/README.md -------------------------------------------------------------------------------- /parity-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/parity-2/README.md -------------------------------------------------------------------------------- /parity-2/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/parity-2/handout/Dockerfile -------------------------------------------------------------------------------- /parity-2/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /parity-2/handout/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/parity-2/handout/main.py -------------------------------------------------------------------------------- /parity-2/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/parity-2/remote/Dockerfile -------------------------------------------------------------------------------- /parity-2/remote/flag.txt: -------------------------------------------------------------------------------- 1 | jail{parity2_1e2e8963ea65a0333f617} 2 | -------------------------------------------------------------------------------- /parity-2/remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/parity-2/remote/main.py -------------------------------------------------------------------------------- /parity-2/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/parity-2/solve/README.md -------------------------------------------------------------------------------- /parseltongue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/parseltongue/README.md -------------------------------------------------------------------------------- /parseltongue/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/parseltongue/handout/Dockerfile -------------------------------------------------------------------------------- /parseltongue/handout/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/parseltongue/handout/chal.py -------------------------------------------------------------------------------- /parseltongue/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /parseltongue/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/parseltongue/remote/Dockerfile -------------------------------------------------------------------------------- /parseltongue/remote/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/parseltongue/remote/chal.py -------------------------------------------------------------------------------- /parseltongue/remote/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/parseltongue/remote/flag.txt -------------------------------------------------------------------------------- /parseltongue/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/parseltongue/solve/README.md -------------------------------------------------------------------------------- /parseltongue/solve/gen-solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/parseltongue/solve/gen-solve.py -------------------------------------------------------------------------------- /parseltongue/solve/real-solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/parseltongue/solve/real-solve.py -------------------------------------------------------------------------------- /pickled-magic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/pickled-magic/README.md -------------------------------------------------------------------------------- /pickled-magic/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/pickled-magic/handout/Dockerfile -------------------------------------------------------------------------------- /pickled-magic/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /pickled-magic/handout/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/pickled-magic/handout/main.py -------------------------------------------------------------------------------- /pickled-magic/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/pickled-magic/remote/Dockerfile -------------------------------------------------------------------------------- /pickled-magic/remote/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/pickled-magic/remote/flag.txt -------------------------------------------------------------------------------- /pickled-magic/remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/pickled-magic/remote/main.py -------------------------------------------------------------------------------- /pickled-magic/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/pickled-magic/solve/README.md -------------------------------------------------------------------------------- /pickled-magic/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/pickled-magic/solve/solve.py -------------------------------------------------------------------------------- /polyglo7quine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/polyglo7quine/README.md -------------------------------------------------------------------------------- /polyglo7quine/handout/handout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/polyglo7quine/handout/handout.py -------------------------------------------------------------------------------- /polyglo7quine/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/polyglo7quine/remote/Dockerfile -------------------------------------------------------------------------------- /polyglo7quine/remote/chal.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/polyglo7quine/remote/chal.cr -------------------------------------------------------------------------------- /polyglo7quine/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/polyglo7quine/solve/README.md -------------------------------------------------------------------------------- /respy-evil-challenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/respy-evil-challenge/README.md -------------------------------------------------------------------------------- /respy-evil-challenge/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/respy-evil-challenge/handout/Dockerfile -------------------------------------------------------------------------------- /respy-evil-challenge/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /respy-evil-challenge/handout/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/respy-evil-challenge/handout/main.py -------------------------------------------------------------------------------- /respy-evil-challenge/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/respy-evil-challenge/remote/Dockerfile -------------------------------------------------------------------------------- /respy-evil-challenge/remote/flag.txt: -------------------------------------------------------------------------------- 1 | jail{now_go_d-O_void_f61c5030ae689b057f8a4d62} 2 | -------------------------------------------------------------------------------- /respy-evil-challenge/remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/respy-evil-challenge/remote/main.py -------------------------------------------------------------------------------- /respy-nice-challenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/respy-nice-challenge/README.md -------------------------------------------------------------------------------- /respy-nice-challenge/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/respy-nice-challenge/handout/Dockerfile -------------------------------------------------------------------------------- /respy-nice-challenge/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /respy-nice-challenge/handout/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/respy-nice-challenge/handout/main.py -------------------------------------------------------------------------------- /respy-nice-challenge/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/respy-nice-challenge/remote/Dockerfile -------------------------------------------------------------------------------- /respy-nice-challenge/remote/flag.txt: -------------------------------------------------------------------------------- 1 | jail{hooray_we_love_python_sandbox_libraries} 2 | -------------------------------------------------------------------------------- /respy-nice-challenge/remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/respy-nice-challenge/remote/main.py -------------------------------------------------------------------------------- /ruby-on-jails/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/ruby-on-jails/README.md -------------------------------------------------------------------------------- /ruby-on-jails/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/ruby-on-jails/handout/Dockerfile -------------------------------------------------------------------------------- /ruby-on-jails/handout/chal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/ruby-on-jails/handout/chal.rb -------------------------------------------------------------------------------- /ruby-on-jails/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} -------------------------------------------------------------------------------- /ruby-on-jails/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/ruby-on-jails/remote/Dockerfile -------------------------------------------------------------------------------- /ruby-on-jails/remote/chal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/ruby-on-jails/remote/chal.rb -------------------------------------------------------------------------------- /ruby-on-jails/remote/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/ruby-on-jails/remote/flag.txt -------------------------------------------------------------------------------- /ruby-on-jails/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/ruby-on-jails/solve/README.md -------------------------------------------------------------------------------- /smiley-faiss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/smiley-faiss/README.md -------------------------------------------------------------------------------- /smiley-faiss/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/smiley-faiss/handout/Dockerfile -------------------------------------------------------------------------------- /smiley-faiss/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /smiley-faiss/handout/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/smiley-faiss/handout/main.py -------------------------------------------------------------------------------- /smiley-faiss/handout/safernumpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/smiley-faiss/handout/safernumpy/__init__.py -------------------------------------------------------------------------------- /smiley-faiss/handout/safernumpy/core/__init__.py: -------------------------------------------------------------------------------- 1 | import safernumpy.core.multiarray 2 | # nuh uh 3 | -------------------------------------------------------------------------------- /smiley-faiss/handout/safernumpy/core/multiarray/__init__.py: -------------------------------------------------------------------------------- 1 | # same goes here lol 2 | -------------------------------------------------------------------------------- /smiley-faiss/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/smiley-faiss/remote/Dockerfile -------------------------------------------------------------------------------- /smiley-faiss/remote/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/smiley-faiss/remote/flag.txt -------------------------------------------------------------------------------- /smiley-faiss/remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/smiley-faiss/remote/main.py -------------------------------------------------------------------------------- /smiley-faiss/remote/safernumpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/smiley-faiss/remote/safernumpy/__init__.py -------------------------------------------------------------------------------- /smiley-faiss/remote/safernumpy/core/__init__.py: -------------------------------------------------------------------------------- 1 | import safernumpy.core.multiarray 2 | # nuh uh 3 | -------------------------------------------------------------------------------- /smiley-faiss/remote/safernumpy/core/multiarray/__init__.py: -------------------------------------------------------------------------------- 1 | # same goes here lol 2 | -------------------------------------------------------------------------------- /smiley-faiss/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/smiley-faiss/solve/README.md -------------------------------------------------------------------------------- /stupid-crypto-chall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/stupid-crypto-chall/README.md -------------------------------------------------------------------------------- /stupid-crypto-chall/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/stupid-crypto-chall/handout/Dockerfile -------------------------------------------------------------------------------- /stupid-crypto-chall/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /stupid-crypto-chall/handout/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/stupid-crypto-chall/handout/main.py -------------------------------------------------------------------------------- /stupid-crypto-chall/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/stupid-crypto-chall/remote/Dockerfile -------------------------------------------------------------------------------- /stupid-crypto-chall/remote/flag.txt: -------------------------------------------------------------------------------- 1 | jail{randomn't_c136143683607e7e4dc02b06a092ec4d} 2 | -------------------------------------------------------------------------------- /stupid-crypto-chall/remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/stupid-crypto-chall/remote/main.py -------------------------------------------------------------------------------- /stupid-crypto-chall/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/stupid-crypto-chall/solve/README.md -------------------------------------------------------------------------------- /stupid-crypto-chall/solve/payload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/stupid-crypto-chall/solve/payload.txt -------------------------------------------------------------------------------- /stupid-crypto-chall/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/stupid-crypto-chall/solve/solve.py -------------------------------------------------------------------------------- /substitute-teacher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/substitute-teacher/README.md -------------------------------------------------------------------------------- /substitute-teacher/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/substitute-teacher/handout/Dockerfile -------------------------------------------------------------------------------- /substitute-teacher/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /substitute-teacher/handout/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/substitute-teacher/handout/main.py -------------------------------------------------------------------------------- /substitute-teacher/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/substitute-teacher/remote/Dockerfile -------------------------------------------------------------------------------- /substitute-teacher/remote/flag.txt: -------------------------------------------------------------------------------- 1 | jail{markov_algo_e5dfdd7d5cbc0d596} 2 | -------------------------------------------------------------------------------- /substitute-teacher/remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/substitute-teacher/remote/main.py -------------------------------------------------------------------------------- /substitute-teacher/solve/README.md: -------------------------------------------------------------------------------- 1 | # substitute teacher 2 | 3 | todo put solve ideas 4 | 5 | -------------------------------------------------------------------------------- /substitute-teacher/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/substitute-teacher/solve/solve.py -------------------------------------------------------------------------------- /tiniest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/tiniest/README.md -------------------------------------------------------------------------------- /tiniest/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/tiniest/handout/Dockerfile -------------------------------------------------------------------------------- /tiniest/handout/chal.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | eval<>=~y/rev xs//cdr -------------------------------------------------------------------------------- /tiniest/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /tiniest/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/tiniest/remote/Dockerfile -------------------------------------------------------------------------------- /tiniest/remote/chal.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | eval<>=~y/rev xs//cdr -------------------------------------------------------------------------------- /tiniest/remote/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/tiniest/remote/flag.txt -------------------------------------------------------------------------------- /tiniest/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/tiniest/solve/README.md -------------------------------------------------------------------------------- /tiniest/solve/payload.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/tiniest/solve/payload.pl -------------------------------------------------------------------------------- /void/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/void/README.md -------------------------------------------------------------------------------- /void/handout/docker/Dockerfile.local.prebuilt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/void/handout/docker/Dockerfile.local.prebuilt -------------------------------------------------------------------------------- /void/handout/docker/Dockerfile.prebuilt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/void/handout/docker/Dockerfile.prebuilt -------------------------------------------------------------------------------- /void/handout/docker/entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/void/handout/docker/entry.py -------------------------------------------------------------------------------- /void/handout/docker/hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/void/handout/docker/hook.sh -------------------------------------------------------------------------------- /void/handout/docker/local_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/void/handout/docker/local_entry.py -------------------------------------------------------------------------------- /void/handout/embedder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/void/handout/embedder.c -------------------------------------------------------------------------------- /void/handout/embedder.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/void/handout/embedder.docker -------------------------------------------------------------------------------- /void/handout/flag: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /void/remote/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/void/remote/Makefile -------------------------------------------------------------------------------- /void/remote/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/void/remote/docker/Dockerfile -------------------------------------------------------------------------------- /void/remote/docker/Dockerfile.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/void/remote/docker/Dockerfile.local -------------------------------------------------------------------------------- /void/remote/docker/Dockerfile.local.prebuilt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/void/remote/docker/Dockerfile.local.prebuilt -------------------------------------------------------------------------------- /void/remote/docker/Dockerfile.prebuilt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/void/remote/docker/Dockerfile.prebuilt -------------------------------------------------------------------------------- /void/remote/docker/entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/void/remote/docker/entry.py -------------------------------------------------------------------------------- /void/remote/docker/hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/void/remote/docker/hook.sh -------------------------------------------------------------------------------- /void/remote/docker/local_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/void/remote/docker/local_entry.py -------------------------------------------------------------------------------- /void/remote/embedder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/void/remote/embedder.c -------------------------------------------------------------------------------- /void/remote/embedder.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/void/remote/embedder.docker -------------------------------------------------------------------------------- /void/remote/flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/void/remote/flag -------------------------------------------------------------------------------- /what-flag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-flag/README.md -------------------------------------------------------------------------------- /what-flag/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-flag/handout/Dockerfile -------------------------------------------------------------------------------- /what-flag/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /what-flag/handout/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-flag/handout/main.py -------------------------------------------------------------------------------- /what-flag/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-flag/remote/Dockerfile -------------------------------------------------------------------------------- /what-flag/remote/flag.txt: -------------------------------------------------------------------------------- 1 | jail{pr0babl4_n!t_wh1t_y0U_3xpyct8d} 2 | -------------------------------------------------------------------------------- /what-flag/remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-flag/remote/main.py -------------------------------------------------------------------------------- /what-flag/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-flag/solve/README.md -------------------------------------------------------------------------------- /what-flag/solve/solve-remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-flag/solve/solve-remote.py -------------------------------------------------------------------------------- /what-flag/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-flag/solve/solve.py -------------------------------------------------------------------------------- /what-numbers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/README.md -------------------------------------------------------------------------------- /what-numbers/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/handout/Dockerfile -------------------------------------------------------------------------------- /what-numbers/handout/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/handout/chal.py -------------------------------------------------------------------------------- /what-numbers/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /what-numbers/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/remote/Dockerfile -------------------------------------------------------------------------------- /what-numbers/remote/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/remote/chal.py -------------------------------------------------------------------------------- /what-numbers/remote/flag.txt: -------------------------------------------------------------------------------- 1 | jail{i_dont_know_what_numbers_youre_talking_about} 2 | -------------------------------------------------------------------------------- /what-numbers/solve/README.md: -------------------------------------------------------------------------------- 1 | # what numbers 2 | 3 | todo add quick writeup 4 | -------------------------------------------------------------------------------- /what-numbers/solve/best/1099.txt: -------------------------------------------------------------------------------- 1 | __loader__.set_data.__code__.co_firstlineno 2 | -------------------------------------------------------------------------------- /what-numbers/solve/best/123456789.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/solve/best/123456789.txt -------------------------------------------------------------------------------- /what-numbers/solve/best/1337.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/solve/best/1337.txt -------------------------------------------------------------------------------- /what-numbers/solve/best/13371337.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/solve/best/13371337.txt -------------------------------------------------------------------------------- /what-numbers/solve/best/14600926.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/solve/best/14600926.txt -------------------------------------------------------------------------------- /what-numbers/solve/best/1784768876.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/solve/best/1784768876.txt -------------------------------------------------------------------------------- /what-numbers/solve/best/2396745.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/solve/best/2396745.txt -------------------------------------------------------------------------------- /what-numbers/solve/best/322376503.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/solve/best/322376503.txt -------------------------------------------------------------------------------- /what-numbers/solve/best/3735928559.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/solve/best/3735928559.txt -------------------------------------------------------------------------------- /what-numbers/solve/best/420.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/solve/best/420.txt -------------------------------------------------------------------------------- /what-numbers/solve/best/4886718345.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/solve/best/4886718345.txt -------------------------------------------------------------------------------- /what-numbers/solve/best/48879.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/solve/best/48879.txt -------------------------------------------------------------------------------- /what-numbers/solve/best/51966.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/solve/best/51966.txt -------------------------------------------------------------------------------- /what-numbers/solve/best/57005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/solve/best/57005.txt -------------------------------------------------------------------------------- /what-numbers/solve/best/69.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/solve/best/69.txt -------------------------------------------------------------------------------- /what-numbers/solve/createnums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/solve/createnums.py -------------------------------------------------------------------------------- /what-numbers/solve/dunders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/solve/dunders.txt -------------------------------------------------------------------------------- /what-numbers/solve/gen-final.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/solve/gen-final.py -------------------------------------------------------------------------------- /what-numbers/solve/payload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/solve/payload.txt -------------------------------------------------------------------------------- /what-numbers/solve/searchattrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/what-numbers/solve/searchattrs.py -------------------------------------------------------------------------------- /x86fuck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/x86fuck/README.md -------------------------------------------------------------------------------- /x86fuck/handout/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/x86fuck/handout/Dockerfile -------------------------------------------------------------------------------- /x86fuck/handout/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/x86fuck/handout/chal.py -------------------------------------------------------------------------------- /x86fuck/handout/flag.txt: -------------------------------------------------------------------------------- 1 | jail{flag_will_be_here_on_remote} 2 | -------------------------------------------------------------------------------- /x86fuck/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/x86fuck/remote/Dockerfile -------------------------------------------------------------------------------- /x86fuck/remote/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/x86fuck/remote/chal.py -------------------------------------------------------------------------------- /x86fuck/remote/flag.txt: -------------------------------------------------------------------------------- 1 | jail{who_needs_all_those_opcodes_anyway_b95d22ea73} -------------------------------------------------------------------------------- /x86fuck/solve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/x86fuck/solve/README.md -------------------------------------------------------------------------------- /x86fuck/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/challenges-2024/HEAD/x86fuck/solve/solve.py --------------------------------------------------------------------------------