├── .gitmodules ├── LICENSE ├── README.md ├── crypto ├── brsaby │ ├── solve │ │ ├── secret.py │ │ └── solve.py │ └── static │ │ └── script.py ├── clipper-chip │ ├── .gitignore │ ├── hosted │ │ ├── Dockerfile │ │ └── chal.py │ ├── solve │ │ └── solve.py │ ├── src │ │ ├── datasheet │ │ │ ├── logo.png │ │ │ ├── mb9001c67-datasheet.tex │ │ │ ├── pinout.svg │ │ │ ├── soic8.svg │ │ │ ├── timing.json │ │ │ └── timing.svg │ │ └── hardware │ │ │ ├── cipher.gds │ │ │ ├── cipher.sv │ │ │ ├── gen_image.py │ │ │ └── tb.sv │ └── static │ │ ├── mb9001c67-datasheet.pdf │ │ └── mb9001c67.tar.xz ├── e000p │ ├── solve │ │ ├── secret.py │ │ ├── solve.py │ │ └── test_script.py │ └── static │ │ └── script.py ├── jwt │ ├── .gitignore │ ├── hosted │ │ ├── Dockerfile │ │ ├── app.py │ │ ├── jwt.py │ │ ├── models.py │ │ ├── requirements.txt │ │ ├── secret.py │ │ ├── startup.txt │ │ ├── static │ │ │ ├── img │ │ │ │ ├── background-image-golden.png │ │ │ │ ├── background-image-golden2.png │ │ │ │ ├── background-image-grey.png │ │ │ │ ├── background-image.png │ │ │ │ ├── border-image-golden.png │ │ │ │ ├── border-image-golden2.png │ │ │ │ ├── border-image-grey.png │ │ │ │ ├── border-image.png │ │ │ │ ├── button-background.png │ │ │ │ ├── button-down.png │ │ │ │ ├── button-golden-down.png │ │ │ │ ├── button-golden-hover.png │ │ │ │ ├── button-golden-left.png │ │ │ │ ├── button-golden-right.png │ │ │ │ ├── button-golden.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button.png │ │ │ │ ├── checkbox-golden-off.png │ │ │ │ ├── checkbox-golden-on.png │ │ │ │ ├── checkbox-off.png │ │ │ │ ├── checkbox-on.png │ │ │ │ ├── cursor │ │ │ │ │ ├── cursor.cur │ │ │ │ │ ├── default.png │ │ │ │ │ ├── grab-close.png │ │ │ │ │ ├── grab-open.png │ │ │ │ │ ├── point.png │ │ │ │ │ └── select.png │ │ │ │ ├── hr-golden.png │ │ │ │ ├── hr.png │ │ │ │ ├── icons │ │ │ │ │ ├── armor-slot.png │ │ │ │ │ ├── empty-slot.png │ │ │ │ │ ├── exclamation.png │ │ │ │ │ ├── helmet-slot.png │ │ │ │ │ ├── magic-slot.png │ │ │ │ │ ├── potion-blue.png │ │ │ │ │ ├── potion-green.png │ │ │ │ │ ├── potion-red.png │ │ │ │ │ ├── potion-slot.png │ │ │ │ │ ├── ring-slot.png │ │ │ │ │ ├── shield-slot.png │ │ │ │ │ ├── shield.png │ │ │ │ │ ├── shoes-slot.png │ │ │ │ │ ├── sword.png │ │ │ │ │ └── weapon-slot.png │ │ │ │ ├── progress-bar-left.png │ │ │ │ ├── progress-bar-right.png │ │ │ │ ├── progress-bar-track.png │ │ │ │ ├── progress-blue.png │ │ │ │ ├── progress-green.png │ │ │ │ ├── progress-red.png │ │ │ │ ├── progress.png │ │ │ │ ├── radio-golden-off.png │ │ │ │ ├── radio-golden-on.png │ │ │ │ ├── radio-off.png │ │ │ │ ├── radio-on.png │ │ │ │ ├── scrollbar-button.png │ │ │ │ ├── scrollbar-thumb.png │ │ │ │ ├── scrollbar-track.png │ │ │ │ ├── select-background-image.png │ │ │ │ ├── select-border-image.png │ │ │ │ ├── slider-left-golden.png │ │ │ │ ├── slider-left.png │ │ │ │ ├── slider-right-golden.png │ │ │ │ ├── slider-right.png │ │ │ │ ├── slider-thumb-golden.png │ │ │ │ ├── slider-thumb.png │ │ │ │ ├── slider-track-golden.png │ │ │ │ └── slider-track.png │ │ │ ├── rpgui.min.css │ │ │ ├── rpgui.min.js │ │ │ └── style.css │ │ └── templates │ │ │ ├── base.html │ │ │ ├── home.html │ │ │ ├── login.html │ │ │ └── register.html │ ├── solve │ │ ├── jwt.py │ │ └── solve.py │ └── static │ │ └── jwt.tar.xz ├── qotp │ ├── hosted │ │ ├── Dockerfile │ │ ├── secret.py │ │ └── server.py │ ├── solve │ │ ├── poc.py │ │ └── solve.py │ └── static │ │ └── server.py ├── spiral-baby │ ├── .gitignore │ ├── hosted │ │ ├── Dockerfile │ │ ├── main.py │ │ ├── secret.py │ │ ├── spiral.py │ │ └── utils.py │ ├── solve │ │ ├── exploit.py │ │ ├── spiral.py │ │ └── utils.py │ └── static │ │ ├── main.py │ │ ├── spiral.py │ │ └── utils.py └── spiral │ ├── .gitignore │ ├── hosted │ ├── Dockerfile │ ├── main.py │ ├── secret.py │ ├── spiral.py │ └── utils.py │ ├── solve │ ├── exploit.py │ ├── spiral.py │ └── utils.py │ └── static │ ├── main.py │ ├── spiral.py │ └── utils.py ├── misc ├── Bored-hacker │ └── challenge.yaml ├── disukoodo │ ├── hosted │ │ ├── Dockerfile │ │ └── bot.py │ └── static │ │ └── bot.py ├── flag-hoarding │ └── static │ │ └── LEAK_20220804_SCAN_1.jpeg └── maplebacoin │ ├── hosted │ ├── Dockerfile │ └── src │ │ ├── .gitignore │ │ ├── .node-version │ │ ├── contracts │ │ ├── Context.sol │ │ ├── ERC20.sol │ │ ├── IERC20.sol │ │ ├── IERC20Metadata.sol │ │ ├── MapleBaCoin.sol │ │ ├── MapleBankon.sol │ │ └── Ownable.sol │ │ ├── package-lock.json │ │ ├── package.json │ │ └── ui │ │ ├── index.js │ │ └── static │ │ └── index.html │ ├── solve │ └── Solve.sol │ └── static │ ├── Dockerfile │ ├── README.md │ └── src │ ├── .gitignore │ ├── .node-version │ ├── .npmignore │ ├── contracts │ ├── MapleBaCoin.sol │ └── MapleBankon.sol │ ├── hardhat.config.js │ ├── package-lock.json │ ├── package.json │ ├── patches │ └── hardhat+2.10.2.patch │ ├── scripts │ ├── deploy.js │ └── solve.js │ ├── start.sh │ └── ui │ ├── index.js │ └── static │ └── index.html ├── pwn ├── ebcsic │ ├── README.md │ ├── hosted │ │ ├── Dockerfile │ │ ├── chal.py │ │ ├── flag │ │ └── xinetd.conf │ ├── solve │ │ ├── gen_solution.py │ │ ├── shellcode-x86 │ │ ├── solution.bin │ │ └── solution.txt │ └── static │ │ └── chal.py ├── no-flag-4-u │ ├── hosted │ │ ├── Dockerfile │ │ ├── banner_fail │ │ ├── chal │ │ ├── challenge.sh │ │ ├── flag.txt │ │ ├── libno_flag_4_u.so │ │ ├── run.sh │ │ └── xinetd.conf │ ├── solve │ │ └── exploit.py │ ├── src │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── banner_fail │ │ ├── build.dockerfile │ │ ├── build.sh │ │ ├── chal.c │ │ ├── challenge.sh │ │ ├── flag.txt │ │ ├── no-flag-4-u │ │ │ ├── .cargo │ │ │ │ └── config.toml │ │ │ ├── .gitignore │ │ │ ├── Cargo.toml │ │ │ ├── build.rs │ │ │ ├── rust-toolchain │ │ │ └── src │ │ │ │ ├── config.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── log_server.rs │ │ │ │ ├── preload_hooks.rs │ │ │ │ ├── preload_hooks │ │ │ │ ├── gets.rs │ │ │ │ ├── heap.rs │ │ │ │ ├── libc_start_main.rs │ │ │ │ ├── printf.rs │ │ │ │ ├── puts.rs │ │ │ │ ├── read.rs │ │ │ │ ├── scanf.rs │ │ │ │ └── write.rs │ │ │ │ └── utils.rs │ │ ├── run.sh │ │ └── xinetd.conf │ └── static │ │ ├── chal │ │ ├── libno_flag_4_u.so │ │ └── run.sh ├── printf │ ├── hosted │ │ ├── Dockerfile │ │ ├── banner_fail │ │ ├── chal │ │ ├── challenge.sh │ │ ├── flag.txt │ │ └── xinetd.conf │ ├── solve │ │ ├── exploit.py │ │ └── libc-2.31.so │ ├── src │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── banner_fail │ │ ├── build.dockerfile │ │ ├── build.sh │ │ ├── chal.c │ │ ├── challenge.sh │ │ ├── flag.txt │ │ └── xinetd.conf │ └── static │ │ └── chal ├── puzzling-oversight │ ├── hosted │ │ ├── Dockerfile │ │ ├── banner_fail │ │ ├── chal │ │ ├── challenge.sh │ │ ├── flag.txt │ │ └── xinetd.conf │ ├── solve │ │ └── solve.py │ ├── src │ │ ├── build.sh │ │ └── chall.c │ └── static │ │ ├── Dockerfile │ │ └── puzzling-oversight ├── warmup1 │ ├── hosted │ │ ├── Dockerfile │ │ ├── banner_fail │ │ ├── chal │ │ ├── challenge.sh │ │ ├── flag.txt │ │ └── xinetd.conf │ ├── solve │ │ └── exploit.py │ ├── src │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── banner_fail │ │ ├── build.dockerfile │ │ ├── build.sh │ │ ├── chal.c │ │ ├── challenge.sh │ │ ├── flag.txt │ │ └── xinetd.conf │ └── static │ │ └── chal └── warmup2 │ ├── hosted │ ├── Dockerfile │ ├── banner_fail │ ├── chal │ ├── challenge.sh │ ├── flag.txt │ └── xinetd.conf │ ├── solve │ ├── exploit.py │ └── libc-2.31.so │ ├── src │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── banner_fail │ ├── build.dockerfile │ ├── build.sh │ ├── chal.c │ ├── challenge.sh │ ├── flag.txt │ └── xinetd.conf │ └── static │ └── chal ├── rev ├── badcontroller │ ├── solve │ │ └── solve.py │ ├── src │ │ ├── .vscode │ │ │ └── arduino.json │ │ ├── build.bat │ │ ├── challdriver.c │ │ ├── challemu │ │ │ └── challemu.ino │ │ └── encrypt.py │ └── static │ │ ├── challdriver.exe │ │ └── log.pcap ├── confounded-pondering-unit │ ├── LICENSE │ ├── src │ │ ├── README.md │ │ ├── isa.asm │ │ └── multistack_obf.asm │ └── static │ │ ├── CPU_IO.circ │ │ ├── README.md │ │ └── flag-checker-v5.bin ├── maplewave │ ├── solve │ │ └── solve.py │ ├── src │ │ ├── Makefile │ │ └── maplewave.c │ └── static │ │ ├── flag0.maplewave │ │ ├── flag1.maplewave │ │ ├── flag2.maplewave │ │ └── maplewave ├── scotty │ ├── src │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── generate.py │ │ └── scotty.hs │ └── static │ │ └── scotty ├── vm-new │ └── static │ │ ├── chal.sv │ │ ├── data.txt │ │ └── prog.txt └── vm │ ├── src │ ├── assemble.py │ ├── cpu.sv │ ├── datapath.sv │ ├── enc.py │ ├── flag.txt │ ├── flag_check.s │ ├── gen_data.py │ └── top.sv │ └── static │ ├── chal.sv │ ├── data.txt │ └── prog.txt └── web ├── VieneLibrary ├── hosted │ ├── .gitignore │ ├── Dockerfile │ ├── run.sh │ ├── vieneclient │ │ ├── app.js │ │ ├── package-lock.json │ │ └── package.json │ └── vieneserver │ │ ├── .ruby-version │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── Rakefile │ │ ├── app │ │ ├── assets │ │ │ ├── 1.txt │ │ │ ├── 2.txt │ │ │ ├── 3.txt │ │ │ └── config │ │ │ │ └── manifest.js │ │ └── controllers │ │ │ ├── application_controller.rb │ │ │ └── viene_controller.rb │ │ ├── bin │ │ ├── bundle │ │ ├── importmap │ │ ├── rails │ │ ├── rake │ │ └── setup │ │ ├── config.ru │ │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── cable.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ ├── development.rb │ │ │ └── production.rb │ │ ├── importmap.rb │ │ ├── initializers │ │ │ ├── assets.rb │ │ │ ├── content_security_policy.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── inflections.rb │ │ │ └── permissions_policy.rb │ │ ├── locales │ │ │ └── en.yml │ │ ├── puma.rb │ │ └── routes.rb │ │ └── flag.txt └── solve │ └── solve.py ├── artgallery ├── .gitignore └── hosted │ ├── Dockerfile │ ├── flag.txt │ ├── ftp │ ├── files │ │ ├── bunny.png │ │ ├── girl.png │ │ ├── goose.png │ │ └── motorcycle.png │ ├── ftpserver.js │ ├── package-lock.json │ └── package.json │ ├── http │ ├── app.js │ ├── package-lock.json │ ├── package.json │ └── views │ │ ├── pages │ │ ├── gallery.ejs │ │ ├── index.ejs │ │ └── upload.ejs │ │ └── partials │ │ ├── footer.ejs │ │ ├── head.ejs │ │ └── header.ejs │ └── run.sh ├── bookstore ├── challenge-description.md ├── docker-compose.yml ├── hosted │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── db.js │ ├── index.js │ ├── init.sh │ ├── init.sql │ ├── package.json │ ├── static │ │ ├── assets │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── img │ │ │ │ ├── background-image-golden.png │ │ │ │ ├── background-image-golden2.png │ │ │ │ ├── background-image-grey.png │ │ │ │ ├── background-image.png │ │ │ │ ├── border-image-golden.png │ │ │ │ ├── border-image-golden2.png │ │ │ │ ├── border-image-grey.png │ │ │ │ ├── border-image.png │ │ │ │ ├── button-background.png │ │ │ │ ├── button-down.png │ │ │ │ ├── button-golden-down.png │ │ │ │ ├── button-golden-hover.png │ │ │ │ ├── button-golden-left.png │ │ │ │ ├── button-golden-right.png │ │ │ │ ├── button-golden.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button.png │ │ │ │ ├── checkbox-golden-off.png │ │ │ │ ├── checkbox-golden-on.png │ │ │ │ ├── checkbox-off.png │ │ │ │ ├── checkbox-on.png │ │ │ │ ├── cursor │ │ │ │ │ ├── cursor.cur │ │ │ │ │ ├── default.png │ │ │ │ │ ├── grab-close.png │ │ │ │ │ ├── grab-open.png │ │ │ │ │ ├── point.png │ │ │ │ │ └── select.png │ │ │ │ ├── hr-golden.png │ │ │ │ ├── hr.png │ │ │ │ ├── icons │ │ │ │ │ ├── armor-slot.png │ │ │ │ │ ├── empty-slot.png │ │ │ │ │ ├── exclamation.png │ │ │ │ │ ├── helmet-slot.png │ │ │ │ │ ├── magic-slot.png │ │ │ │ │ ├── potion-blue.png │ │ │ │ │ ├── potion-green.png │ │ │ │ │ ├── potion-red.png │ │ │ │ │ ├── potion-slot.png │ │ │ │ │ ├── ring-slot.png │ │ │ │ │ ├── shield-slot.png │ │ │ │ │ ├── shield.png │ │ │ │ │ ├── shoes-slot.png │ │ │ │ │ ├── sword.png │ │ │ │ │ └── weapon-slot.png │ │ │ │ ├── progress-bar-left.png │ │ │ │ ├── progress-bar-right.png │ │ │ │ ├── progress-bar-track.png │ │ │ │ ├── progress-blue.png │ │ │ │ ├── progress-green.png │ │ │ │ ├── progress-red.png │ │ │ │ ├── progress.png │ │ │ │ ├── radio-golden-off.png │ │ │ │ ├── radio-golden-on.png │ │ │ │ ├── radio-off.png │ │ │ │ ├── radio-on.png │ │ │ │ ├── scrollbar-button.png │ │ │ │ ├── scrollbar-thumb.png │ │ │ │ ├── scrollbar-track.png │ │ │ │ ├── select-background-image.png │ │ │ │ ├── select-border-image.png │ │ │ │ ├── slider-left-golden.png │ │ │ │ ├── slider-left.png │ │ │ │ ├── slider-right-golden.png │ │ │ │ ├── slider-right.png │ │ │ │ ├── slider-thumb-golden.png │ │ │ │ ├── slider-thumb.png │ │ │ │ ├── slider-track-golden.png │ │ │ │ └── slider-track.png │ │ │ ├── package.json │ │ │ ├── rpgui.css │ │ │ ├── rpgui.js │ │ │ ├── rpgui.min.css │ │ │ ├── rpgui.min.js │ │ │ ├── style.css │ │ │ └── test.html │ │ └── img │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── validator.js │ └── views │ │ ├── books.ejs │ │ ├── catalogue.ejs │ │ ├── index.ejs │ │ ├── login.ejs │ │ └── register.ejs ├── solve │ └── script.py └── static │ └── bookstore.zip ├── honksay ├── .gitignore ├── hosted │ ├── Dockerfile │ ├── app.js │ ├── goose.js │ ├── package-lock.json │ ├── package.json │ └── public │ │ └── images │ │ └── goosevie.png └── static │ └── honksay.tar.gz └── pickle-factory ├── challenge-description.md ├── docker-compose.yml ├── hosted ├── .gitignore ├── Dockerfile ├── app.py ├── flag.log ├── requirements.txt └── templates │ └── index.html ├── solve └── solve.py └── static └── pickle-factory.zip /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/README.md -------------------------------------------------------------------------------- /crypto/brsaby/solve/secret.py: -------------------------------------------------------------------------------- 1 | FLAG = b"maple{s0lving_th3m_p3rf3ct_r000ts_1s_fun}" 2 | -------------------------------------------------------------------------------- /crypto/brsaby/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/brsaby/solve/solve.py -------------------------------------------------------------------------------- /crypto/brsaby/static/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/brsaby/static/script.py -------------------------------------------------------------------------------- /crypto/clipper-chip/.gitignore: -------------------------------------------------------------------------------- 1 | *.vcd 2 | -------------------------------------------------------------------------------- /crypto/clipper-chip/hosted/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/clipper-chip/hosted/Dockerfile -------------------------------------------------------------------------------- /crypto/clipper-chip/hosted/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/clipper-chip/hosted/chal.py -------------------------------------------------------------------------------- /crypto/clipper-chip/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/clipper-chip/solve/solve.py -------------------------------------------------------------------------------- /crypto/clipper-chip/src/datasheet/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/clipper-chip/src/datasheet/logo.png -------------------------------------------------------------------------------- /crypto/clipper-chip/src/datasheet/mb9001c67-datasheet.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/clipper-chip/src/datasheet/mb9001c67-datasheet.tex -------------------------------------------------------------------------------- /crypto/clipper-chip/src/datasheet/pinout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/clipper-chip/src/datasheet/pinout.svg -------------------------------------------------------------------------------- /crypto/clipper-chip/src/datasheet/soic8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/clipper-chip/src/datasheet/soic8.svg -------------------------------------------------------------------------------- /crypto/clipper-chip/src/datasheet/timing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/clipper-chip/src/datasheet/timing.json -------------------------------------------------------------------------------- /crypto/clipper-chip/src/datasheet/timing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/clipper-chip/src/datasheet/timing.svg -------------------------------------------------------------------------------- /crypto/clipper-chip/src/hardware/cipher.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/clipper-chip/src/hardware/cipher.gds -------------------------------------------------------------------------------- /crypto/clipper-chip/src/hardware/cipher.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/clipper-chip/src/hardware/cipher.sv -------------------------------------------------------------------------------- /crypto/clipper-chip/src/hardware/gen_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/clipper-chip/src/hardware/gen_image.py -------------------------------------------------------------------------------- /crypto/clipper-chip/src/hardware/tb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/clipper-chip/src/hardware/tb.sv -------------------------------------------------------------------------------- /crypto/clipper-chip/static/mb9001c67-datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/clipper-chip/static/mb9001c67-datasheet.pdf -------------------------------------------------------------------------------- /crypto/clipper-chip/static/mb9001c67.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/clipper-chip/static/mb9001c67.tar.xz -------------------------------------------------------------------------------- /crypto/e000p/solve/secret.py: -------------------------------------------------------------------------------- 1 | FLAG = b"maple{th3_3dw4rd_cu12ve_and_kn0wn_bits_dlp}" 2 | -------------------------------------------------------------------------------- /crypto/e000p/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/e000p/solve/solve.py -------------------------------------------------------------------------------- /crypto/e000p/solve/test_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/e000p/solve/test_script.py -------------------------------------------------------------------------------- /crypto/e000p/static/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/e000p/static/script.py -------------------------------------------------------------------------------- /crypto/jwt/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ -------------------------------------------------------------------------------- /crypto/jwt/hosted/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/Dockerfile -------------------------------------------------------------------------------- /crypto/jwt/hosted/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/app.py -------------------------------------------------------------------------------- /crypto/jwt/hosted/jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/jwt.py -------------------------------------------------------------------------------- /crypto/jwt/hosted/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/models.py -------------------------------------------------------------------------------- /crypto/jwt/hosted/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/requirements.txt -------------------------------------------------------------------------------- /crypto/jwt/hosted/secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/secret.py -------------------------------------------------------------------------------- /crypto/jwt/hosted/startup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/startup.txt -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/background-image-golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/background-image-golden.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/background-image-golden2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/background-image-golden2.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/background-image-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/background-image-grey.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/background-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/background-image.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/border-image-golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/border-image-golden.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/border-image-golden2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/border-image-golden2.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/border-image-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/border-image-grey.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/border-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/border-image.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/button-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/button-background.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/button-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/button-down.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/button-golden-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/button-golden-down.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/button-golden-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/button-golden-hover.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/button-golden-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/button-golden-left.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/button-golden-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/button-golden-right.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/button-golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/button-golden.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/button-hover.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/button.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/checkbox-golden-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/checkbox-golden-off.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/checkbox-golden-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/checkbox-golden-on.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/checkbox-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/checkbox-off.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/checkbox-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/checkbox-on.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/cursor/cursor.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/cursor/cursor.cur -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/cursor/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/cursor/default.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/cursor/grab-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/cursor/grab-close.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/cursor/grab-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/cursor/grab-open.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/cursor/point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/cursor/point.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/cursor/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/cursor/select.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/hr-golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/hr-golden.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/hr.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/icons/armor-slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/icons/armor-slot.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/icons/empty-slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/icons/empty-slot.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/icons/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/icons/exclamation.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/icons/helmet-slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/icons/helmet-slot.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/icons/magic-slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/icons/magic-slot.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/icons/potion-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/icons/potion-blue.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/icons/potion-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/icons/potion-green.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/icons/potion-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/icons/potion-red.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/icons/potion-slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/icons/potion-slot.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/icons/ring-slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/icons/ring-slot.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/icons/shield-slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/icons/shield-slot.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/icons/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/icons/shield.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/icons/shoes-slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/icons/shoes-slot.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/icons/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/icons/sword.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/icons/weapon-slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/icons/weapon-slot.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/progress-bar-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/progress-bar-left.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/progress-bar-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/progress-bar-right.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/progress-bar-track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/progress-bar-track.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/progress-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/progress-blue.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/progress-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/progress-green.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/progress-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/progress-red.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/progress.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/radio-golden-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/radio-golden-off.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/radio-golden-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/radio-golden-on.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/radio-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/radio-off.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/radio-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/radio-on.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/scrollbar-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/scrollbar-button.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/scrollbar-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/scrollbar-thumb.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/scrollbar-track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/scrollbar-track.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/select-background-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/select-background-image.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/select-border-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/select-border-image.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/slider-left-golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/slider-left-golden.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/slider-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/slider-left.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/slider-right-golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/slider-right-golden.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/slider-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/slider-right.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/slider-thumb-golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/slider-thumb-golden.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/slider-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/slider-thumb.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/slider-track-golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/slider-track-golden.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/img/slider-track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/img/slider-track.png -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/rpgui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/rpgui.min.css -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/rpgui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/rpgui.min.js -------------------------------------------------------------------------------- /crypto/jwt/hosted/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/static/style.css -------------------------------------------------------------------------------- /crypto/jwt/hosted/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/templates/base.html -------------------------------------------------------------------------------- /crypto/jwt/hosted/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/templates/home.html -------------------------------------------------------------------------------- /crypto/jwt/hosted/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/templates/login.html -------------------------------------------------------------------------------- /crypto/jwt/hosted/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/hosted/templates/register.html -------------------------------------------------------------------------------- /crypto/jwt/solve/jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/solve/jwt.py -------------------------------------------------------------------------------- /crypto/jwt/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/solve/solve.py -------------------------------------------------------------------------------- /crypto/jwt/static/jwt.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/jwt/static/jwt.tar.xz -------------------------------------------------------------------------------- /crypto/qotp/hosted/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/qotp/hosted/Dockerfile -------------------------------------------------------------------------------- /crypto/qotp/hosted/secret.py: -------------------------------------------------------------------------------- 1 | FLAG = "maple{ru1n3d_BY_th0SE_d412n_r0t4ti0Ns_4ga1N}" 2 | -------------------------------------------------------------------------------- /crypto/qotp/hosted/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/qotp/hosted/server.py -------------------------------------------------------------------------------- /crypto/qotp/solve/poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/qotp/solve/poc.py -------------------------------------------------------------------------------- /crypto/qotp/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/qotp/solve/solve.py -------------------------------------------------------------------------------- /crypto/qotp/static/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/qotp/static/server.py -------------------------------------------------------------------------------- /crypto/spiral-baby/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ -------------------------------------------------------------------------------- /crypto/spiral-baby/hosted/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/spiral-baby/hosted/Dockerfile -------------------------------------------------------------------------------- /crypto/spiral-baby/hosted/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/spiral-baby/hosted/main.py -------------------------------------------------------------------------------- /crypto/spiral-baby/hosted/secret.py: -------------------------------------------------------------------------------- 1 | flag = b"maple{0nt0_th3_r34l_sp!r4l_0be088}" 2 | -------------------------------------------------------------------------------- /crypto/spiral-baby/hosted/spiral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/spiral-baby/hosted/spiral.py -------------------------------------------------------------------------------- /crypto/spiral-baby/hosted/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/spiral-baby/hosted/utils.py -------------------------------------------------------------------------------- /crypto/spiral-baby/solve/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/spiral-baby/solve/exploit.py -------------------------------------------------------------------------------- /crypto/spiral-baby/solve/spiral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/spiral-baby/solve/spiral.py -------------------------------------------------------------------------------- /crypto/spiral-baby/solve/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/spiral-baby/solve/utils.py -------------------------------------------------------------------------------- /crypto/spiral-baby/static/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/spiral-baby/static/main.py -------------------------------------------------------------------------------- /crypto/spiral-baby/static/spiral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/spiral-baby/static/spiral.py -------------------------------------------------------------------------------- /crypto/spiral-baby/static/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/spiral-baby/static/utils.py -------------------------------------------------------------------------------- /crypto/spiral/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ -------------------------------------------------------------------------------- /crypto/spiral/hosted/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/spiral/hosted/Dockerfile -------------------------------------------------------------------------------- /crypto/spiral/hosted/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/spiral/hosted/main.py -------------------------------------------------------------------------------- /crypto/spiral/hosted/secret.py: -------------------------------------------------------------------------------- 1 | flag = b"maple{sp1r4l!ng_squ4r3s_2f220b}" 2 | -------------------------------------------------------------------------------- /crypto/spiral/hosted/spiral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/spiral/hosted/spiral.py -------------------------------------------------------------------------------- /crypto/spiral/hosted/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/spiral/hosted/utils.py -------------------------------------------------------------------------------- /crypto/spiral/solve/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/spiral/solve/exploit.py -------------------------------------------------------------------------------- /crypto/spiral/solve/spiral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/spiral/solve/spiral.py -------------------------------------------------------------------------------- /crypto/spiral/solve/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/spiral/solve/utils.py -------------------------------------------------------------------------------- /crypto/spiral/static/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/spiral/static/main.py -------------------------------------------------------------------------------- /crypto/spiral/static/spiral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/spiral/static/spiral.py -------------------------------------------------------------------------------- /crypto/spiral/static/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/crypto/spiral/static/utils.py -------------------------------------------------------------------------------- /misc/Bored-hacker/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/Bored-hacker/challenge.yaml -------------------------------------------------------------------------------- /misc/disukoodo/hosted/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/disukoodo/hosted/Dockerfile -------------------------------------------------------------------------------- /misc/disukoodo/hosted/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/disukoodo/hosted/bot.py -------------------------------------------------------------------------------- /misc/disukoodo/static/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/disukoodo/static/bot.py -------------------------------------------------------------------------------- /misc/flag-hoarding/static/LEAK_20220804_SCAN_1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/flag-hoarding/static/LEAK_20220804_SCAN_1.jpeg -------------------------------------------------------------------------------- /misc/maplebacoin/hosted/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/hosted/Dockerfile -------------------------------------------------------------------------------- /misc/maplebacoin/hosted/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/hosted/src/.gitignore -------------------------------------------------------------------------------- /misc/maplebacoin/hosted/src/.node-version: -------------------------------------------------------------------------------- 1 | 14.18.3 2 | -------------------------------------------------------------------------------- /misc/maplebacoin/hosted/src/contracts/Context.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/hosted/src/contracts/Context.sol -------------------------------------------------------------------------------- /misc/maplebacoin/hosted/src/contracts/ERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/hosted/src/contracts/ERC20.sol -------------------------------------------------------------------------------- /misc/maplebacoin/hosted/src/contracts/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/hosted/src/contracts/IERC20.sol -------------------------------------------------------------------------------- /misc/maplebacoin/hosted/src/contracts/IERC20Metadata.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/hosted/src/contracts/IERC20Metadata.sol -------------------------------------------------------------------------------- /misc/maplebacoin/hosted/src/contracts/MapleBaCoin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/hosted/src/contracts/MapleBaCoin.sol -------------------------------------------------------------------------------- /misc/maplebacoin/hosted/src/contracts/MapleBankon.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/hosted/src/contracts/MapleBankon.sol -------------------------------------------------------------------------------- /misc/maplebacoin/hosted/src/contracts/Ownable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/hosted/src/contracts/Ownable.sol -------------------------------------------------------------------------------- /misc/maplebacoin/hosted/src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/hosted/src/package-lock.json -------------------------------------------------------------------------------- /misc/maplebacoin/hosted/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/hosted/src/package.json -------------------------------------------------------------------------------- /misc/maplebacoin/hosted/src/ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/hosted/src/ui/index.js -------------------------------------------------------------------------------- /misc/maplebacoin/hosted/src/ui/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/hosted/src/ui/static/index.html -------------------------------------------------------------------------------- /misc/maplebacoin/solve/Solve.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/solve/Solve.sol -------------------------------------------------------------------------------- /misc/maplebacoin/static/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/static/Dockerfile -------------------------------------------------------------------------------- /misc/maplebacoin/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/static/README.md -------------------------------------------------------------------------------- /misc/maplebacoin/static/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/static/src/.gitignore -------------------------------------------------------------------------------- /misc/maplebacoin/static/src/.node-version: -------------------------------------------------------------------------------- 1 | 14.18.3 2 | -------------------------------------------------------------------------------- /misc/maplebacoin/static/src/.npmignore: -------------------------------------------------------------------------------- 1 | hardhat.config.ts 2 | scripts 3 | test 4 | -------------------------------------------------------------------------------- /misc/maplebacoin/static/src/contracts/MapleBaCoin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/static/src/contracts/MapleBaCoin.sol -------------------------------------------------------------------------------- /misc/maplebacoin/static/src/contracts/MapleBankon.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/static/src/contracts/MapleBankon.sol -------------------------------------------------------------------------------- /misc/maplebacoin/static/src/hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/static/src/hardhat.config.js -------------------------------------------------------------------------------- /misc/maplebacoin/static/src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/static/src/package-lock.json -------------------------------------------------------------------------------- /misc/maplebacoin/static/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/static/src/package.json -------------------------------------------------------------------------------- /misc/maplebacoin/static/src/patches/hardhat+2.10.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/static/src/patches/hardhat+2.10.2.patch -------------------------------------------------------------------------------- /misc/maplebacoin/static/src/scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/static/src/scripts/deploy.js -------------------------------------------------------------------------------- /misc/maplebacoin/static/src/scripts/solve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/static/src/scripts/solve.js -------------------------------------------------------------------------------- /misc/maplebacoin/static/src/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/static/src/start.sh -------------------------------------------------------------------------------- /misc/maplebacoin/static/src/ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/static/src/ui/index.js -------------------------------------------------------------------------------- /misc/maplebacoin/static/src/ui/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/misc/maplebacoin/static/src/ui/static/index.html -------------------------------------------------------------------------------- /pwn/ebcsic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/ebcsic/README.md -------------------------------------------------------------------------------- /pwn/ebcsic/hosted/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/ebcsic/hosted/Dockerfile -------------------------------------------------------------------------------- /pwn/ebcsic/hosted/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/ebcsic/hosted/chal.py -------------------------------------------------------------------------------- /pwn/ebcsic/hosted/flag: -------------------------------------------------------------------------------- 1 | maple{can't_4ddr3ss_mem0ry?_n0_pr0bl3m_with_EBCDIC_07321a5c} 2 | -------------------------------------------------------------------------------- /pwn/ebcsic/hosted/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/ebcsic/hosted/xinetd.conf -------------------------------------------------------------------------------- /pwn/ebcsic/solve/gen_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/ebcsic/solve/gen_solution.py -------------------------------------------------------------------------------- /pwn/ebcsic/solve/shellcode-x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/ebcsic/solve/shellcode-x86 -------------------------------------------------------------------------------- /pwn/ebcsic/solve/solution.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/ebcsic/solve/solution.bin -------------------------------------------------------------------------------- /pwn/ebcsic/solve/solution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/ebcsic/solve/solution.txt -------------------------------------------------------------------------------- /pwn/ebcsic/static/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/ebcsic/static/chal.py -------------------------------------------------------------------------------- /pwn/no-flag-4-u/hosted/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/hosted/Dockerfile -------------------------------------------------------------------------------- /pwn/no-flag-4-u/hosted/banner_fail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/hosted/banner_fail -------------------------------------------------------------------------------- /pwn/no-flag-4-u/hosted/chal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/hosted/chal -------------------------------------------------------------------------------- /pwn/no-flag-4-u/hosted/challenge.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | cd /ctf 3 | ./run.sh 4 | -------------------------------------------------------------------------------- /pwn/no-flag-4-u/hosted/flag.txt: -------------------------------------------------------------------------------- 1 | maple{OwO_flag_for_you?} 2 | -------------------------------------------------------------------------------- /pwn/no-flag-4-u/hosted/libno_flag_4_u.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/hosted/libno_flag_4_u.so -------------------------------------------------------------------------------- /pwn/no-flag-4-u/hosted/run.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | 3 | LD_PRELOAD=./libno_flag_4_u.so ./chal 4 | -------------------------------------------------------------------------------- /pwn/no-flag-4-u/hosted/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/hosted/xinetd.conf -------------------------------------------------------------------------------- /pwn/no-flag-4-u/solve/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/solve/exploit.py -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/.gitignore: -------------------------------------------------------------------------------- 1 | chal 2 | libno_flag_4_u.so 3 | -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/src/Dockerfile -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/src/Makefile -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/banner_fail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/src/banner_fail -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/build.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/src/build.dockerfile -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/src/build.sh -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/chal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/src/chal.c -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/challenge.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | cd /ctf 3 | ./run.sh 4 | -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/flag.txt: -------------------------------------------------------------------------------- 1 | maple{OwO_flag_for_you?} 2 | -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/no-flag-4-u/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/src/no-flag-4-u/.cargo/config.toml -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/no-flag-4-u/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/no-flag-4-u/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/src/no-flag-4-u/Cargo.toml -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/no-flag-4-u/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/src/no-flag-4-u/build.rs -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/no-flag-4-u/rust-toolchain: -------------------------------------------------------------------------------- 1 | nightly 2 | -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/no-flag-4-u/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/src/no-flag-4-u/src/config.rs -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/no-flag-4-u/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/src/no-flag-4-u/src/lib.rs -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/no-flag-4-u/src/log_server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/src/no-flag-4-u/src/log_server.rs -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/no-flag-4-u/src/preload_hooks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/src/no-flag-4-u/src/preload_hooks.rs -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/no-flag-4-u/src/preload_hooks/gets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/src/no-flag-4-u/src/preload_hooks/gets.rs -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/no-flag-4-u/src/preload_hooks/heap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/src/no-flag-4-u/src/preload_hooks/heap.rs -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/no-flag-4-u/src/preload_hooks/libc_start_main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/src/no-flag-4-u/src/preload_hooks/libc_start_main.rs -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/no-flag-4-u/src/preload_hooks/printf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/src/no-flag-4-u/src/preload_hooks/printf.rs -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/no-flag-4-u/src/preload_hooks/puts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/src/no-flag-4-u/src/preload_hooks/puts.rs -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/no-flag-4-u/src/preload_hooks/read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/src/no-flag-4-u/src/preload_hooks/read.rs -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/no-flag-4-u/src/preload_hooks/scanf.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/no-flag-4-u/src/preload_hooks/write.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/src/no-flag-4-u/src/preload_hooks/write.rs -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/no-flag-4-u/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/src/no-flag-4-u/src/utils.rs -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/run.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | 3 | LD_PRELOAD=./libno_flag_4_u.so ./chal 4 | -------------------------------------------------------------------------------- /pwn/no-flag-4-u/src/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/src/xinetd.conf -------------------------------------------------------------------------------- /pwn/no-flag-4-u/static/chal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/static/chal -------------------------------------------------------------------------------- /pwn/no-flag-4-u/static/libno_flag_4_u.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/no-flag-4-u/static/libno_flag_4_u.so -------------------------------------------------------------------------------- /pwn/no-flag-4-u/static/run.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | 3 | LD_PRELOAD=./libno_flag_4_u.so ./chal 4 | -------------------------------------------------------------------------------- /pwn/printf/hosted/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/printf/hosted/Dockerfile -------------------------------------------------------------------------------- /pwn/printf/hosted/banner_fail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/printf/hosted/banner_fail -------------------------------------------------------------------------------- /pwn/printf/hosted/chal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/printf/hosted/chal -------------------------------------------------------------------------------- /pwn/printf/hosted/challenge.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | cd /ctf 3 | ./chal 4 | -------------------------------------------------------------------------------- /pwn/printf/hosted/flag.txt: -------------------------------------------------------------------------------- 1 | maple{F0wm47_57w1ng_3xpl01t_UwU} 2 | -------------------------------------------------------------------------------- /pwn/printf/hosted/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/printf/hosted/xinetd.conf -------------------------------------------------------------------------------- /pwn/printf/solve/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/printf/solve/exploit.py -------------------------------------------------------------------------------- /pwn/printf/solve/libc-2.31.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/printf/solve/libc-2.31.so -------------------------------------------------------------------------------- /pwn/printf/src/.gitignore: -------------------------------------------------------------------------------- 1 | chal 2 | -------------------------------------------------------------------------------- /pwn/printf/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/printf/src/Dockerfile -------------------------------------------------------------------------------- /pwn/printf/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/printf/src/Makefile -------------------------------------------------------------------------------- /pwn/printf/src/banner_fail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/printf/src/banner_fail -------------------------------------------------------------------------------- /pwn/printf/src/build.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/printf/src/build.dockerfile -------------------------------------------------------------------------------- /pwn/printf/src/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/printf/src/build.sh -------------------------------------------------------------------------------- /pwn/printf/src/chal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/printf/src/chal.c -------------------------------------------------------------------------------- /pwn/printf/src/challenge.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | cd /ctf 3 | ./chal 4 | -------------------------------------------------------------------------------- /pwn/printf/src/flag.txt: -------------------------------------------------------------------------------- 1 | maple{F0wm47_57w1ng_3xpl01t_UwU} 2 | -------------------------------------------------------------------------------- /pwn/printf/src/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/printf/src/xinetd.conf -------------------------------------------------------------------------------- /pwn/printf/static/chal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/printf/static/chal -------------------------------------------------------------------------------- /pwn/puzzling-oversight/hosted/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/puzzling-oversight/hosted/Dockerfile -------------------------------------------------------------------------------- /pwn/puzzling-oversight/hosted/banner_fail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/puzzling-oversight/hosted/banner_fail -------------------------------------------------------------------------------- /pwn/puzzling-oversight/hosted/chal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/puzzling-oversight/hosted/chal -------------------------------------------------------------------------------- /pwn/puzzling-oversight/hosted/challenge.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | cd /ctf 3 | ./chal 4 | -------------------------------------------------------------------------------- /pwn/puzzling-oversight/hosted/flag.txt: -------------------------------------------------------------------------------- 1 | maple{1s_th3_puzzl3_3v3n_s0lv4ble_4ctu4lly} -------------------------------------------------------------------------------- /pwn/puzzling-oversight/hosted/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/puzzling-oversight/hosted/xinetd.conf -------------------------------------------------------------------------------- /pwn/puzzling-oversight/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/puzzling-oversight/solve/solve.py -------------------------------------------------------------------------------- /pwn/puzzling-oversight/src/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/puzzling-oversight/src/build.sh -------------------------------------------------------------------------------- /pwn/puzzling-oversight/src/chall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/puzzling-oversight/src/chall.c -------------------------------------------------------------------------------- /pwn/puzzling-oversight/static/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/puzzling-oversight/static/Dockerfile -------------------------------------------------------------------------------- /pwn/puzzling-oversight/static/puzzling-oversight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/puzzling-oversight/static/puzzling-oversight -------------------------------------------------------------------------------- /pwn/warmup1/hosted/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup1/hosted/Dockerfile -------------------------------------------------------------------------------- /pwn/warmup1/hosted/banner_fail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup1/hosted/banner_fail -------------------------------------------------------------------------------- /pwn/warmup1/hosted/chal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup1/hosted/chal -------------------------------------------------------------------------------- /pwn/warmup1/hosted/challenge.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | cd /ctf 3 | ./chal 4 | -------------------------------------------------------------------------------- /pwn/warmup1/hosted/flag.txt: -------------------------------------------------------------------------------- 1 | maple{buwuffer_owoverflow_UwU} 2 | -------------------------------------------------------------------------------- /pwn/warmup1/hosted/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup1/hosted/xinetd.conf -------------------------------------------------------------------------------- /pwn/warmup1/solve/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup1/solve/exploit.py -------------------------------------------------------------------------------- /pwn/warmup1/src/.gitignore: -------------------------------------------------------------------------------- 1 | chal 2 | -------------------------------------------------------------------------------- /pwn/warmup1/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup1/src/Dockerfile -------------------------------------------------------------------------------- /pwn/warmup1/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup1/src/Makefile -------------------------------------------------------------------------------- /pwn/warmup1/src/banner_fail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup1/src/banner_fail -------------------------------------------------------------------------------- /pwn/warmup1/src/build.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup1/src/build.dockerfile -------------------------------------------------------------------------------- /pwn/warmup1/src/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup1/src/build.sh -------------------------------------------------------------------------------- /pwn/warmup1/src/chal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup1/src/chal.c -------------------------------------------------------------------------------- /pwn/warmup1/src/challenge.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | cd /ctf 3 | ./chal 4 | -------------------------------------------------------------------------------- /pwn/warmup1/src/flag.txt: -------------------------------------------------------------------------------- 1 | maple{buwuffer_owoverflow_UwU} 2 | -------------------------------------------------------------------------------- /pwn/warmup1/src/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup1/src/xinetd.conf -------------------------------------------------------------------------------- /pwn/warmup1/static/chal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup1/static/chal -------------------------------------------------------------------------------- /pwn/warmup2/hosted/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup2/hosted/Dockerfile -------------------------------------------------------------------------------- /pwn/warmup2/hosted/banner_fail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup2/hosted/banner_fail -------------------------------------------------------------------------------- /pwn/warmup2/hosted/chal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup2/hosted/chal -------------------------------------------------------------------------------- /pwn/warmup2/hosted/challenge.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | cd /ctf 3 | ./chal 4 | -------------------------------------------------------------------------------- /pwn/warmup2/hosted/flag.txt: -------------------------------------------------------------------------------- 1 | maple{we_have_so_much_in_common} 2 | -------------------------------------------------------------------------------- /pwn/warmup2/hosted/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup2/hosted/xinetd.conf -------------------------------------------------------------------------------- /pwn/warmup2/solve/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup2/solve/exploit.py -------------------------------------------------------------------------------- /pwn/warmup2/solve/libc-2.31.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup2/solve/libc-2.31.so -------------------------------------------------------------------------------- /pwn/warmup2/src/.gitignore: -------------------------------------------------------------------------------- 1 | chal 2 | -------------------------------------------------------------------------------- /pwn/warmup2/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup2/src/Dockerfile -------------------------------------------------------------------------------- /pwn/warmup2/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup2/src/Makefile -------------------------------------------------------------------------------- /pwn/warmup2/src/banner_fail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup2/src/banner_fail -------------------------------------------------------------------------------- /pwn/warmup2/src/build.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup2/src/build.dockerfile -------------------------------------------------------------------------------- /pwn/warmup2/src/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup2/src/build.sh -------------------------------------------------------------------------------- /pwn/warmup2/src/chal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup2/src/chal.c -------------------------------------------------------------------------------- /pwn/warmup2/src/challenge.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | cd /ctf 3 | ./chal 4 | -------------------------------------------------------------------------------- /pwn/warmup2/src/flag.txt: -------------------------------------------------------------------------------- 1 | maple{we_have_so_much_in_common} 2 | -------------------------------------------------------------------------------- /pwn/warmup2/src/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup2/src/xinetd.conf -------------------------------------------------------------------------------- /pwn/warmup2/static/chal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/pwn/warmup2/static/chal -------------------------------------------------------------------------------- /rev/badcontroller/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/badcontroller/solve/solve.py -------------------------------------------------------------------------------- /rev/badcontroller/src/.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/badcontroller/src/.vscode/arduino.json -------------------------------------------------------------------------------- /rev/badcontroller/src/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/badcontroller/src/build.bat -------------------------------------------------------------------------------- /rev/badcontroller/src/challdriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/badcontroller/src/challdriver.c -------------------------------------------------------------------------------- /rev/badcontroller/src/challemu/challemu.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/badcontroller/src/challemu/challemu.ino -------------------------------------------------------------------------------- /rev/badcontroller/src/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/badcontroller/src/encrypt.py -------------------------------------------------------------------------------- /rev/badcontroller/static/challdriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/badcontroller/static/challdriver.exe -------------------------------------------------------------------------------- /rev/badcontroller/static/log.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/badcontroller/static/log.pcap -------------------------------------------------------------------------------- /rev/confounded-pondering-unit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/confounded-pondering-unit/LICENSE -------------------------------------------------------------------------------- /rev/confounded-pondering-unit/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/confounded-pondering-unit/src/README.md -------------------------------------------------------------------------------- /rev/confounded-pondering-unit/src/isa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/confounded-pondering-unit/src/isa.asm -------------------------------------------------------------------------------- /rev/confounded-pondering-unit/src/multistack_obf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/confounded-pondering-unit/src/multistack_obf.asm -------------------------------------------------------------------------------- /rev/confounded-pondering-unit/static/CPU_IO.circ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/confounded-pondering-unit/static/CPU_IO.circ -------------------------------------------------------------------------------- /rev/confounded-pondering-unit/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/confounded-pondering-unit/static/README.md -------------------------------------------------------------------------------- /rev/confounded-pondering-unit/static/flag-checker-v5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/confounded-pondering-unit/static/flag-checker-v5.bin -------------------------------------------------------------------------------- /rev/maplewave/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/maplewave/solve/solve.py -------------------------------------------------------------------------------- /rev/maplewave/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/maplewave/src/Makefile -------------------------------------------------------------------------------- /rev/maplewave/src/maplewave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/maplewave/src/maplewave.c -------------------------------------------------------------------------------- /rev/maplewave/static/flag0.maplewave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/maplewave/static/flag0.maplewave -------------------------------------------------------------------------------- /rev/maplewave/static/flag1.maplewave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/maplewave/static/flag1.maplewave -------------------------------------------------------------------------------- /rev/maplewave/static/flag2.maplewave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/maplewave/static/flag2.maplewave -------------------------------------------------------------------------------- /rev/maplewave/static/maplewave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/maplewave/static/maplewave -------------------------------------------------------------------------------- /rev/scotty/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/scotty/src/Dockerfile -------------------------------------------------------------------------------- /rev/scotty/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/scotty/src/Makefile -------------------------------------------------------------------------------- /rev/scotty/src/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/scotty/src/generate.py -------------------------------------------------------------------------------- /rev/scotty/src/scotty.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/scotty/src/scotty.hs -------------------------------------------------------------------------------- /rev/scotty/static/scotty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/scotty/static/scotty -------------------------------------------------------------------------------- /rev/vm-new/static/chal.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/vm-new/static/chal.sv -------------------------------------------------------------------------------- /rev/vm-new/static/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/vm-new/static/data.txt -------------------------------------------------------------------------------- /rev/vm-new/static/prog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/vm-new/static/prog.txt -------------------------------------------------------------------------------- /rev/vm/src/assemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/vm/src/assemble.py -------------------------------------------------------------------------------- /rev/vm/src/cpu.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/vm/src/cpu.sv -------------------------------------------------------------------------------- /rev/vm/src/datapath.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/vm/src/datapath.sv -------------------------------------------------------------------------------- /rev/vm/src/enc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/vm/src/enc.py -------------------------------------------------------------------------------- /rev/vm/src/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/vm/src/flag.txt -------------------------------------------------------------------------------- /rev/vm/src/flag_check.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/vm/src/flag_check.s -------------------------------------------------------------------------------- /rev/vm/src/gen_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/vm/src/gen_data.py -------------------------------------------------------------------------------- /rev/vm/src/top.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/vm/src/top.sv -------------------------------------------------------------------------------- /rev/vm/static/chal.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/vm/static/chal.sv -------------------------------------------------------------------------------- /rev/vm/static/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/vm/static/data.txt -------------------------------------------------------------------------------- /rev/vm/static/prog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/rev/vm/static/prog.txt -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/.gitignore -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/Dockerfile -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/run.sh -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneclient/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneclient/app.js -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneclient/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneclient/package-lock.json -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneclient/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneclient/package.json -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-3.1.2 2 | -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/Gemfile -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/Gemfile.lock -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/Rakefile -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/app/assets/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/app/assets/1.txt -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/app/assets/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/app/assets/2.txt -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/app/assets/3.txt: -------------------------------------------------------------------------------- 1 | https://www.youtube.com/shorts/GR_8_BxhFKA>Wait, WhAt? You're not coming to my tea party? 2 | 3 | BETHANY 4 | I 5 | MADE 6 | BISCUITS -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/app/assets/config/manifest.js -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/app/controllers/viene_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/app/controllers/viene_controller.rb -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/bin/bundle -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/bin/importmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/bin/importmap -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/bin/rails -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/bin/rake -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/bin/setup -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/config.ru -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/config/application.rb -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/config/boot.rb -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/config/cable.yml -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/config/environment.rb -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/config/environments/development.rb -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/config/environments/production.rb -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/config/importmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/config/importmap.rb -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/config/initializers/assets.rb -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/config/initializers/inflections.rb -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/config/locales/en.yml -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/config/puma.rb -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/config/routes.rb -------------------------------------------------------------------------------- /web/VieneLibrary/hosted/vieneserver/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/hosted/vieneserver/flag.txt -------------------------------------------------------------------------------- /web/VieneLibrary/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/VieneLibrary/solve/solve.py -------------------------------------------------------------------------------- /web/artgallery/.gitignore: -------------------------------------------------------------------------------- 1 | # Dependency directories 2 | node_modules/ 3 | 4 | .DS_Store -------------------------------------------------------------------------------- /web/artgallery/hosted/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/artgallery/hosted/Dockerfile -------------------------------------------------------------------------------- /web/artgallery/hosted/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/artgallery/hosted/flag.txt -------------------------------------------------------------------------------- /web/artgallery/hosted/ftp/files/bunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/artgallery/hosted/ftp/files/bunny.png -------------------------------------------------------------------------------- /web/artgallery/hosted/ftp/files/girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/artgallery/hosted/ftp/files/girl.png -------------------------------------------------------------------------------- /web/artgallery/hosted/ftp/files/goose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/artgallery/hosted/ftp/files/goose.png -------------------------------------------------------------------------------- /web/artgallery/hosted/ftp/files/motorcycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/artgallery/hosted/ftp/files/motorcycle.png -------------------------------------------------------------------------------- /web/artgallery/hosted/ftp/ftpserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/artgallery/hosted/ftp/ftpserver.js -------------------------------------------------------------------------------- /web/artgallery/hosted/ftp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/artgallery/hosted/ftp/package-lock.json -------------------------------------------------------------------------------- /web/artgallery/hosted/ftp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/artgallery/hosted/ftp/package.json -------------------------------------------------------------------------------- /web/artgallery/hosted/http/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/artgallery/hosted/http/app.js -------------------------------------------------------------------------------- /web/artgallery/hosted/http/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/artgallery/hosted/http/package-lock.json -------------------------------------------------------------------------------- /web/artgallery/hosted/http/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/artgallery/hosted/http/package.json -------------------------------------------------------------------------------- /web/artgallery/hosted/http/views/pages/gallery.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/artgallery/hosted/http/views/pages/gallery.ejs -------------------------------------------------------------------------------- /web/artgallery/hosted/http/views/pages/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/artgallery/hosted/http/views/pages/index.ejs -------------------------------------------------------------------------------- /web/artgallery/hosted/http/views/pages/upload.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/artgallery/hosted/http/views/pages/upload.ejs -------------------------------------------------------------------------------- /web/artgallery/hosted/http/views/partials/footer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/artgallery/hosted/http/views/partials/footer.ejs -------------------------------------------------------------------------------- /web/artgallery/hosted/http/views/partials/head.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/artgallery/hosted/http/views/partials/head.ejs -------------------------------------------------------------------------------- /web/artgallery/hosted/http/views/partials/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/artgallery/hosted/http/views/partials/header.ejs -------------------------------------------------------------------------------- /web/artgallery/hosted/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/artgallery/hosted/run.sh -------------------------------------------------------------------------------- /web/bookstore/challenge-description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/challenge-description.md -------------------------------------------------------------------------------- /web/bookstore/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/docker-compose.yml -------------------------------------------------------------------------------- /web/bookstore/hosted/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /web/bookstore/hosted/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | package-lock.json -------------------------------------------------------------------------------- /web/bookstore/hosted/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/Dockerfile -------------------------------------------------------------------------------- /web/bookstore/hosted/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/db.js -------------------------------------------------------------------------------- /web/bookstore/hosted/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/index.js -------------------------------------------------------------------------------- /web/bookstore/hosted/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/init.sh -------------------------------------------------------------------------------- /web/bookstore/hosted/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/init.sql -------------------------------------------------------------------------------- /web/bookstore/hosted/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/package.json -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/LICENSE.txt -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/README.md -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/background-image-golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/background-image-golden.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/background-image-golden2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/background-image-golden2.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/background-image-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/background-image-grey.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/background-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/background-image.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/border-image-golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/border-image-golden.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/border-image-golden2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/border-image-golden2.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/border-image-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/border-image-grey.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/border-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/border-image.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/button-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/button-background.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/button-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/button-down.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/button-golden-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/button-golden-down.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/button-golden-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/button-golden-hover.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/button-golden-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/button-golden-left.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/button-golden-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/button-golden-right.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/button-golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/button-golden.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/button-hover.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/button.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/checkbox-golden-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/checkbox-golden-off.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/checkbox-golden-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/checkbox-golden-on.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/checkbox-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/checkbox-off.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/checkbox-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/checkbox-on.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/cursor/cursor.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/cursor/cursor.cur -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/cursor/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/cursor/default.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/cursor/grab-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/cursor/grab-close.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/cursor/grab-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/cursor/grab-open.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/cursor/point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/cursor/point.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/cursor/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/cursor/select.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/hr-golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/hr-golden.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/hr.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/icons/armor-slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/icons/armor-slot.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/icons/empty-slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/icons/empty-slot.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/icons/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/icons/exclamation.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/icons/helmet-slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/icons/helmet-slot.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/icons/magic-slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/icons/magic-slot.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/icons/potion-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/icons/potion-blue.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/icons/potion-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/icons/potion-green.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/icons/potion-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/icons/potion-red.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/icons/potion-slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/icons/potion-slot.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/icons/ring-slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/icons/ring-slot.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/icons/shield-slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/icons/shield-slot.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/icons/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/icons/shield.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/icons/shoes-slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/icons/shoes-slot.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/icons/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/icons/sword.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/icons/weapon-slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/icons/weapon-slot.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/progress-bar-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/progress-bar-left.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/progress-bar-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/progress-bar-right.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/progress-bar-track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/progress-bar-track.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/progress-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/progress-blue.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/progress-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/progress-green.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/progress-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/progress-red.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/progress.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/radio-golden-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/radio-golden-off.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/radio-golden-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/radio-golden-on.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/radio-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/radio-off.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/radio-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/radio-on.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/scrollbar-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/scrollbar-button.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/scrollbar-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/scrollbar-thumb.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/scrollbar-track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/scrollbar-track.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/select-background-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/select-background-image.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/select-border-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/select-border-image.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/slider-left-golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/slider-left-golden.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/slider-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/slider-left.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/slider-right-golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/slider-right-golden.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/slider-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/slider-right.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/slider-thumb-golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/slider-thumb-golden.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/slider-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/slider-thumb.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/slider-track-golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/slider-track-golden.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/img/slider-track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/img/slider-track.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/package.json -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/rpgui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/rpgui.css -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/rpgui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/rpgui.js -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/rpgui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/rpgui.min.css -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/rpgui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/rpgui.min.js -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/style.css -------------------------------------------------------------------------------- /web/bookstore/hosted/static/assets/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/assets/test.html -------------------------------------------------------------------------------- /web/bookstore/hosted/static/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/img/1.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/img/2.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/img/3.png -------------------------------------------------------------------------------- /web/bookstore/hosted/static/img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/static/img/4.png -------------------------------------------------------------------------------- /web/bookstore/hosted/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/validator.js -------------------------------------------------------------------------------- /web/bookstore/hosted/views/books.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/views/books.ejs -------------------------------------------------------------------------------- /web/bookstore/hosted/views/catalogue.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/views/catalogue.ejs -------------------------------------------------------------------------------- /web/bookstore/hosted/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/views/index.ejs -------------------------------------------------------------------------------- /web/bookstore/hosted/views/login.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/views/login.ejs -------------------------------------------------------------------------------- /web/bookstore/hosted/views/register.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/hosted/views/register.ejs -------------------------------------------------------------------------------- /web/bookstore/solve/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/solve/script.py -------------------------------------------------------------------------------- /web/bookstore/static/bookstore.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/bookstore/static/bookstore.zip -------------------------------------------------------------------------------- /web/honksay/.gitignore: -------------------------------------------------------------------------------- 1 | # Dependency directories 2 | node_modules/ 3 | # Fuckin hate mac 4 | .DS_Store -------------------------------------------------------------------------------- /web/honksay/hosted/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/honksay/hosted/Dockerfile -------------------------------------------------------------------------------- /web/honksay/hosted/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/honksay/hosted/app.js -------------------------------------------------------------------------------- /web/honksay/hosted/goose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/honksay/hosted/goose.js -------------------------------------------------------------------------------- /web/honksay/hosted/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/honksay/hosted/package-lock.json -------------------------------------------------------------------------------- /web/honksay/hosted/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/honksay/hosted/package.json -------------------------------------------------------------------------------- /web/honksay/hosted/public/images/goosevie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/honksay/hosted/public/images/goosevie.png -------------------------------------------------------------------------------- /web/honksay/static/honksay.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/honksay/static/honksay.tar.gz -------------------------------------------------------------------------------- /web/pickle-factory/challenge-description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/pickle-factory/challenge-description.md -------------------------------------------------------------------------------- /web/pickle-factory/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/pickle-factory/docker-compose.yml -------------------------------------------------------------------------------- /web/pickle-factory/hosted/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ -------------------------------------------------------------------------------- /web/pickle-factory/hosted/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/pickle-factory/hosted/Dockerfile -------------------------------------------------------------------------------- /web/pickle-factory/hosted/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/pickle-factory/hosted/app.py -------------------------------------------------------------------------------- /web/pickle-factory/hosted/flag.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/pickle-factory/hosted/flag.log -------------------------------------------------------------------------------- /web/pickle-factory/hosted/requirements.txt: -------------------------------------------------------------------------------- 1 | jinja2 == 3.1.2 -------------------------------------------------------------------------------- /web/pickle-factory/hosted/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/pickle-factory/hosted/templates/index.html -------------------------------------------------------------------------------- /web/pickle-factory/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/pickle-factory/solve/solve.py -------------------------------------------------------------------------------- /web/pickle-factory/static/pickle-factory.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubcctf/maple-ctf-2022-public/HEAD/web/pickle-factory/static/pickle-factory.zip --------------------------------------------------------------------------------