├── .gitignore ├── LICENSE.txt ├── README.md ├── crypto ├── 12-shades-of-redpwn │ ├── challenge.yaml │ ├── ciphertext.jpg │ ├── color-wheel.jpg │ ├── flag.txt │ └── solve │ │ ├── b12-color-wheel.jpg │ │ ├── solve.py │ │ └── transcribed-ciphertext.jpg ├── 4k-rsa │ ├── 4k-rsa-public-key.txt │ ├── challenge.yaml │ ├── flag.txt │ └── solve.sage ├── alien-transmissions-v2 │ ├── challenge.yaml │ ├── encrypt.py │ ├── encrypted.txt │ ├── flag.txt │ └── solve.py ├── base646464 │ ├── bin │ │ ├── cipher.txt │ │ ├── flag.txt │ │ └── generate.js │ └── challenge.yaml ├── itsy-bitsy │ ├── .dockerignore │ ├── Dockerfile │ ├── challenge.yaml │ ├── ctf.xinetd │ ├── flag.txt │ ├── itsy-bitsy.py │ └── solve.py ├── jeopardy │ ├── .dockerignore │ ├── Dockerfile │ ├── challenge.yaml │ ├── flag.txt │ └── jeopardy.sage ├── newcrypt │ ├── chall.py │ ├── challenge.yaml │ ├── flag.txt │ └── output ├── primimity │ ├── challenge.yaml │ ├── flag.txt │ ├── primimity-public-key.txt │ ├── primimity.py │ └── solve.sage ├── pseudo-key │ ├── challenge.yaml │ ├── flag.txt │ ├── key.txt │ ├── pseudo-key-output.txt │ └── pseudo-key.py ├── ratification │ ├── Dockerfile │ ├── challenge.yaml │ ├── ctf.xinetd │ ├── flag.txt │ └── server.py ├── seekrypt │ ├── chall.py │ ├── challenge.yaml │ ├── flag.txt │ └── output ├── speedy-signatures │ ├── .dockerignore │ ├── Dockerfile │ ├── challenge.yaml │ ├── ctf.xinetd │ ├── flag.txt │ └── server.py └── worst-pw-manager │ ├── challenge.yaml │ └── worst-pw-manager.zip ├── misc ├── albatross │ ├── .dockerignore │ ├── Dockerfile │ ├── albatross.py │ ├── challenge.yaml │ ├── ctf.xinetd │ ├── flag.txt │ ├── solve.sh │ └── start.sh ├── caasino │ ├── .dockerignore │ ├── Dockerfile │ ├── challenge.yaml │ ├── ctf.xinetd │ ├── run │ │ ├── calculator.js │ │ └── flag.txt │ └── solve.sh ├── discord │ └── challenge.yaml ├── expohash │ ├── .dockerignore │ ├── Dockerfile │ ├── bin │ │ ├── flag.txt │ │ ├── judge │ │ └── judge.c │ ├── challenge.yaml │ ├── ctf.xinetd │ ├── solve.cpp │ └── start.sh ├── hackerone-survey │ └── challenge.yaml ├── redpwnctf-survey │ └── challenge.yaml ├── sanity-check │ └── challenge.yaml └── uglybash │ ├── challenge.yaml │ ├── cmd.sh │ └── flag.txt ├── pwn ├── coffer-overflow-0 │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── bin │ │ ├── Makefile │ │ ├── coffer-overflow-0 │ │ ├── coffer-overflow-0.c │ │ └── flag.txt │ ├── challenge.yaml │ ├── ctf.xinetd │ ├── solve.py │ └── start.sh ├── coffer-overflow-1 │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── bin │ │ ├── Makefile │ │ ├── coffer-overflow-1 │ │ ├── coffer-overflow-1.c │ │ └── flag.txt │ ├── challenge.yaml │ ├── ctf.xinetd │ ├── solve.py │ └── start.sh ├── coffer-overflow-2 │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── bin │ │ ├── Makefile │ │ ├── coffer-overflow-2 │ │ ├── coffer-overflow-2.c │ │ └── flag.txt │ ├── challenge.yaml │ ├── ctf.xinetd │ ├── solve.py │ └── start.sh ├── dead-canary │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── bin │ │ ├── Makefile │ │ ├── dead-canary │ │ ├── dead-canary.c │ │ ├── flag.txt │ │ └── libc.so.6 │ ├── challenge.yaml │ ├── ctf.xinetd │ ├── dead-canary.tar.gz │ ├── solve.py │ └── start.sh ├── four-function-heap │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── bin │ │ ├── Makefile │ │ ├── flag.txt │ │ ├── four-function-heap │ │ ├── four-function-heap.c │ │ ├── libc.so.6 │ │ └── starter.py │ ├── challenge.yaml │ ├── ctf.xinetd │ ├── four-function-heap.tar.gz │ ├── solve.py │ └── start.sh ├── house-of-red │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── bin │ │ ├── compile.sh │ │ ├── flag.txt │ │ ├── house-of-red │ │ ├── house-of-red.cpp │ │ └── libc.so.6 │ ├── challenge.yaml │ ├── ctf.xinetd │ ├── house-of-red.tar.gz │ ├── solve.py │ └── start.sh ├── kevin-higgs │ ├── .dockerignore │ ├── Dockerfile │ ├── challenge.yaml │ ├── compile.sh │ ├── ctf.xinetd │ ├── flag.txt │ ├── kevin-higgs │ ├── kevin-higgs.c │ ├── kevin-higgs.sh │ ├── limit.py │ └── start.sh ├── secret-flag │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── bin │ │ ├── Makefile │ │ ├── flag.txt │ │ ├── secret-flag │ │ └── secret-flag.c │ ├── challenge.yaml │ ├── ctf.xinetd │ ├── flag.txt │ ├── solve.py │ └── start.sh ├── skywriting │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── bin │ │ ├── Makefile │ │ ├── flag.txt │ │ ├── libc.so.6 │ │ ├── skywriting │ │ └── skywriting.c │ ├── challenge.yaml │ ├── ctf.xinetd │ ├── skywriting.tar.gz │ ├── solve.py │ └── start.sh ├── tetanus-shot │ ├── .dockerignore │ ├── Dockerfile │ ├── bin │ │ ├── flag.txt │ │ ├── tetanus_shot │ │ └── tetanus_shot.rs │ ├── challenge.yaml │ ├── ctf.xinetd │ ├── start.sh │ └── tetanus-shot.tar.gz ├── tetanus │ ├── .dockerignore │ ├── Dockerfile │ ├── bin │ │ ├── flag.txt │ │ ├── tetanus │ │ └── tetanus.rs │ ├── challenge.yaml │ ├── ctf.xinetd │ ├── start.sh │ └── tetanus.tar.gz ├── the-library │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── bin │ │ ├── Makefile │ │ ├── flag.txt │ │ ├── libc.so.6 │ │ ├── the-library │ │ └── the-library.c │ ├── challenge.yaml │ ├── ctf.xinetd │ ├── solve.py │ └── start.sh └── zero-the-hero │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── bin │ ├── Makefile │ ├── flag.txt │ ├── libc.so.6 │ ├── zero-the-hero │ └── zero-the-hero.c │ ├── challenge.yaml │ ├── ctf.xinetd │ ├── solve.py │ ├── start.sh │ └── zero-the-hero.tar.gz ├── rcds.yaml ├── rev ├── a-round-mechanism │ ├── .dockerignore │ ├── Dockerfile │ ├── bin │ │ ├── ARM │ │ ├── ASH │ │ ├── bin │ │ │ ├── cat │ │ │ └── ls │ │ └── flag.txt │ ├── challenge.yaml │ ├── ctf.xinetd │ ├── finalArmChall.s │ ├── qemu-arm │ └── start.sh ├── aall │ ├── .dockerignore │ ├── Dockerfile │ ├── aall.py │ ├── aall.sh │ ├── challenge.yaml │ ├── ctf.xinetd │ ├── flag.txt │ └── start.sh ├── bubbly │ ├── .dockerignore │ ├── Dockerfile │ ├── bin │ │ ├── bubbly │ │ └── flag.txt │ ├── challenge.yaml │ ├── ctf.xinetd │ └── start.sh ├── chezzzboard │ ├── .dockerignore │ ├── Dockerfile │ ├── bin │ │ ├── chezzz │ │ └── flag.txt │ ├── challenge.yaml │ ├── ctf.xinetd │ └── start.sh ├── fetusmaze │ ├── .dockerignore │ ├── Dockerfile │ ├── bin │ │ ├── flag.txt │ │ └── maze │ ├── challenge.yaml │ ├── ctf.xinetd │ └── start.sh ├── i-wanna-find-the-flag │ ├── challenge.yaml │ └── i-wanna-find-the-flag.exe ├── javaisez2 │ ├── bin │ │ ├── JavaIsEZ2.class │ │ └── src.j │ └── challenge.yaml ├── r1sc │ ├── challenge.yaml │ └── r1sc ├── ropes │ ├── bin │ │ ├── Makefile │ │ ├── ropes │ │ └── ropes.c │ └── challenge.yaml ├── rusty-bustacean │ ├── challenge.yaml │ └── rusty-bustacean.exe ├── smart-solver │ ├── SMarT-solver │ └── challenge.yaml └── wintendo-nii │ ├── .dockerignore │ ├── Dockerfile │ ├── bin │ ├── flag.txt │ └── nii │ ├── challenge.yaml │ ├── ctf.xinetd │ └── start.sh └── web ├── anti-textbook ├── challenge.yaml └── data.txt ├── cookie-recipes-v2 ├── .dockerignore ├── .env ├── Dockerfile ├── challenge.yaml ├── db.sqlite3 ├── index.js ├── package.json ├── public │ ├── css │ │ └── styles.css │ ├── index.html │ ├── js │ │ └── scripts.js │ ├── purchases │ │ ├── index.html │ │ ├── scripts.js │ │ └── styles.css │ ├── scripts.js │ ├── store │ │ ├── index.html │ │ ├── scripts.js │ │ └── styles.css │ └── styles.css └── yarn.lock ├── flag-sharer ├── .dockerignore ├── Dockerfile ├── app.js ├── challenge.yaml ├── flag-sharer.tar ├── gifts.html ├── package.json ├── register.html ├── static │ ├── bad_csrf.css │ ├── bad_gift.css │ └── bad_recipient.css └── yarn.lock ├── got-stacks ├── .dockerignore ├── Dockerfile ├── app │ ├── db │ │ └── setup.sql │ ├── package.json │ ├── public │ │ ├── ._index.html │ │ ├── css │ │ │ └── creative.min.css │ │ ├── img │ │ │ └── bg-masthead.jpg │ │ ├── index.html │ │ ├── js │ │ │ └── creative.min.js │ │ ├── scss │ │ │ ├── _global.scss │ │ │ ├── _masthead.scss │ │ │ ├── _navbar.scss │ │ │ ├── _portfolio.scss │ │ │ ├── _variables.scss │ │ │ └── creative.scss │ │ └── vendor │ │ │ ├── bootstrap │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── fontawesome-free │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── brands.css │ │ │ │ ├── brands.min.css │ │ │ │ ├── fontawesome.css │ │ │ │ ├── fontawesome.min.css │ │ │ │ ├── regular.css │ │ │ │ ├── regular.min.css │ │ │ │ ├── solid.css │ │ │ │ ├── solid.min.css │ │ │ │ ├── svg-with-js.css │ │ │ │ ├── svg-with-js.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ │ ├── jquery-easing │ │ │ ├── jquery.easing.compatibility.js │ │ │ ├── jquery.easing.js │ │ │ └── jquery.easing.min.js │ │ │ ├── jquery │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ │ │ └── magnific-popup │ │ │ ├── jquery.magnific-popup.js │ │ │ ├── jquery.magnific-popup.min.js │ │ │ └── magnific-popup.css │ └── server.js ├── challenge.yaml ├── flag.txt ├── got-stacks.tar.gz ├── readme.md └── runall.sh ├── inspector-general └── challenge.yaml ├── login ├── .dockerignore ├── .env ├── Dockerfile ├── challenge.yaml ├── db.sqlite3 ├── index.js ├── package.json ├── public │ ├── index.html │ ├── script.js │ └── styles.css └── yarn.lock ├── maria-bin ├── .dockerignore ├── Dockerfile ├── app.js ├── challenge.yaml ├── maria-bin.tar ├── package.json ├── pages │ ├── logo.jpg │ ├── new.html │ ├── register.html │ ├── search.html │ └── view.html └── yarn.lock ├── panda-facts-v2 ├── .dockerignore ├── .env ├── Dockerfile ├── challenge.yaml ├── index.js ├── package.json ├── public │ ├── index.html │ ├── pandas │ │ ├── index.html │ │ ├── script.js │ │ └── styles.css │ ├── script.js │ └── styles.css └── yarn.lock ├── panda-facts ├── .dockerignore ├── .env ├── Dockerfile ├── challenge.yaml ├── index.js ├── package.json ├── public │ ├── index.html │ ├── pandas │ │ ├── index.html │ │ ├── script.js │ │ └── styles.css │ ├── script.js │ └── styles.css └── yarn.lock ├── post-it-notes ├── Dockerfile ├── api │ └── server.py ├── challenge.yaml ├── compile.sh ├── flag.txt ├── main.py ├── notes.py ├── source.zip ├── start.sh └── web │ ├── server.py │ ├── static │ └── protected-by-captcha.png │ └── templates │ ├── about.html │ ├── error.html │ ├── index.html │ ├── note.html │ └── robots.txt ├── static-pastebin ├── .dockerignore ├── Dockerfile ├── challenge.yaml └── public │ ├── index.html │ ├── paste │ ├── index.html │ └── script.js │ ├── script.js │ └── styles.css ├── static-static-hosting ├── .dockerignore ├── Dockerfile ├── challenge.yaml └── public │ ├── index.html │ ├── script.js │ ├── site │ ├── index.html │ └── script.js │ └── styles.css ├── tux-fanpage ├── .dockerignore ├── Dockerfile ├── challenge.yaml ├── index.js ├── package-lock.json ├── package.json └── public │ ├── assets │ ├── 81f.gif │ ├── banjo.gif │ ├── const2.gif │ ├── party.gif │ ├── rainbow-spectral-gradient.png │ └── tux.jpeg │ ├── index.html │ └── style.css └── viper ├── app ├── .dockerignore ├── Dockerfile ├── flag.txt ├── package.json ├── public │ ├── analytics.js │ ├── bootstrap.min.css │ └── custom.css ├── server.js ├── views │ ├── pages │ │ ├── admin.ejs │ │ ├── index.ejs │ │ └── viper.ejs │ └── partials │ │ └── head.ejs ├── wait-for-it.sh └── yarn.lock ├── challenge.yaml ├── docker-compose.yml ├── exploit.py ├── nginx ├── Dockerfile └── nginx.conf └── viper.tar.gz /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | 3 | node_modules 4 | *.pyc 5 | 6 | .DS_Store 7 | 8 | .rcds-cache 9 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # redpwnctf-2020-challenges 2 | -------------------------------------------------------------------------------- /crypto/12-shades-of-redpwn/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/12-shades-of-redpwn/challenge.yaml -------------------------------------------------------------------------------- /crypto/12-shades-of-redpwn/ciphertext.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/12-shades-of-redpwn/ciphertext.jpg -------------------------------------------------------------------------------- /crypto/12-shades-of-redpwn/color-wheel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/12-shades-of-redpwn/color-wheel.jpg -------------------------------------------------------------------------------- /crypto/12-shades-of-redpwn/flag.txt: -------------------------------------------------------------------------------- 1 | flag{9u3ss1n9_1s_4n_4rt} -------------------------------------------------------------------------------- /crypto/12-shades-of-redpwn/solve/b12-color-wheel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/12-shades-of-redpwn/solve/b12-color-wheel.jpg -------------------------------------------------------------------------------- /crypto/12-shades-of-redpwn/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/12-shades-of-redpwn/solve/solve.py -------------------------------------------------------------------------------- /crypto/12-shades-of-redpwn/solve/transcribed-ciphertext.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/12-shades-of-redpwn/solve/transcribed-ciphertext.jpg -------------------------------------------------------------------------------- /crypto/4k-rsa/4k-rsa-public-key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/4k-rsa/4k-rsa-public-key.txt -------------------------------------------------------------------------------- /crypto/4k-rsa/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/4k-rsa/challenge.yaml -------------------------------------------------------------------------------- /crypto/4k-rsa/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/4k-rsa/flag.txt -------------------------------------------------------------------------------- /crypto/4k-rsa/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/4k-rsa/solve.sage -------------------------------------------------------------------------------- /crypto/alien-transmissions-v2/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/alien-transmissions-v2/challenge.yaml -------------------------------------------------------------------------------- /crypto/alien-transmissions-v2/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/alien-transmissions-v2/encrypt.py -------------------------------------------------------------------------------- /crypto/alien-transmissions-v2/encrypted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/alien-transmissions-v2/encrypted.txt -------------------------------------------------------------------------------- /crypto/alien-transmissions-v2/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/alien-transmissions-v2/flag.txt -------------------------------------------------------------------------------- /crypto/alien-transmissions-v2/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/alien-transmissions-v2/solve.py -------------------------------------------------------------------------------- /crypto/base646464/bin/cipher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/base646464/bin/cipher.txt -------------------------------------------------------------------------------- /crypto/base646464/bin/flag.txt: -------------------------------------------------------------------------------- 1 | flag{l00ks_l1ke_a_l0t_of_64s} 2 | -------------------------------------------------------------------------------- /crypto/base646464/bin/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/base646464/bin/generate.js -------------------------------------------------------------------------------- /crypto/base646464/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/base646464/challenge.yaml -------------------------------------------------------------------------------- /crypto/itsy-bitsy/.dockerignore: -------------------------------------------------------------------------------- 1 | /challenge.yaml -------------------------------------------------------------------------------- /crypto/itsy-bitsy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/itsy-bitsy/Dockerfile -------------------------------------------------------------------------------- /crypto/itsy-bitsy/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/itsy-bitsy/challenge.yaml -------------------------------------------------------------------------------- /crypto/itsy-bitsy/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/itsy-bitsy/ctf.xinetd -------------------------------------------------------------------------------- /crypto/itsy-bitsy/flag.txt: -------------------------------------------------------------------------------- 1 | flag{bits_leaking_out_down_the_water_spout} -------------------------------------------------------------------------------- /crypto/itsy-bitsy/itsy-bitsy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/itsy-bitsy/itsy-bitsy.py -------------------------------------------------------------------------------- /crypto/itsy-bitsy/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/itsy-bitsy/solve.py -------------------------------------------------------------------------------- /crypto/jeopardy/.dockerignore: -------------------------------------------------------------------------------- 1 | /challenge.yaml 2 | -------------------------------------------------------------------------------- /crypto/jeopardy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/jeopardy/Dockerfile -------------------------------------------------------------------------------- /crypto/jeopardy/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/jeopardy/challenge.yaml -------------------------------------------------------------------------------- /crypto/jeopardy/flag.txt: -------------------------------------------------------------------------------- 1 | flag{why_cant_penguins_fly_892839288} -------------------------------------------------------------------------------- /crypto/jeopardy/jeopardy.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/jeopardy/jeopardy.sage -------------------------------------------------------------------------------- /crypto/newcrypt/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/newcrypt/chall.py -------------------------------------------------------------------------------- /crypto/newcrypt/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/newcrypt/challenge.yaml -------------------------------------------------------------------------------- /crypto/newcrypt/flag.txt: -------------------------------------------------------------------------------- 1 | flag{7H3_4N5W3r_70_3V3rY_Pr0813M_1NV01V3D_P3N6U1N5} -------------------------------------------------------------------------------- /crypto/newcrypt/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/newcrypt/output -------------------------------------------------------------------------------- /crypto/primimity/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/primimity/challenge.yaml -------------------------------------------------------------------------------- /crypto/primimity/flag.txt: -------------------------------------------------------------------------------- 1 | flag{pr1m3_pr0x1m1ty_c4n_b3_v3ry_d4ng3r0u5} -------------------------------------------------------------------------------- /crypto/primimity/primimity-public-key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/primimity/primimity-public-key.txt -------------------------------------------------------------------------------- /crypto/primimity/primimity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/primimity/primimity.py -------------------------------------------------------------------------------- /crypto/primimity/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/primimity/solve.sage -------------------------------------------------------------------------------- /crypto/pseudo-key/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/pseudo-key/challenge.yaml -------------------------------------------------------------------------------- /crypto/pseudo-key/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/pseudo-key/flag.txt -------------------------------------------------------------------------------- /crypto/pseudo-key/key.txt: -------------------------------------------------------------------------------- 1 | redpwwwnctf -------------------------------------------------------------------------------- /crypto/pseudo-key/pseudo-key-output.txt: -------------------------------------------------------------------------------- 1 | Ciphertext: z_jjaoo_rljlhr_gauf_twv_shaqzb_ljtyut 2 | Pseudo-key: iigesssaemk 3 | -------------------------------------------------------------------------------- /crypto/pseudo-key/pseudo-key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/pseudo-key/pseudo-key.py -------------------------------------------------------------------------------- /crypto/ratification/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/ratification/Dockerfile -------------------------------------------------------------------------------- /crypto/ratification/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/ratification/challenge.yaml -------------------------------------------------------------------------------- /crypto/ratification/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/ratification/ctf.xinetd -------------------------------------------------------------------------------- /crypto/ratification/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/ratification/flag.txt -------------------------------------------------------------------------------- /crypto/ratification/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/ratification/server.py -------------------------------------------------------------------------------- /crypto/seekrypt/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/seekrypt/chall.py -------------------------------------------------------------------------------- /crypto/seekrypt/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/seekrypt/challenge.yaml -------------------------------------------------------------------------------- /crypto/seekrypt/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/seekrypt/flag.txt -------------------------------------------------------------------------------- /crypto/seekrypt/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/seekrypt/output -------------------------------------------------------------------------------- /crypto/speedy-signatures/.dockerignore: -------------------------------------------------------------------------------- 1 | /challenge.yaml 2 | -------------------------------------------------------------------------------- /crypto/speedy-signatures/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/speedy-signatures/Dockerfile -------------------------------------------------------------------------------- /crypto/speedy-signatures/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/speedy-signatures/challenge.yaml -------------------------------------------------------------------------------- /crypto/speedy-signatures/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/speedy-signatures/ctf.xinetd -------------------------------------------------------------------------------- /crypto/speedy-signatures/flag.txt: -------------------------------------------------------------------------------- 1 | flag{s0m3t1m3s_crypt0gr4ph1c_1mpl3m3nt4t10ns_f41l} -------------------------------------------------------------------------------- /crypto/speedy-signatures/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/speedy-signatures/server.py -------------------------------------------------------------------------------- /crypto/worst-pw-manager/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/worst-pw-manager/challenge.yaml -------------------------------------------------------------------------------- /crypto/worst-pw-manager/worst-pw-manager.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/crypto/worst-pw-manager/worst-pw-manager.zip -------------------------------------------------------------------------------- /misc/albatross/.dockerignore: -------------------------------------------------------------------------------- 1 | challenge.yaml 2 | config.yml -------------------------------------------------------------------------------- /misc/albatross/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/misc/albatross/Dockerfile -------------------------------------------------------------------------------- /misc/albatross/albatross.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/misc/albatross/albatross.py -------------------------------------------------------------------------------- /misc/albatross/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/misc/albatross/challenge.yaml -------------------------------------------------------------------------------- /misc/albatross/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/misc/albatross/ctf.xinetd -------------------------------------------------------------------------------- /misc/albatross/flag.txt: -------------------------------------------------------------------------------- 1 | flag{SH*T_I_h0pe_ur_n0t_b1c..._if_y0u_@r3,_th1$_isn't_th3_fl@g} 2 | -------------------------------------------------------------------------------- /misc/albatross/solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/misc/albatross/solve.sh -------------------------------------------------------------------------------- /misc/albatross/start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/xinetd start; 4 | sleep infinity; 5 | 6 | -------------------------------------------------------------------------------- /misc/caasino/.dockerignore: -------------------------------------------------------------------------------- 1 | /* 2 | !/run 3 | !/ctf.xinetd 4 | -------------------------------------------------------------------------------- /misc/caasino/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/misc/caasino/Dockerfile -------------------------------------------------------------------------------- /misc/caasino/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/misc/caasino/challenge.yaml -------------------------------------------------------------------------------- /misc/caasino/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/misc/caasino/ctf.xinetd -------------------------------------------------------------------------------- /misc/caasino/run/calculator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/misc/caasino/run/calculator.js -------------------------------------------------------------------------------- /misc/caasino/run/flag.txt: -------------------------------------------------------------------------------- 1 | flag{vm_1snt_s4f3_4ft3r_41l_29ka5sqD} 2 | -------------------------------------------------------------------------------- /misc/caasino/solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/misc/caasino/solve.sh -------------------------------------------------------------------------------- /misc/discord/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/misc/discord/challenge.yaml -------------------------------------------------------------------------------- /misc/expohash/.dockerignore: -------------------------------------------------------------------------------- 1 | challenge.yaml 2 | config.yml 3 | -------------------------------------------------------------------------------- /misc/expohash/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/misc/expohash/Dockerfile -------------------------------------------------------------------------------- /misc/expohash/bin/flag.txt: -------------------------------------------------------------------------------- 1 | flag{1_g0t_th3_c0mb_thx} -------------------------------------------------------------------------------- /misc/expohash/bin/judge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/misc/expohash/bin/judge -------------------------------------------------------------------------------- /misc/expohash/bin/judge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/misc/expohash/bin/judge.c -------------------------------------------------------------------------------- /misc/expohash/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/misc/expohash/challenge.yaml -------------------------------------------------------------------------------- /misc/expohash/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/misc/expohash/ctf.xinetd -------------------------------------------------------------------------------- /misc/expohash/solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/misc/expohash/solve.cpp -------------------------------------------------------------------------------- /misc/expohash/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/misc/expohash/start.sh -------------------------------------------------------------------------------- /misc/hackerone-survey/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/misc/hackerone-survey/challenge.yaml -------------------------------------------------------------------------------- /misc/redpwnctf-survey/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/misc/redpwnctf-survey/challenge.yaml -------------------------------------------------------------------------------- /misc/sanity-check/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/misc/sanity-check/challenge.yaml -------------------------------------------------------------------------------- /misc/uglybash/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/misc/uglybash/challenge.yaml -------------------------------------------------------------------------------- /misc/uglybash/cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/misc/uglybash/cmd.sh -------------------------------------------------------------------------------- /misc/uglybash/flag.txt: -------------------------------------------------------------------------------- 1 | flag{us3_zsh,_dummy} 2 | -------------------------------------------------------------------------------- /pwn/coffer-overflow-0/.dockerignore: -------------------------------------------------------------------------------- 1 | challenge.yaml 2 | config.yml -------------------------------------------------------------------------------- /pwn/coffer-overflow-0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-0/Dockerfile -------------------------------------------------------------------------------- /pwn/coffer-overflow-0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-0/README.md -------------------------------------------------------------------------------- /pwn/coffer-overflow-0/bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-0/bin/Makefile -------------------------------------------------------------------------------- /pwn/coffer-overflow-0/bin/coffer-overflow-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-0/bin/coffer-overflow-0 -------------------------------------------------------------------------------- /pwn/coffer-overflow-0/bin/coffer-overflow-0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-0/bin/coffer-overflow-0.c -------------------------------------------------------------------------------- /pwn/coffer-overflow-0/bin/flag.txt: -------------------------------------------------------------------------------- 1 | flag{b0ffer_0verf10w_3asy_as_123} 2 | -------------------------------------------------------------------------------- /pwn/coffer-overflow-0/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-0/challenge.yaml -------------------------------------------------------------------------------- /pwn/coffer-overflow-0/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-0/ctf.xinetd -------------------------------------------------------------------------------- /pwn/coffer-overflow-0/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-0/solve.py -------------------------------------------------------------------------------- /pwn/coffer-overflow-0/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-0/start.sh -------------------------------------------------------------------------------- /pwn/coffer-overflow-1/.dockerignore: -------------------------------------------------------------------------------- 1 | challenge.yaml 2 | config.yml -------------------------------------------------------------------------------- /pwn/coffer-overflow-1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-1/Dockerfile -------------------------------------------------------------------------------- /pwn/coffer-overflow-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-1/README.md -------------------------------------------------------------------------------- /pwn/coffer-overflow-1/bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-1/bin/Makefile -------------------------------------------------------------------------------- /pwn/coffer-overflow-1/bin/coffer-overflow-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-1/bin/coffer-overflow-1 -------------------------------------------------------------------------------- /pwn/coffer-overflow-1/bin/coffer-overflow-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-1/bin/coffer-overflow-1.c -------------------------------------------------------------------------------- /pwn/coffer-overflow-1/bin/flag.txt: -------------------------------------------------------------------------------- 1 | flag{th1s_0ne_wasnt_pure_gu3ssing_1_h0pe} 2 | -------------------------------------------------------------------------------- /pwn/coffer-overflow-1/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-1/challenge.yaml -------------------------------------------------------------------------------- /pwn/coffer-overflow-1/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-1/ctf.xinetd -------------------------------------------------------------------------------- /pwn/coffer-overflow-1/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-1/solve.py -------------------------------------------------------------------------------- /pwn/coffer-overflow-1/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-1/start.sh -------------------------------------------------------------------------------- /pwn/coffer-overflow-2/.dockerignore: -------------------------------------------------------------------------------- 1 | challenge.yaml 2 | config.yml -------------------------------------------------------------------------------- /pwn/coffer-overflow-2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-2/Dockerfile -------------------------------------------------------------------------------- /pwn/coffer-overflow-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-2/README.md -------------------------------------------------------------------------------- /pwn/coffer-overflow-2/bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-2/bin/Makefile -------------------------------------------------------------------------------- /pwn/coffer-overflow-2/bin/coffer-overflow-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-2/bin/coffer-overflow-2 -------------------------------------------------------------------------------- /pwn/coffer-overflow-2/bin/coffer-overflow-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-2/bin/coffer-overflow-2.c -------------------------------------------------------------------------------- /pwn/coffer-overflow-2/bin/flag.txt: -------------------------------------------------------------------------------- 1 | flag{ret_to_b1n_m0re_l1k3_r3t_t0_w1n} 2 | -------------------------------------------------------------------------------- /pwn/coffer-overflow-2/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-2/challenge.yaml -------------------------------------------------------------------------------- /pwn/coffer-overflow-2/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-2/ctf.xinetd -------------------------------------------------------------------------------- /pwn/coffer-overflow-2/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-2/solve.py -------------------------------------------------------------------------------- /pwn/coffer-overflow-2/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/coffer-overflow-2/start.sh -------------------------------------------------------------------------------- /pwn/dead-canary/.dockerignore: -------------------------------------------------------------------------------- 1 | challenge.yaml 2 | config.yml -------------------------------------------------------------------------------- /pwn/dead-canary/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/dead-canary/Dockerfile -------------------------------------------------------------------------------- /pwn/dead-canary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/dead-canary/README.md -------------------------------------------------------------------------------- /pwn/dead-canary/bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/dead-canary/bin/Makefile -------------------------------------------------------------------------------- /pwn/dead-canary/bin/dead-canary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/dead-canary/bin/dead-canary -------------------------------------------------------------------------------- /pwn/dead-canary/bin/dead-canary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/dead-canary/bin/dead-canary.c -------------------------------------------------------------------------------- /pwn/dead-canary/bin/flag.txt: -------------------------------------------------------------------------------- 1 | flag{t0_k1ll_a_canary_4e47da34} 2 | -------------------------------------------------------------------------------- /pwn/dead-canary/bin/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/dead-canary/bin/libc.so.6 -------------------------------------------------------------------------------- /pwn/dead-canary/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/dead-canary/challenge.yaml -------------------------------------------------------------------------------- /pwn/dead-canary/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/dead-canary/ctf.xinetd -------------------------------------------------------------------------------- /pwn/dead-canary/dead-canary.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/dead-canary/dead-canary.tar.gz -------------------------------------------------------------------------------- /pwn/dead-canary/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/dead-canary/solve.py -------------------------------------------------------------------------------- /pwn/dead-canary/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/dead-canary/start.sh -------------------------------------------------------------------------------- /pwn/four-function-heap/.dockerignore: -------------------------------------------------------------------------------- 1 | challenge.yaml 2 | config.yml -------------------------------------------------------------------------------- /pwn/four-function-heap/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/four-function-heap/Dockerfile -------------------------------------------------------------------------------- /pwn/four-function-heap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/four-function-heap/README.md -------------------------------------------------------------------------------- /pwn/four-function-heap/bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/four-function-heap/bin/Makefile -------------------------------------------------------------------------------- /pwn/four-function-heap/bin/flag.txt: -------------------------------------------------------------------------------- 1 | flag{g3n3ric_f1ag_1n_1e3t_sp3ak} 2 | -------------------------------------------------------------------------------- /pwn/four-function-heap/bin/four-function-heap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/four-function-heap/bin/four-function-heap -------------------------------------------------------------------------------- /pwn/four-function-heap/bin/four-function-heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/four-function-heap/bin/four-function-heap.c -------------------------------------------------------------------------------- /pwn/four-function-heap/bin/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/four-function-heap/bin/libc.so.6 -------------------------------------------------------------------------------- /pwn/four-function-heap/bin/starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/four-function-heap/bin/starter.py -------------------------------------------------------------------------------- /pwn/four-function-heap/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/four-function-heap/challenge.yaml -------------------------------------------------------------------------------- /pwn/four-function-heap/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/four-function-heap/ctf.xinetd -------------------------------------------------------------------------------- /pwn/four-function-heap/four-function-heap.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/four-function-heap/four-function-heap.tar.gz -------------------------------------------------------------------------------- /pwn/four-function-heap/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/four-function-heap/solve.py -------------------------------------------------------------------------------- /pwn/four-function-heap/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/four-function-heap/start.sh -------------------------------------------------------------------------------- /pwn/house-of-red/.dockerignore: -------------------------------------------------------------------------------- 1 | challenge.yaml 2 | config.yml -------------------------------------------------------------------------------- /pwn/house-of-red/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/house-of-red/Dockerfile -------------------------------------------------------------------------------- /pwn/house-of-red/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/house-of-red/README.md -------------------------------------------------------------------------------- /pwn/house-of-red/bin/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/house-of-red/bin/compile.sh -------------------------------------------------------------------------------- /pwn/house-of-red/bin/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/house-of-red/bin/flag.txt -------------------------------------------------------------------------------- /pwn/house-of-red/bin/house-of-red: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/house-of-red/bin/house-of-red -------------------------------------------------------------------------------- /pwn/house-of-red/bin/house-of-red.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/house-of-red/bin/house-of-red.cpp -------------------------------------------------------------------------------- /pwn/house-of-red/bin/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/house-of-red/bin/libc.so.6 -------------------------------------------------------------------------------- /pwn/house-of-red/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/house-of-red/challenge.yaml -------------------------------------------------------------------------------- /pwn/house-of-red/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/house-of-red/ctf.xinetd -------------------------------------------------------------------------------- /pwn/house-of-red/house-of-red.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/house-of-red/house-of-red.tar.gz -------------------------------------------------------------------------------- /pwn/house-of-red/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/house-of-red/solve.py -------------------------------------------------------------------------------- /pwn/house-of-red/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/house-of-red/start.sh -------------------------------------------------------------------------------- /pwn/kevin-higgs/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/kevin-higgs/.dockerignore -------------------------------------------------------------------------------- /pwn/kevin-higgs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/kevin-higgs/Dockerfile -------------------------------------------------------------------------------- /pwn/kevin-higgs/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/kevin-higgs/challenge.yaml -------------------------------------------------------------------------------- /pwn/kevin-higgs/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/kevin-higgs/compile.sh -------------------------------------------------------------------------------- /pwn/kevin-higgs/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/kevin-higgs/ctf.xinetd -------------------------------------------------------------------------------- /pwn/kevin-higgs/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/kevin-higgs/flag.txt -------------------------------------------------------------------------------- /pwn/kevin-higgs/kevin-higgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/kevin-higgs/kevin-higgs -------------------------------------------------------------------------------- /pwn/kevin-higgs/kevin-higgs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/kevin-higgs/kevin-higgs.c -------------------------------------------------------------------------------- /pwn/kevin-higgs/kevin-higgs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/kevin-higgs/kevin-higgs.sh -------------------------------------------------------------------------------- /pwn/kevin-higgs/limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/kevin-higgs/limit.py -------------------------------------------------------------------------------- /pwn/kevin-higgs/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/kevin-higgs/start.sh -------------------------------------------------------------------------------- /pwn/secret-flag/.dockerignore: -------------------------------------------------------------------------------- 1 | challenge.yaml 2 | config.yml -------------------------------------------------------------------------------- /pwn/secret-flag/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/secret-flag/Dockerfile -------------------------------------------------------------------------------- /pwn/secret-flag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/secret-flag/README.md -------------------------------------------------------------------------------- /pwn/secret-flag/bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/secret-flag/bin/Makefile -------------------------------------------------------------------------------- /pwn/secret-flag/bin/flag.txt: -------------------------------------------------------------------------------- 1 | flag{n0t_s0_s3cr3t_f1ag_n0w} 2 | -------------------------------------------------------------------------------- /pwn/secret-flag/bin/secret-flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/secret-flag/bin/secret-flag -------------------------------------------------------------------------------- /pwn/secret-flag/bin/secret-flag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/secret-flag/bin/secret-flag.c -------------------------------------------------------------------------------- /pwn/secret-flag/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/secret-flag/challenge.yaml -------------------------------------------------------------------------------- /pwn/secret-flag/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/secret-flag/ctf.xinetd -------------------------------------------------------------------------------- /pwn/secret-flag/flag.txt: -------------------------------------------------------------------------------- 1 | fakeflag{to_demonstrate_solve_script} 2 | -------------------------------------------------------------------------------- /pwn/secret-flag/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/secret-flag/solve.py -------------------------------------------------------------------------------- /pwn/secret-flag/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/secret-flag/start.sh -------------------------------------------------------------------------------- /pwn/skywriting/.dockerignore: -------------------------------------------------------------------------------- 1 | challenge.yaml 2 | config.yml -------------------------------------------------------------------------------- /pwn/skywriting/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/skywriting/Dockerfile -------------------------------------------------------------------------------- /pwn/skywriting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/skywriting/README.md -------------------------------------------------------------------------------- /pwn/skywriting/bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/skywriting/bin/Makefile -------------------------------------------------------------------------------- /pwn/skywriting/bin/flag.txt: -------------------------------------------------------------------------------- 1 | flag{a_cLOud_iS_jUSt_sOmeBodY_eLSes_cOMpUteR} 2 | -------------------------------------------------------------------------------- /pwn/skywriting/bin/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/skywriting/bin/libc.so.6 -------------------------------------------------------------------------------- /pwn/skywriting/bin/skywriting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/skywriting/bin/skywriting -------------------------------------------------------------------------------- /pwn/skywriting/bin/skywriting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/skywriting/bin/skywriting.c -------------------------------------------------------------------------------- /pwn/skywriting/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/skywriting/challenge.yaml -------------------------------------------------------------------------------- /pwn/skywriting/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/skywriting/ctf.xinetd -------------------------------------------------------------------------------- /pwn/skywriting/skywriting.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/skywriting/skywriting.tar.gz -------------------------------------------------------------------------------- /pwn/skywriting/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/skywriting/solve.py -------------------------------------------------------------------------------- /pwn/skywriting/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/skywriting/start.sh -------------------------------------------------------------------------------- /pwn/tetanus-shot/.dockerignore: -------------------------------------------------------------------------------- 1 | challenge.yaml 2 | config.yml -------------------------------------------------------------------------------- /pwn/tetanus-shot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/tetanus-shot/Dockerfile -------------------------------------------------------------------------------- /pwn/tetanus-shot/bin/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/tetanus-shot/bin/flag.txt -------------------------------------------------------------------------------- /pwn/tetanus-shot/bin/tetanus_shot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/tetanus-shot/bin/tetanus_shot -------------------------------------------------------------------------------- /pwn/tetanus-shot/bin/tetanus_shot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/tetanus-shot/bin/tetanus_shot.rs -------------------------------------------------------------------------------- /pwn/tetanus-shot/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/tetanus-shot/challenge.yaml -------------------------------------------------------------------------------- /pwn/tetanus-shot/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/tetanus-shot/ctf.xinetd -------------------------------------------------------------------------------- /pwn/tetanus-shot/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/tetanus-shot/start.sh -------------------------------------------------------------------------------- /pwn/tetanus-shot/tetanus-shot.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/tetanus-shot/tetanus-shot.tar.gz -------------------------------------------------------------------------------- /pwn/tetanus/.dockerignore: -------------------------------------------------------------------------------- 1 | challenge.yaml 2 | config.yml -------------------------------------------------------------------------------- /pwn/tetanus/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/tetanus/Dockerfile -------------------------------------------------------------------------------- /pwn/tetanus/bin/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/tetanus/bin/flag.txt -------------------------------------------------------------------------------- /pwn/tetanus/bin/tetanus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/tetanus/bin/tetanus -------------------------------------------------------------------------------- /pwn/tetanus/bin/tetanus.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/tetanus/bin/tetanus.rs -------------------------------------------------------------------------------- /pwn/tetanus/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/tetanus/challenge.yaml -------------------------------------------------------------------------------- /pwn/tetanus/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/tetanus/ctf.xinetd -------------------------------------------------------------------------------- /pwn/tetanus/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/tetanus/start.sh -------------------------------------------------------------------------------- /pwn/tetanus/tetanus.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/tetanus/tetanus.tar.gz -------------------------------------------------------------------------------- /pwn/the-library/.dockerignore: -------------------------------------------------------------------------------- 1 | challenge.yaml 2 | config.yml -------------------------------------------------------------------------------- /pwn/the-library/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/the-library/Dockerfile -------------------------------------------------------------------------------- /pwn/the-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/the-library/README.md -------------------------------------------------------------------------------- /pwn/the-library/bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/the-library/bin/Makefile -------------------------------------------------------------------------------- /pwn/the-library/bin/flag.txt: -------------------------------------------------------------------------------- 1 | flag{jump_1nt0_th3_l1brary} 2 | -------------------------------------------------------------------------------- /pwn/the-library/bin/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/the-library/bin/libc.so.6 -------------------------------------------------------------------------------- /pwn/the-library/bin/the-library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/the-library/bin/the-library -------------------------------------------------------------------------------- /pwn/the-library/bin/the-library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/the-library/bin/the-library.c -------------------------------------------------------------------------------- /pwn/the-library/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/the-library/challenge.yaml -------------------------------------------------------------------------------- /pwn/the-library/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/the-library/ctf.xinetd -------------------------------------------------------------------------------- /pwn/the-library/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/the-library/solve.py -------------------------------------------------------------------------------- /pwn/the-library/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/the-library/start.sh -------------------------------------------------------------------------------- /pwn/zero-the-hero/.dockerignore: -------------------------------------------------------------------------------- 1 | challenge.yaml 2 | config.yml -------------------------------------------------------------------------------- /pwn/zero-the-hero/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/zero-the-hero/Dockerfile -------------------------------------------------------------------------------- /pwn/zero-the-hero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/zero-the-hero/README.md -------------------------------------------------------------------------------- /pwn/zero-the-hero/bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/zero-the-hero/bin/Makefile -------------------------------------------------------------------------------- /pwn/zero-the-hero/bin/flag.txt: -------------------------------------------------------------------------------- 1 | flag{that_wa5nt_a_r3a1_nul1_4185b11c} 2 | -------------------------------------------------------------------------------- /pwn/zero-the-hero/bin/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/zero-the-hero/bin/libc.so.6 -------------------------------------------------------------------------------- /pwn/zero-the-hero/bin/zero-the-hero: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/zero-the-hero/bin/zero-the-hero -------------------------------------------------------------------------------- /pwn/zero-the-hero/bin/zero-the-hero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/zero-the-hero/bin/zero-the-hero.c -------------------------------------------------------------------------------- /pwn/zero-the-hero/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/zero-the-hero/challenge.yaml -------------------------------------------------------------------------------- /pwn/zero-the-hero/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/zero-the-hero/ctf.xinetd -------------------------------------------------------------------------------- /pwn/zero-the-hero/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/zero-the-hero/solve.py -------------------------------------------------------------------------------- /pwn/zero-the-hero/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/zero-the-hero/start.sh -------------------------------------------------------------------------------- /pwn/zero-the-hero/zero-the-hero.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/pwn/zero-the-hero/zero-the-hero.tar.gz -------------------------------------------------------------------------------- /rcds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rcds.yaml -------------------------------------------------------------------------------- /rev/a-round-mechanism/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/a-round-mechanism/.dockerignore -------------------------------------------------------------------------------- /rev/a-round-mechanism/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/a-round-mechanism/Dockerfile -------------------------------------------------------------------------------- /rev/a-round-mechanism/bin/ARM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/a-round-mechanism/bin/ARM -------------------------------------------------------------------------------- /rev/a-round-mechanism/bin/ASH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/a-round-mechanism/bin/ASH -------------------------------------------------------------------------------- /rev/a-round-mechanism/bin/bin/cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/a-round-mechanism/bin/bin/cat -------------------------------------------------------------------------------- /rev/a-round-mechanism/bin/bin/ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/a-round-mechanism/bin/bin/ls -------------------------------------------------------------------------------- /rev/a-round-mechanism/bin/flag.txt: -------------------------------------------------------------------------------- 1 | flag{4_r3gu14R_m0N5tr051Ty} 2 | -------------------------------------------------------------------------------- /rev/a-round-mechanism/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/a-round-mechanism/challenge.yaml -------------------------------------------------------------------------------- /rev/a-round-mechanism/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/a-round-mechanism/ctf.xinetd -------------------------------------------------------------------------------- /rev/a-round-mechanism/finalArmChall.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/a-round-mechanism/finalArmChall.s -------------------------------------------------------------------------------- /rev/a-round-mechanism/qemu-arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/a-round-mechanism/qemu-arm -------------------------------------------------------------------------------- /rev/a-round-mechanism/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/a-round-mechanism/start.sh -------------------------------------------------------------------------------- /rev/aall/.dockerignore: -------------------------------------------------------------------------------- 1 | /challenge.yaml 2 | -------------------------------------------------------------------------------- /rev/aall/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/aall/Dockerfile -------------------------------------------------------------------------------- /rev/aall/aall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/aall/aall.py -------------------------------------------------------------------------------- /rev/aall/aall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/aall/aall.sh -------------------------------------------------------------------------------- /rev/aall/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/aall/challenge.yaml -------------------------------------------------------------------------------- /rev/aall/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/aall/ctf.xinetd -------------------------------------------------------------------------------- /rev/aall/flag.txt: -------------------------------------------------------------------------------- 1 | flag{b1ng0!_obl1g4t0ry-sh1tty-cust0m_4rch_ch4l-ftw} 2 | -------------------------------------------------------------------------------- /rev/aall/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/aall/start.sh -------------------------------------------------------------------------------- /rev/bubbly/.dockerignore: -------------------------------------------------------------------------------- 1 | challenge.yaml 2 | 3 | -------------------------------------------------------------------------------- /rev/bubbly/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/bubbly/Dockerfile -------------------------------------------------------------------------------- /rev/bubbly/bin/bubbly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/bubbly/bin/bubbly -------------------------------------------------------------------------------- /rev/bubbly/bin/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/bubbly/bin/flag.txt -------------------------------------------------------------------------------- /rev/bubbly/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/bubbly/challenge.yaml -------------------------------------------------------------------------------- /rev/bubbly/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/bubbly/ctf.xinetd -------------------------------------------------------------------------------- /rev/bubbly/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/bubbly/start.sh -------------------------------------------------------------------------------- /rev/chezzzboard/.dockerignore: -------------------------------------------------------------------------------- 1 | challenge.yaml 2 | 3 | -------------------------------------------------------------------------------- /rev/chezzzboard/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/chezzzboard/Dockerfile -------------------------------------------------------------------------------- /rev/chezzzboard/bin/chezzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/chezzzboard/bin/chezzz -------------------------------------------------------------------------------- /rev/chezzzboard/bin/flag.txt: -------------------------------------------------------------------------------- 1 | flag{y3s_i_kn0w_p4wns_c4n_m0v3_tw1c3_0n_th31r_f1rst_pl4y} 2 | -------------------------------------------------------------------------------- /rev/chezzzboard/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/chezzzboard/challenge.yaml -------------------------------------------------------------------------------- /rev/chezzzboard/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/chezzzboard/ctf.xinetd -------------------------------------------------------------------------------- /rev/chezzzboard/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/chezzzboard/start.sh -------------------------------------------------------------------------------- /rev/fetusmaze/.dockerignore: -------------------------------------------------------------------------------- 1 | challenge.yaml 2 | /src 3 | -------------------------------------------------------------------------------- /rev/fetusmaze/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/fetusmaze/Dockerfile -------------------------------------------------------------------------------- /rev/fetusmaze/bin/flag.txt: -------------------------------------------------------------------------------- 1 | flag{d1d_y0u_g3t_l0st?} 2 | -------------------------------------------------------------------------------- /rev/fetusmaze/bin/maze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/fetusmaze/bin/maze -------------------------------------------------------------------------------- /rev/fetusmaze/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/fetusmaze/challenge.yaml -------------------------------------------------------------------------------- /rev/fetusmaze/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/fetusmaze/ctf.xinetd -------------------------------------------------------------------------------- /rev/fetusmaze/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/fetusmaze/start.sh -------------------------------------------------------------------------------- /rev/i-wanna-find-the-flag/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/i-wanna-find-the-flag/challenge.yaml -------------------------------------------------------------------------------- /rev/i-wanna-find-the-flag/i-wanna-find-the-flag.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/i-wanna-find-the-flag/i-wanna-find-the-flag.exe -------------------------------------------------------------------------------- /rev/javaisez2/bin/JavaIsEZ2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/javaisez2/bin/JavaIsEZ2.class -------------------------------------------------------------------------------- /rev/javaisez2/bin/src.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/javaisez2/bin/src.j -------------------------------------------------------------------------------- /rev/javaisez2/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/javaisez2/challenge.yaml -------------------------------------------------------------------------------- /rev/r1sc/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/r1sc/challenge.yaml -------------------------------------------------------------------------------- /rev/r1sc/r1sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/r1sc/r1sc -------------------------------------------------------------------------------- /rev/ropes/bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/ropes/bin/Makefile -------------------------------------------------------------------------------- /rev/ropes/bin/ropes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/ropes/bin/ropes -------------------------------------------------------------------------------- /rev/ropes/bin/ropes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/ropes/bin/ropes.c -------------------------------------------------------------------------------- /rev/ropes/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/ropes/challenge.yaml -------------------------------------------------------------------------------- /rev/rusty-bustacean/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/rusty-bustacean/challenge.yaml -------------------------------------------------------------------------------- /rev/rusty-bustacean/rusty-bustacean.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/rusty-bustacean/rusty-bustacean.exe -------------------------------------------------------------------------------- /rev/smart-solver/SMarT-solver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/smart-solver/SMarT-solver -------------------------------------------------------------------------------- /rev/smart-solver/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/smart-solver/challenge.yaml -------------------------------------------------------------------------------- /rev/wintendo-nii/.dockerignore: -------------------------------------------------------------------------------- 1 | challenge.yaml 2 | config.yml -------------------------------------------------------------------------------- /rev/wintendo-nii/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/wintendo-nii/Dockerfile -------------------------------------------------------------------------------- /rev/wintendo-nii/bin/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/wintendo-nii/bin/flag.txt -------------------------------------------------------------------------------- /rev/wintendo-nii/bin/nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/wintendo-nii/bin/nii -------------------------------------------------------------------------------- /rev/wintendo-nii/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/wintendo-nii/challenge.yaml -------------------------------------------------------------------------------- /rev/wintendo-nii/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/wintendo-nii/ctf.xinetd -------------------------------------------------------------------------------- /rev/wintendo-nii/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/rev/wintendo-nii/start.sh -------------------------------------------------------------------------------- /web/anti-textbook/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/anti-textbook/challenge.yaml -------------------------------------------------------------------------------- /web/anti-textbook/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/anti-textbook/data.txt -------------------------------------------------------------------------------- /web/cookie-recipes-v2/.dockerignore: -------------------------------------------------------------------------------- 1 | challenge.yaml 2 | config.yml -------------------------------------------------------------------------------- /web/cookie-recipes-v2/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/cookie-recipes-v2/.env -------------------------------------------------------------------------------- /web/cookie-recipes-v2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/cookie-recipes-v2/Dockerfile -------------------------------------------------------------------------------- /web/cookie-recipes-v2/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/cookie-recipes-v2/challenge.yaml -------------------------------------------------------------------------------- /web/cookie-recipes-v2/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/cookie-recipes-v2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/cookie-recipes-v2/index.js -------------------------------------------------------------------------------- /web/cookie-recipes-v2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/cookie-recipes-v2/package.json -------------------------------------------------------------------------------- /web/cookie-recipes-v2/public/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/cookie-recipes-v2/public/css/styles.css -------------------------------------------------------------------------------- /web/cookie-recipes-v2/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/cookie-recipes-v2/public/index.html -------------------------------------------------------------------------------- /web/cookie-recipes-v2/public/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/cookie-recipes-v2/public/js/scripts.js -------------------------------------------------------------------------------- /web/cookie-recipes-v2/public/purchases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/cookie-recipes-v2/public/purchases/index.html -------------------------------------------------------------------------------- /web/cookie-recipes-v2/public/purchases/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/cookie-recipes-v2/public/purchases/scripts.js -------------------------------------------------------------------------------- /web/cookie-recipes-v2/public/purchases/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/cookie-recipes-v2/public/purchases/styles.css -------------------------------------------------------------------------------- /web/cookie-recipes-v2/public/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/cookie-recipes-v2/public/scripts.js -------------------------------------------------------------------------------- /web/cookie-recipes-v2/public/store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/cookie-recipes-v2/public/store/index.html -------------------------------------------------------------------------------- /web/cookie-recipes-v2/public/store/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/cookie-recipes-v2/public/store/scripts.js -------------------------------------------------------------------------------- /web/cookie-recipes-v2/public/store/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/cookie-recipes-v2/public/store/styles.css -------------------------------------------------------------------------------- /web/cookie-recipes-v2/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/cookie-recipes-v2/public/styles.css -------------------------------------------------------------------------------- /web/cookie-recipes-v2/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/cookie-recipes-v2/yarn.lock -------------------------------------------------------------------------------- /web/flag-sharer/.dockerignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /challenge.yaml 3 | -------------------------------------------------------------------------------- /web/flag-sharer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/flag-sharer/Dockerfile -------------------------------------------------------------------------------- /web/flag-sharer/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/flag-sharer/app.js -------------------------------------------------------------------------------- /web/flag-sharer/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/flag-sharer/challenge.yaml -------------------------------------------------------------------------------- /web/flag-sharer/flag-sharer.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/flag-sharer/flag-sharer.tar -------------------------------------------------------------------------------- /web/flag-sharer/gifts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/flag-sharer/gifts.html -------------------------------------------------------------------------------- /web/flag-sharer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/flag-sharer/package.json -------------------------------------------------------------------------------- /web/flag-sharer/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/flag-sharer/register.html -------------------------------------------------------------------------------- /web/flag-sharer/static/bad_csrf.css: -------------------------------------------------------------------------------- 1 | .error { 2 | background: #e91e63; 3 | } 4 | -------------------------------------------------------------------------------- /web/flag-sharer/static/bad_gift.css: -------------------------------------------------------------------------------- 1 | .error { 2 | background: #1976d2; 3 | } 4 | -------------------------------------------------------------------------------- /web/flag-sharer/static/bad_recipient.css: -------------------------------------------------------------------------------- 1 | .error { 2 | background: #ff5722; 3 | } 4 | -------------------------------------------------------------------------------- /web/flag-sharer/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/flag-sharer/yarn.lock -------------------------------------------------------------------------------- /web/got-stacks/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/.dockerignore -------------------------------------------------------------------------------- /web/got-stacks/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/Dockerfile -------------------------------------------------------------------------------- /web/got-stacks/app/db/setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/db/setup.sql -------------------------------------------------------------------------------- /web/got-stacks/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/package.json -------------------------------------------------------------------------------- /web/got-stacks/app/public/._index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/._index.html -------------------------------------------------------------------------------- /web/got-stacks/app/public/css/creative.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/css/creative.min.css -------------------------------------------------------------------------------- /web/got-stacks/app/public/img/bg-masthead.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/img/bg-masthead.jpg -------------------------------------------------------------------------------- /web/got-stacks/app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/index.html -------------------------------------------------------------------------------- /web/got-stacks/app/public/js/creative.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/js/creative.min.js -------------------------------------------------------------------------------- /web/got-stacks/app/public/scss/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/scss/_global.scss -------------------------------------------------------------------------------- /web/got-stacks/app/public/scss/_masthead.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/scss/_masthead.scss -------------------------------------------------------------------------------- /web/got-stacks/app/public/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/scss/_navbar.scss -------------------------------------------------------------------------------- /web/got-stacks/app/public/scss/_portfolio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/scss/_portfolio.scss -------------------------------------------------------------------------------- /web/got-stacks/app/public/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/scss/_variables.scss -------------------------------------------------------------------------------- /web/got-stacks/app/public/scss/creative.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/scss/creative.scss -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/css/all.css -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/css/all.min.css -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/css/brands.css -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/css/brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/css/brands.min.css -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/css/fontawesome.css -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/css/fontawesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/css/fontawesome.min.css -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/css/regular.css -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/css/regular.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/css/regular.min.css -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/css/solid.css -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/css/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/css/solid.min.css -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/css/svg-with-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/css/svg-with-js.css -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/css/svg-with-js.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/css/svg-with-js.min.css -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/css/v4-shims.css -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/css/v4-shims.min.css -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/fontawesome-free/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/jquery-easing/jquery.easing.compatibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/jquery-easing/jquery.easing.compatibility.js -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/jquery-easing/jquery.easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/jquery-easing/jquery.easing.js -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/jquery-easing/jquery.easing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/jquery-easing/jquery.easing.min.js -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/jquery/jquery.min.map -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/jquery/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/jquery/jquery.slim.js -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/jquery/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/jquery/jquery.slim.min.js -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/jquery/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/jquery/jquery.slim.min.map -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/magnific-popup/jquery.magnific-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/magnific-popup/jquery.magnific-popup.js -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/magnific-popup/jquery.magnific-popup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/magnific-popup/jquery.magnific-popup.min.js -------------------------------------------------------------------------------- /web/got-stacks/app/public/vendor/magnific-popup/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/public/vendor/magnific-popup/magnific-popup.css -------------------------------------------------------------------------------- /web/got-stacks/app/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/app/server.js -------------------------------------------------------------------------------- /web/got-stacks/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/challenge.yaml -------------------------------------------------------------------------------- /web/got-stacks/flag.txt: -------------------------------------------------------------------------------- 1 | flag{H4cK_w4f_p4s5_iT_0N_d0_Y0u_H4ve_St4cks} 2 | -------------------------------------------------------------------------------- /web/got-stacks/got-stacks.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/got-stacks.tar.gz -------------------------------------------------------------------------------- /web/got-stacks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/readme.md -------------------------------------------------------------------------------- /web/got-stacks/runall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/got-stacks/runall.sh -------------------------------------------------------------------------------- /web/inspector-general/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/inspector-general/challenge.yaml -------------------------------------------------------------------------------- /web/login/.dockerignore: -------------------------------------------------------------------------------- 1 | /challenge.yaml 2 | -------------------------------------------------------------------------------- /web/login/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/login/.env -------------------------------------------------------------------------------- /web/login/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/login/Dockerfile -------------------------------------------------------------------------------- /web/login/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/login/challenge.yaml -------------------------------------------------------------------------------- /web/login/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/login/index.js -------------------------------------------------------------------------------- /web/login/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/login/package.json -------------------------------------------------------------------------------- /web/login/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/login/public/index.html -------------------------------------------------------------------------------- /web/login/public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/login/public/script.js -------------------------------------------------------------------------------- /web/login/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/login/public/styles.css -------------------------------------------------------------------------------- /web/login/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/login/yarn.lock -------------------------------------------------------------------------------- /web/maria-bin/.dockerignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /challenge.yaml 3 | -------------------------------------------------------------------------------- /web/maria-bin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/maria-bin/Dockerfile -------------------------------------------------------------------------------- /web/maria-bin/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/maria-bin/app.js -------------------------------------------------------------------------------- /web/maria-bin/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/maria-bin/challenge.yaml -------------------------------------------------------------------------------- /web/maria-bin/maria-bin.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/maria-bin/maria-bin.tar -------------------------------------------------------------------------------- /web/maria-bin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/maria-bin/package.json -------------------------------------------------------------------------------- /web/maria-bin/pages/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/maria-bin/pages/logo.jpg -------------------------------------------------------------------------------- /web/maria-bin/pages/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/maria-bin/pages/new.html -------------------------------------------------------------------------------- /web/maria-bin/pages/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/maria-bin/pages/register.html -------------------------------------------------------------------------------- /web/maria-bin/pages/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/maria-bin/pages/search.html -------------------------------------------------------------------------------- /web/maria-bin/pages/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/maria-bin/pages/view.html -------------------------------------------------------------------------------- /web/maria-bin/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/maria-bin/yarn.lock -------------------------------------------------------------------------------- /web/panda-facts-v2/.dockerignore: -------------------------------------------------------------------------------- 1 | challenge.yaml 2 | config.yml -------------------------------------------------------------------------------- /web/panda-facts-v2/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts-v2/.env -------------------------------------------------------------------------------- /web/panda-facts-v2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts-v2/Dockerfile -------------------------------------------------------------------------------- /web/panda-facts-v2/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts-v2/challenge.yaml -------------------------------------------------------------------------------- /web/panda-facts-v2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts-v2/index.js -------------------------------------------------------------------------------- /web/panda-facts-v2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts-v2/package.json -------------------------------------------------------------------------------- /web/panda-facts-v2/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts-v2/public/index.html -------------------------------------------------------------------------------- /web/panda-facts-v2/public/pandas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts-v2/public/pandas/index.html -------------------------------------------------------------------------------- /web/panda-facts-v2/public/pandas/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts-v2/public/pandas/script.js -------------------------------------------------------------------------------- /web/panda-facts-v2/public/pandas/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts-v2/public/pandas/styles.css -------------------------------------------------------------------------------- /web/panda-facts-v2/public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts-v2/public/script.js -------------------------------------------------------------------------------- /web/panda-facts-v2/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts-v2/public/styles.css -------------------------------------------------------------------------------- /web/panda-facts-v2/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts-v2/yarn.lock -------------------------------------------------------------------------------- /web/panda-facts/.dockerignore: -------------------------------------------------------------------------------- 1 | challenge.yaml 2 | config.yml -------------------------------------------------------------------------------- /web/panda-facts/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts/.env -------------------------------------------------------------------------------- /web/panda-facts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts/Dockerfile -------------------------------------------------------------------------------- /web/panda-facts/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts/challenge.yaml -------------------------------------------------------------------------------- /web/panda-facts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts/index.js -------------------------------------------------------------------------------- /web/panda-facts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts/package.json -------------------------------------------------------------------------------- /web/panda-facts/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts/public/index.html -------------------------------------------------------------------------------- /web/panda-facts/public/pandas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts/public/pandas/index.html -------------------------------------------------------------------------------- /web/panda-facts/public/pandas/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts/public/pandas/script.js -------------------------------------------------------------------------------- /web/panda-facts/public/pandas/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts/public/pandas/styles.css -------------------------------------------------------------------------------- /web/panda-facts/public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts/public/script.js -------------------------------------------------------------------------------- /web/panda-facts/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts/public/styles.css -------------------------------------------------------------------------------- /web/panda-facts/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/panda-facts/yarn.lock -------------------------------------------------------------------------------- /web/post-it-notes/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/post-it-notes/Dockerfile -------------------------------------------------------------------------------- /web/post-it-notes/api/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/post-it-notes/api/server.py -------------------------------------------------------------------------------- /web/post-it-notes/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/post-it-notes/challenge.yaml -------------------------------------------------------------------------------- /web/post-it-notes/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/post-it-notes/compile.sh -------------------------------------------------------------------------------- /web/post-it-notes/flag.txt: -------------------------------------------------------------------------------- 1 | flag{y0u_b3tt3r_n0t_m@k3_m3_l0s3_my_pyth0n_d3v_j0b} 2 | -------------------------------------------------------------------------------- /web/post-it-notes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/post-it-notes/main.py -------------------------------------------------------------------------------- /web/post-it-notes/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/post-it-notes/notes.py -------------------------------------------------------------------------------- /web/post-it-notes/source.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/post-it-notes/source.zip -------------------------------------------------------------------------------- /web/post-it-notes/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/post-it-notes/start.sh -------------------------------------------------------------------------------- /web/post-it-notes/web/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/post-it-notes/web/server.py -------------------------------------------------------------------------------- /web/post-it-notes/web/static/protected-by-captcha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/post-it-notes/web/static/protected-by-captcha.png -------------------------------------------------------------------------------- /web/post-it-notes/web/templates/about.html: -------------------------------------------------------------------------------- 1 | i use arch btw 2 | -------------------------------------------------------------------------------- /web/post-it-notes/web/templates/error.html: -------------------------------------------------------------------------------- 1 | WHAT DID YOU DO 2 | -------------------------------------------------------------------------------- /web/post-it-notes/web/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/post-it-notes/web/templates/index.html -------------------------------------------------------------------------------- /web/post-it-notes/web/templates/note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/post-it-notes/web/templates/note.html -------------------------------------------------------------------------------- /web/post-it-notes/web/templates/robots.txt: -------------------------------------------------------------------------------- 1 | i use arch btw 2 | -------------------------------------------------------------------------------- /web/static-pastebin/.dockerignore: -------------------------------------------------------------------------------- 1 | /challenge.yaml 2 | -------------------------------------------------------------------------------- /web/static-pastebin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/static-pastebin/Dockerfile -------------------------------------------------------------------------------- /web/static-pastebin/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/static-pastebin/challenge.yaml -------------------------------------------------------------------------------- /web/static-pastebin/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/static-pastebin/public/index.html -------------------------------------------------------------------------------- /web/static-pastebin/public/paste/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/static-pastebin/public/paste/index.html -------------------------------------------------------------------------------- /web/static-pastebin/public/paste/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/static-pastebin/public/paste/script.js -------------------------------------------------------------------------------- /web/static-pastebin/public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/static-pastebin/public/script.js -------------------------------------------------------------------------------- /web/static-pastebin/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/static-pastebin/public/styles.css -------------------------------------------------------------------------------- /web/static-static-hosting/.dockerignore: -------------------------------------------------------------------------------- 1 | /challenge.yaml 2 | -------------------------------------------------------------------------------- /web/static-static-hosting/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/static-static-hosting/Dockerfile -------------------------------------------------------------------------------- /web/static-static-hosting/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/static-static-hosting/challenge.yaml -------------------------------------------------------------------------------- /web/static-static-hosting/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/static-static-hosting/public/index.html -------------------------------------------------------------------------------- /web/static-static-hosting/public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/static-static-hosting/public/script.js -------------------------------------------------------------------------------- /web/static-static-hosting/public/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/static-static-hosting/public/site/index.html -------------------------------------------------------------------------------- /web/static-static-hosting/public/site/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/static-static-hosting/public/site/script.js -------------------------------------------------------------------------------- /web/static-static-hosting/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/static-static-hosting/public/styles.css -------------------------------------------------------------------------------- /web/tux-fanpage/.dockerignore: -------------------------------------------------------------------------------- 1 | challenge.yaml 2 | config.yml -------------------------------------------------------------------------------- /web/tux-fanpage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/tux-fanpage/Dockerfile -------------------------------------------------------------------------------- /web/tux-fanpage/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/tux-fanpage/challenge.yaml -------------------------------------------------------------------------------- /web/tux-fanpage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/tux-fanpage/index.js -------------------------------------------------------------------------------- /web/tux-fanpage/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/tux-fanpage/package-lock.json -------------------------------------------------------------------------------- /web/tux-fanpage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/tux-fanpage/package.json -------------------------------------------------------------------------------- /web/tux-fanpage/public/assets/81f.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/tux-fanpage/public/assets/81f.gif -------------------------------------------------------------------------------- /web/tux-fanpage/public/assets/banjo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/tux-fanpage/public/assets/banjo.gif -------------------------------------------------------------------------------- /web/tux-fanpage/public/assets/const2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/tux-fanpage/public/assets/const2.gif -------------------------------------------------------------------------------- /web/tux-fanpage/public/assets/party.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/tux-fanpage/public/assets/party.gif -------------------------------------------------------------------------------- /web/tux-fanpage/public/assets/rainbow-spectral-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/tux-fanpage/public/assets/rainbow-spectral-gradient.png -------------------------------------------------------------------------------- /web/tux-fanpage/public/assets/tux.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/tux-fanpage/public/assets/tux.jpeg -------------------------------------------------------------------------------- /web/tux-fanpage/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/tux-fanpage/public/index.html -------------------------------------------------------------------------------- /web/tux-fanpage/public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/tux-fanpage/public/style.css -------------------------------------------------------------------------------- /web/viper/app/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /web/viper/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/viper/app/Dockerfile -------------------------------------------------------------------------------- /web/viper/app/flag.txt: -------------------------------------------------------------------------------- 1 | flag{w0W!_tH3_v1p3R_hUrTs1!11!} 2 | -------------------------------------------------------------------------------- /web/viper/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/viper/app/package.json -------------------------------------------------------------------------------- /web/viper/app/public/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/viper/app/public/analytics.js -------------------------------------------------------------------------------- /web/viper/app/public/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/viper/app/public/bootstrap.min.css -------------------------------------------------------------------------------- /web/viper/app/public/custom.css: -------------------------------------------------------------------------------- 1 | #analyticsUrl { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /web/viper/app/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/viper/app/server.js -------------------------------------------------------------------------------- /web/viper/app/views/pages/admin.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/viper/app/views/pages/admin.ejs -------------------------------------------------------------------------------- /web/viper/app/views/pages/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/viper/app/views/pages/index.ejs -------------------------------------------------------------------------------- /web/viper/app/views/pages/viper.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/viper/app/views/pages/viper.ejs -------------------------------------------------------------------------------- /web/viper/app/views/partials/head.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/viper/app/views/partials/head.ejs -------------------------------------------------------------------------------- /web/viper/app/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/viper/app/wait-for-it.sh -------------------------------------------------------------------------------- /web/viper/app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/viper/app/yarn.lock -------------------------------------------------------------------------------- /web/viper/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/viper/challenge.yaml -------------------------------------------------------------------------------- /web/viper/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/viper/docker-compose.yml -------------------------------------------------------------------------------- /web/viper/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/viper/exploit.py -------------------------------------------------------------------------------- /web/viper/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/viper/nginx/Dockerfile -------------------------------------------------------------------------------- /web/viper/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/viper/nginx/nginx.conf -------------------------------------------------------------------------------- /web/viper/viper.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpwn/redpwnctf-2020-challenges/HEAD/web/viper/viper.tar.gz --------------------------------------------------------------------------------