├── .gitignore ├── .gitlab-ci.yml ├── crypto ├── .gitkeep ├── babycrypto │ ├── README.md │ ├── ciphertext.txt │ ├── decrypt_ciphertext.py │ └── generate_ciphertext.py ├── collusion │ ├── README.md │ ├── bobs-key.json │ ├── carols-key.json │ ├── common.go │ ├── encrypter.json │ ├── generate_challenge.go │ ├── message.json │ └── solve_challenge.go ├── flatcrypt │ ├── Dockerfile │ ├── README.md │ ├── serv-distribute.py │ └── serv.py ├── holywater │ ├── ciphertext.txt │ ├── cryptotext │ ├── flag.txt │ └── lattice.py └── lowe │ ├── .gitignore │ ├── README.md │ ├── challenge.py │ ├── deliverables │ ├── file.enc │ ├── key.enc │ └── pubkey.pem │ ├── flag.txt │ └── solver.py ├── forensics ├── .gitkeep ├── mcgriddle │ ├── README.md │ ├── challenge_part │ │ ├── boards │ │ ├── chess │ │ │ ├── boards │ │ │ ├── final_moves │ │ │ ├── from_moves.py │ │ │ └── get_move_set.py │ │ ├── flag.test │ │ ├── gboards │ │ ├── images │ │ │ ├── 0.svg │ │ │ ├── 1.svg │ │ │ ├── 10.svg │ │ │ ├── 100.svg │ │ │ ├── 101.svg │ │ │ ├── 102.svg │ │ │ ├── 103.svg │ │ │ ├── 104.svg │ │ │ ├── 105.svg │ │ │ ├── 106.svg │ │ │ ├── 107.svg │ │ │ ├── 108.svg │ │ │ ├── 109.svg │ │ │ ├── 11.svg │ │ │ ├── 110.svg │ │ │ ├── 111.svg │ │ │ ├── 112.svg │ │ │ ├── 113.svg │ │ │ ├── 114.svg │ │ │ ├── 115.svg │ │ │ ├── 116.svg │ │ │ ├── 117.svg │ │ │ ├── 118.svg │ │ │ ├── 119.svg │ │ │ ├── 12.svg │ │ │ ├── 120.svg │ │ │ ├── 121.svg │ │ │ ├── 122.svg │ │ │ ├── 123.svg │ │ │ ├── 124.svg │ │ │ ├── 125.svg │ │ │ ├── 126.svg │ │ │ ├── 127.svg │ │ │ ├── 128.svg │ │ │ ├── 129.svg │ │ │ ├── 13.svg │ │ │ ├── 130.svg │ │ │ ├── 131.svg │ │ │ ├── 132.svg │ │ │ ├── 133.svg │ │ │ ├── 134.svg │ │ │ ├── 135.svg │ │ │ ├── 136.svg │ │ │ ├── 137.svg │ │ │ ├── 138.svg │ │ │ ├── 139.svg │ │ │ ├── 14.svg │ │ │ ├── 140.svg │ │ │ ├── 141.svg │ │ │ ├── 142.svg │ │ │ ├── 143.svg │ │ │ ├── 144.svg │ │ │ ├── 145.svg │ │ │ ├── 146.svg │ │ │ ├── 147.svg │ │ │ ├── 148.svg │ │ │ ├── 149.svg │ │ │ ├── 15.svg │ │ │ ├── 150.svg │ │ │ ├── 151.svg │ │ │ ├── 152.svg │ │ │ ├── 153.svg │ │ │ ├── 154.svg │ │ │ ├── 155.svg │ │ │ ├── 156.svg │ │ │ ├── 157.svg │ │ │ ├── 158.svg │ │ │ ├── 159.svg │ │ │ ├── 16.svg │ │ │ ├── 160.svg │ │ │ ├── 161.svg │ │ │ ├── 162.svg │ │ │ ├── 163.svg │ │ │ ├── 164.svg │ │ │ ├── 165.svg │ │ │ ├── 166.svg │ │ │ ├── 167.svg │ │ │ ├── 168.svg │ │ │ ├── 169.svg │ │ │ ├── 17.svg │ │ │ ├── 170.svg │ │ │ ├── 171.svg │ │ │ ├── 172.svg │ │ │ ├── 173.svg │ │ │ ├── 174.svg │ │ │ ├── 175.svg │ │ │ ├── 176.svg │ │ │ ├── 177.svg │ │ │ ├── 178.svg │ │ │ ├── 179.svg │ │ │ ├── 18.svg │ │ │ ├── 180.svg │ │ │ ├── 181.svg │ │ │ ├── 182.svg │ │ │ ├── 183.svg │ │ │ ├── 184.svg │ │ │ ├── 185.svg │ │ │ ├── 186.svg │ │ │ ├── 187.svg │ │ │ ├── 188.svg │ │ │ ├── 189.svg │ │ │ ├── 19.svg │ │ │ ├── 190.svg │ │ │ ├── 191.svg │ │ │ ├── 192.svg │ │ │ ├── 193.svg │ │ │ ├── 194.svg │ │ │ ├── 195.svg │ │ │ ├── 196.svg │ │ │ ├── 197.svg │ │ │ ├── 198.svg │ │ │ ├── 199.svg │ │ │ ├── 2.svg │ │ │ ├── 20.svg │ │ │ ├── 200.svg │ │ │ ├── 201.svg │ │ │ ├── 202.svg │ │ │ ├── 203.svg │ │ │ ├── 21.svg │ │ │ ├── 22.svg │ │ │ ├── 23.svg │ │ │ ├── 24.svg │ │ │ ├── 25.svg │ │ │ ├── 26.svg │ │ │ ├── 27.svg │ │ │ ├── 28.svg │ │ │ ├── 29.svg │ │ │ ├── 3.svg │ │ │ ├── 30.svg │ │ │ ├── 31.svg │ │ │ ├── 32.svg │ │ │ ├── 33.svg │ │ │ ├── 34.svg │ │ │ ├── 35.svg │ │ │ ├── 36.svg │ │ │ ├── 37.svg │ │ │ ├── 38.svg │ │ │ ├── 39.svg │ │ │ ├── 4.svg │ │ │ ├── 40.svg │ │ │ ├── 41.svg │ │ │ ├── 42.svg │ │ │ ├── 43.svg │ │ │ ├── 44.svg │ │ │ ├── 45.svg │ │ │ ├── 46.svg │ │ │ ├── 47.svg │ │ │ ├── 48.svg │ │ │ ├── 49.svg │ │ │ ├── 5.svg │ │ │ ├── 50.svg │ │ │ ├── 51.svg │ │ │ ├── 52.svg │ │ │ ├── 53.svg │ │ │ ├── 54.svg │ │ │ ├── 55.svg │ │ │ ├── 56.svg │ │ │ ├── 57.svg │ │ │ ├── 58.svg │ │ │ ├── 59.svg │ │ │ ├── 6.svg │ │ │ ├── 60.svg │ │ │ ├── 61.svg │ │ │ ├── 62.svg │ │ │ ├── 63.svg │ │ │ ├── 64.svg │ │ │ ├── 65.svg │ │ │ ├── 66.svg │ │ │ ├── 67.svg │ │ │ ├── 68.svg │ │ │ ├── 69.svg │ │ │ ├── 7.svg │ │ │ ├── 70.svg │ │ │ ├── 71.svg │ │ │ ├── 72.svg │ │ │ ├── 73.svg │ │ │ ├── 74.svg │ │ │ ├── 75.svg │ │ │ ├── 76.svg │ │ │ ├── 77.svg │ │ │ ├── 78.svg │ │ │ ├── 79.svg │ │ │ ├── 8.svg │ │ │ ├── 80.svg │ │ │ ├── 81.svg │ │ │ ├── 82.svg │ │ │ ├── 83.svg │ │ │ ├── 84.svg │ │ │ ├── 85.svg │ │ │ ├── 86.svg │ │ │ ├── 87.svg │ │ │ ├── 88.svg │ │ │ ├── 89.svg │ │ │ ├── 9.svg │ │ │ ├── 90.svg │ │ │ ├── 91.svg │ │ │ ├── 92.svg │ │ │ ├── 93.svg │ │ │ ├── 94.svg │ │ │ ├── 95.svg │ │ │ ├── 96.svg │ │ │ ├── 97.svg │ │ │ ├── 98.svg │ │ │ └── 99.svg │ │ ├── mcgriddle.py │ │ ├── server │ │ │ ├── final │ │ │ └── server.py │ │ ├── solver.py │ │ └── to_images.py │ ├── chess │ │ ├── boards │ │ ├── final_moves │ │ ├── from_moves.py │ │ └── get_move_set.py │ ├── final.pcap │ ├── flagfile │ └── output.pcap ├── rewind │ ├── README.md │ ├── memstrings.cpp │ └── memstrings.h ├── simple-recovery │ ├── README.md │ ├── disk.img0.7z │ ├── disk.img1.7z │ ├── simple-recovery.zip │ └── solver.py └── whyOS │ ├── com.yourcompany.whyos_4.2.0-28+debug_iphoneos-arm.deb │ └── console.log ├── misc ├── .gitkeep ├── Short-Circuit │ ├── README.md │ └── short-circuit.jpg ├── TakeAnL │ ├── Dockerfile │ ├── README.md │ ├── __pycache__ │ │ └── checker.cpython-36.pyc │ ├── checker.py │ ├── checker.pyc │ ├── description.pdf │ ├── description.png │ ├── server.py │ └── solver.py ├── algebra │ ├── Dockerfile │ ├── README.md │ ├── algebra.py │ ├── art.txt │ ├── flag.txt │ ├── run.sh │ └── solver.py └── bin_t │ ├── Dockerfile │ ├── README.md │ ├── flag.py │ ├── flag.pyc │ ├── pyavltree.py │ ├── pyavltree.pyc │ ├── solver.py │ └── tree.py ├── pwn ├── .gitkeep ├── alien_invasion │ ├── .gitignore │ ├── Dockerfile │ ├── Dockerfile-test │ ├── Makefile │ ├── README.md │ ├── a_vs_s.c │ ├── aliensVSsamurais │ ├── art.txt │ ├── flag.txt │ ├── libc.so.6 │ ├── run.sh │ ├── solve.py │ ├── solver.py │ └── test.c ├── bigboy │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── art.txt │ ├── boi │ ├── boi.c │ ├── flag.txt │ ├── run.sh │ └── solver.py ├── doubletrouble │ ├── Dockerfile │ ├── README.md │ ├── doubletrouble │ ├── flag.txt │ └── solve.py ├── get_it? │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── art.txt │ ├── flag.txt │ ├── get_it │ ├── get_it.c │ ├── run.sh │ └── solver.py ├── plc │ └── README.md ├── shellpointcode │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── flag.txt │ ├── shellpointcode │ ├── shellpointcode.c │ └── solver.py └── turtles │ ├── Dockerfile │ ├── README.md │ ├── flag │ ├── libs.zip │ ├── libs │ ├── libc-2.19.so │ ├── libc.so.6 │ ├── libdl-2.19.so │ ├── libdl.so.2 │ ├── libffi.so.6 │ ├── libffi.so.6.0.2 │ ├── libgcc_s.so.1 │ ├── libgnustep-base.so.1.25 │ ├── libgnustep-base.so.1.25.0 │ ├── libicudata.so.52 │ ├── libicudata.so.52.1 │ ├── libicui18n.so.52 │ ├── libicui18n.so.52.1 │ ├── libicuuc.so.52 │ ├── libicuuc.so.52.1 │ ├── liblzma.so.5 │ ├── liblzma.so.5.0.0 │ ├── libm-2.19.so │ ├── libm.so.6 │ ├── libobjc.so.4 │ ├── libobjc.so.4.0.0 │ ├── libpthread-2.19.so │ ├── libpthread.so.0 │ ├── librt-2.19.so │ ├── librt.so.1 │ ├── libstdc++.so.6 │ ├── libstdc++.so.6.0.20 │ ├── libxml2.so.2 │ ├── libxml2.so.2.9.1 │ ├── libxslt.so.1 │ ├── libxslt.so.1.1.28 │ └── libz.so.1.2.8 │ ├── turtles │ ├── turtles.m │ └── turtles.py ├── rev ├── 1337 │ ├── 1337.exe │ └── main.c ├── .gitkeep ├── A-Walk-Through-x86-Part-1 │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── solve.txt │ ├── stage-1-server.py │ ├── stage-1.asm │ ├── stage-2.asm │ └── stage-2.bin ├── A-Walk-Through-x86-Part-2 │ ├── Makefile │ ├── README.md │ ├── flaggen.py │ ├── solve.txt │ ├── stage-1.asm │ └── stage-2.bin ├── A-Walk-Through-x86-Part-3 │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── flag.txt │ ├── part-3-server.py │ ├── solve.asm │ ├── stage-1.asm │ ├── stage-2.asm │ └── tacOS-base.bin ├── kvm │ ├── README.txt │ ├── chal │ │ ├── Makefile │ │ ├── dont_obf.c │ │ ├── dont_obf.h │ │ ├── dont_obf.o │ │ ├── flag-compress.h │ │ ├── guest-tbl.c │ │ ├── guest-tbl.o │ │ ├── guest.c │ │ ├── guest.img │ │ ├── guest.ld │ │ ├── guest.o │ │ ├── huffman.c │ │ ├── huffman.h │ │ ├── huffman.o │ │ ├── obf.c │ │ ├── obf.h │ │ └── obf.o │ ├── flag.tar │ ├── kvm │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── challenge │ │ ├── challenge.c │ │ ├── challenge.o │ │ ├── guest.o │ │ ├── payload.ld │ │ └── payload.o │ └── secret-sauce │ │ ├── .gitignore │ │ ├── __init__.py │ │ └── deflatten.py └── notprotobuf │ ├── .gitignore │ ├── CSLLC_Logo_Block.png │ ├── Dockerfile-dev_client │ ├── Dockerfile-dev_server │ ├── Dockerfile-prod_server │ ├── README.md │ ├── client.py │ ├── docker-compose.yml │ ├── initialize.py │ ├── library.py │ ├── notprotobuf.tar.gz │ ├── server.py │ ├── solve.py │ └── zksolve.py └── web ├── ldab ├── Dockerfile ├── README.md ├── htdocs │ └── index.php ├── ldap.conf ├── start.sh ├── start_slapd ├── supervisord.conf └── users.ldif ├── movie_club ├── .dockerignore ├── Dockerfile ├── README.md ├── build.sh ├── chrome.js ├── run.sh ├── server │ ├── cdn.js │ ├── cdn │ │ ├── app.js │ │ ├── main.mst │ │ └── mustache.min.js │ ├── cdn_admin.js │ ├── movies.py │ ├── templates │ │ └── index.html │ ├── test.py │ └── util.py ├── setup.sh └── sol.py ├── nvs ├── README.md ├── bin │ └── nip ├── conf │ ├── apache2 │ │ ├── 000-default.conf │ │ └── ports.conf │ ├── hosts │ ├── nginx │ │ └── default │ ├── powerdns │ │ ├── named.conf │ │ ├── nip.conf │ │ ├── pdns.conf │ │ └── vulnerable.services.db │ └── resolv.conf ├── setup.sh └── src │ ├── db.php │ ├── lb │ └── 403.html │ ├── nvs │ ├── LICENSE.txt │ ├── README.txt │ ├── footer.php │ ├── header.php │ ├── index.php │ ├── register.php │ └── static │ │ ├── css │ │ ├── font-awesome.min.css │ │ ├── images │ │ │ ├── arrow.svg │ │ │ ├── ie │ │ │ │ └── banner-overlay.png │ │ │ └── overlay.png │ │ ├── main.css │ │ └── noscript.css │ │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ │ ├── images │ │ ├── banner.jpg │ │ ├── pic01.jpg │ │ ├── pic02.jpg │ │ ├── pic03.jpg │ │ ├── pic04.jpg │ │ ├── pic05.jpg │ │ ├── pic06.jpg │ │ ├── pic07.jpg │ │ └── pic08.jpg │ │ ├── js │ │ ├── breakpoints.min.js │ │ ├── browser.min.js │ │ ├── jquery.dropotron.min.js │ │ ├── jquery.min.js │ │ ├── jquery.scrollex.min.js │ │ ├── jquery.scrolly.min.js │ │ ├── main.js │ │ └── util.js │ │ └── sass │ │ ├── libs │ │ ├── _breakpoints.scss │ │ ├── _functions.scss │ │ ├── _html-grid.scss │ │ ├── _mixins.scss │ │ ├── _vars.scss │ │ └── _vendor.scss │ │ ├── main.scss │ │ └── noscript.scss │ ├── nvs_admin │ ├── authed.php │ ├── index.php │ ├── lb.php │ ├── login.php │ └── review.php │ ├── nvs_support │ ├── run.sh │ └── src │ │ ├── flag.txt │ │ ├── index.php │ │ └── ping.php │ └── secrets.php ├── sso ├── .dockerignore ├── .gitignore ├── Dockerfile ├── index.js ├── package.json ├── solver.js └── yarn.lock └── wtf_sql ├── Dockerfile ├── README.md ├── app.sql ├── build.sh ├── components ├── 00-common-tables.sql ├── 01-static.sql ├── 02-templates.sql ├── 03-http.sql ├── 10-dispatcher.sql ├── 20-templates.sql ├── 50-app_tables.sql ├── 60-app_utils.sql ├── 61-app_priv_utils.sql ├── 90-routes.sql └── 99-config.sql ├── crawl.txt ├── generate_static.py ├── generate_templates.py ├── kill.sh ├── makefile ├── reload.sh ├── run.sh ├── server.py ├── start.sh ├── static ├── bg.png ├── style.css └── wtf_sql.png └── templates ├── 404.html ├── admin.html ├── admin_create_panel_partial.html ├── index_logged_in.html ├── login.html └── register.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /crypto/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crypto/babycrypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/babycrypto/README.md -------------------------------------------------------------------------------- /crypto/babycrypto/ciphertext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/babycrypto/ciphertext.txt -------------------------------------------------------------------------------- /crypto/babycrypto/decrypt_ciphertext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/babycrypto/decrypt_ciphertext.py -------------------------------------------------------------------------------- /crypto/babycrypto/generate_ciphertext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/babycrypto/generate_ciphertext.py -------------------------------------------------------------------------------- /crypto/collusion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/collusion/README.md -------------------------------------------------------------------------------- /crypto/collusion/bobs-key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/collusion/bobs-key.json -------------------------------------------------------------------------------- /crypto/collusion/carols-key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/collusion/carols-key.json -------------------------------------------------------------------------------- /crypto/collusion/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/collusion/common.go -------------------------------------------------------------------------------- /crypto/collusion/encrypter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/collusion/encrypter.json -------------------------------------------------------------------------------- /crypto/collusion/generate_challenge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/collusion/generate_challenge.go -------------------------------------------------------------------------------- /crypto/collusion/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/collusion/message.json -------------------------------------------------------------------------------- /crypto/collusion/solve_challenge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/collusion/solve_challenge.go -------------------------------------------------------------------------------- /crypto/flatcrypt/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/flatcrypt/Dockerfile -------------------------------------------------------------------------------- /crypto/flatcrypt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/flatcrypt/README.md -------------------------------------------------------------------------------- /crypto/flatcrypt/serv-distribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/flatcrypt/serv-distribute.py -------------------------------------------------------------------------------- /crypto/flatcrypt/serv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/flatcrypt/serv.py -------------------------------------------------------------------------------- /crypto/holywater/ciphertext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/holywater/ciphertext.txt -------------------------------------------------------------------------------- /crypto/holywater/cryptotext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/holywater/cryptotext -------------------------------------------------------------------------------- /crypto/holywater/flag.txt: -------------------------------------------------------------------------------- 1 | flag{cayley-do-you-love-me} 2 | -------------------------------------------------------------------------------- /crypto/holywater/lattice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/holywater/lattice.py -------------------------------------------------------------------------------- /crypto/lowe/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /crypto/lowe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/lowe/README.md -------------------------------------------------------------------------------- /crypto/lowe/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/lowe/challenge.py -------------------------------------------------------------------------------- /crypto/lowe/deliverables/file.enc: -------------------------------------------------------------------------------- 1 | kStoynmN5LSniue0nDxli9csSrBgexZ/YOo5e+MUkfJKwvht8hHsYyMGVYzMlOp9sAFBrPCbm4UA4n7oMr2zlg== -------------------------------------------------------------------------------- /crypto/lowe/deliverables/key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/lowe/deliverables/key.enc -------------------------------------------------------------------------------- /crypto/lowe/deliverables/pubkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/lowe/deliverables/pubkey.pem -------------------------------------------------------------------------------- /crypto/lowe/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/lowe/flag.txt -------------------------------------------------------------------------------- /crypto/lowe/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/crypto/lowe/solver.py -------------------------------------------------------------------------------- /forensics/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forensics/mcgriddle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/README.md -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/boards: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/boards -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/chess/boards: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/chess/boards -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/chess/final_moves: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/chess/final_moves -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/chess/from_moves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/chess/from_moves.py -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/chess/get_move_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/chess/get_move_set.py -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/flag.test: -------------------------------------------------------------------------------- 1 | flag{helloworld} 2 | -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/gboards: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/gboards -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/0.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/1.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/10.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/100.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/101.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/101.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/102.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/102.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/103.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/103.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/104.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/104.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/105.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/105.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/106.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/106.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/107.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/107.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/108.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/108.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/109.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/109.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/11.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/110.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/110.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/111.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/111.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/112.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/112.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/113.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/113.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/114.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/114.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/115.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/115.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/116.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/116.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/117.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/117.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/118.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/118.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/119.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/119.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/12.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/120.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/120.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/121.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/121.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/122.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/122.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/123.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/123.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/124.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/124.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/125.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/125.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/126.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/126.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/127.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/127.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/128.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/128.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/129.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/129.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/13.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/130.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/130.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/131.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/131.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/132.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/132.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/133.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/133.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/134.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/134.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/135.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/135.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/136.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/136.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/137.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/137.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/138.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/138.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/139.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/139.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/14.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/140.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/140.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/141.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/141.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/142.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/142.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/143.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/143.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/144.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/144.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/145.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/145.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/146.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/146.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/147.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/147.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/148.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/148.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/149.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/149.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/15.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/150.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/150.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/151.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/151.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/152.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/152.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/153.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/153.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/154.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/154.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/155.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/155.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/156.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/156.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/157.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/157.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/158.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/158.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/159.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/159.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/16.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/160.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/160.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/161.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/161.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/162.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/162.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/163.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/163.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/164.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/164.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/165.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/165.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/166.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/166.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/167.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/167.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/168.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/168.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/169.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/169.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/17.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/170.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/170.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/171.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/171.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/172.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/172.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/173.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/173.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/174.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/174.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/175.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/175.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/176.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/176.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/177.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/177.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/178.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/178.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/179.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/179.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/18.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/180.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/180.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/181.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/181.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/182.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/182.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/183.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/183.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/184.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/184.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/185.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/185.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/186.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/186.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/187.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/187.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/188.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/188.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/189.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/189.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/19.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/190.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/190.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/191.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/191.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/192.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/192.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/193.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/193.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/194.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/194.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/195.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/195.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/196.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/196.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/197.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/197.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/198.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/198.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/199.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/199.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/2.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/20.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/200.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/200.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/201.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/201.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/202.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/202.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/203.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/203.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/21.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/22.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/23.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/24.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/25.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/26.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/27.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/27.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/28.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/29.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/29.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/3.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/30.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/31.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/31.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/32.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/33.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/33.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/34.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/34.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/35.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/35.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/36.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/36.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/37.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/37.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/38.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/38.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/39.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/39.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/4.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/40.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/41.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/41.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/42.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/42.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/43.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/43.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/44.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/44.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/45.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/45.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/46.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/46.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/47.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/47.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/48.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/49.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/49.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/5.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/50.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/50.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/51.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/51.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/52.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/52.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/53.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/53.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/54.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/54.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/55.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/55.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/56.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/56.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/57.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/57.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/58.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/58.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/59.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/59.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/6.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/60.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/60.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/61.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/61.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/62.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/62.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/63.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/63.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/64.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/64.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/65.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/65.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/66.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/66.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/67.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/67.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/68.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/68.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/69.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/69.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/7.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/70.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/70.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/71.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/71.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/72.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/72.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/73.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/73.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/74.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/74.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/75.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/75.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/76.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/76.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/77.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/77.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/78.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/78.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/79.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/79.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/8.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/80.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/80.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/81.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/81.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/82.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/82.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/83.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/83.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/84.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/84.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/85.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/85.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/86.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/86.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/87.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/87.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/88.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/88.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/89.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/89.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/9.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/90.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/90.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/91.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/91.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/92.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/92.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/93.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/93.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/94.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/94.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/95.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/95.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/96.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/96.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/97.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/97.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/98.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/98.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/images/99.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/images/99.svg -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/mcgriddle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/mcgriddle.py -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/server/final: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/server/final -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/server/server.py -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/solver.py -------------------------------------------------------------------------------- /forensics/mcgriddle/challenge_part/to_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/challenge_part/to_images.py -------------------------------------------------------------------------------- /forensics/mcgriddle/chess/boards: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/chess/boards -------------------------------------------------------------------------------- /forensics/mcgriddle/chess/final_moves: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/chess/final_moves -------------------------------------------------------------------------------- /forensics/mcgriddle/chess/from_moves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/chess/from_moves.py -------------------------------------------------------------------------------- /forensics/mcgriddle/chess/get_move_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/chess/get_move_set.py -------------------------------------------------------------------------------- /forensics/mcgriddle/final.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/final.pcap -------------------------------------------------------------------------------- /forensics/mcgriddle/flagfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/flagfile -------------------------------------------------------------------------------- /forensics/mcgriddle/output.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/mcgriddle/output.pcap -------------------------------------------------------------------------------- /forensics/rewind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/rewind/README.md -------------------------------------------------------------------------------- /forensics/rewind/memstrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/rewind/memstrings.cpp -------------------------------------------------------------------------------- /forensics/rewind/memstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/rewind/memstrings.h -------------------------------------------------------------------------------- /forensics/simple-recovery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/simple-recovery/README.md -------------------------------------------------------------------------------- /forensics/simple-recovery/disk.img0.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/simple-recovery/disk.img0.7z -------------------------------------------------------------------------------- /forensics/simple-recovery/disk.img1.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/simple-recovery/disk.img1.7z -------------------------------------------------------------------------------- /forensics/simple-recovery/simple-recovery.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/simple-recovery/simple-recovery.zip -------------------------------------------------------------------------------- /forensics/simple-recovery/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/simple-recovery/solver.py -------------------------------------------------------------------------------- /forensics/whyOS/com.yourcompany.whyos_4.2.0-28+debug_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/whyOS/com.yourcompany.whyos_4.2.0-28+debug_iphoneos-arm.deb -------------------------------------------------------------------------------- /forensics/whyOS/console.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/forensics/whyOS/console.log -------------------------------------------------------------------------------- /misc/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/Short-Circuit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/misc/Short-Circuit/README.md -------------------------------------------------------------------------------- /misc/Short-Circuit/short-circuit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/misc/Short-Circuit/short-circuit.jpg -------------------------------------------------------------------------------- /misc/TakeAnL/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/misc/TakeAnL/Dockerfile -------------------------------------------------------------------------------- /misc/TakeAnL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/misc/TakeAnL/README.md -------------------------------------------------------------------------------- /misc/TakeAnL/__pycache__/checker.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/misc/TakeAnL/__pycache__/checker.cpython-36.pyc -------------------------------------------------------------------------------- /misc/TakeAnL/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/misc/TakeAnL/checker.py -------------------------------------------------------------------------------- /misc/TakeAnL/checker.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/misc/TakeAnL/checker.pyc -------------------------------------------------------------------------------- /misc/TakeAnL/description.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/misc/TakeAnL/description.pdf -------------------------------------------------------------------------------- /misc/TakeAnL/description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/misc/TakeAnL/description.png -------------------------------------------------------------------------------- /misc/TakeAnL/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/misc/TakeAnL/server.py -------------------------------------------------------------------------------- /misc/TakeAnL/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/misc/TakeAnL/solver.py -------------------------------------------------------------------------------- /misc/algebra/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/misc/algebra/Dockerfile -------------------------------------------------------------------------------- /misc/algebra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/misc/algebra/README.md -------------------------------------------------------------------------------- /misc/algebra/algebra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/misc/algebra/algebra.py -------------------------------------------------------------------------------- /misc/algebra/art.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/misc/algebra/art.txt -------------------------------------------------------------------------------- /misc/algebra/flag.txt: -------------------------------------------------------------------------------- 1 | flag{y0u_s0_60od_aT_tH3_qU1cK_M4tH5} 2 | -------------------------------------------------------------------------------- /misc/algebra/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cat art.txt && ./algebra.py 3 | -------------------------------------------------------------------------------- /misc/algebra/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/misc/algebra/solver.py -------------------------------------------------------------------------------- /misc/bin_t/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/misc/bin_t/Dockerfile -------------------------------------------------------------------------------- /misc/bin_t/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/misc/bin_t/README.md -------------------------------------------------------------------------------- /misc/bin_t/flag.py: -------------------------------------------------------------------------------- 1 | flag = 'flag{HOW_WAS_IT_NAVIGATING_THAT_FOREST?}' 2 | -------------------------------------------------------------------------------- /misc/bin_t/flag.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/misc/bin_t/flag.pyc -------------------------------------------------------------------------------- /misc/bin_t/pyavltree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/misc/bin_t/pyavltree.py -------------------------------------------------------------------------------- /misc/bin_t/pyavltree.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/misc/bin_t/pyavltree.pyc -------------------------------------------------------------------------------- /misc/bin_t/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/misc/bin_t/solver.py -------------------------------------------------------------------------------- /misc/bin_t/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/misc/bin_t/tree.py -------------------------------------------------------------------------------- /pwn/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/alien_invasion/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | .vscode -------------------------------------------------------------------------------- /pwn/alien_invasion/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/alien_invasion/Dockerfile -------------------------------------------------------------------------------- /pwn/alien_invasion/Dockerfile-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/alien_invasion/Dockerfile-test -------------------------------------------------------------------------------- /pwn/alien_invasion/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/alien_invasion/Makefile -------------------------------------------------------------------------------- /pwn/alien_invasion/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/alien_invasion/a_vs_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/alien_invasion/a_vs_s.c -------------------------------------------------------------------------------- /pwn/alien_invasion/aliensVSsamurais: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/alien_invasion/aliensVSsamurais -------------------------------------------------------------------------------- /pwn/alien_invasion/art.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/alien_invasion/art.txt -------------------------------------------------------------------------------- /pwn/alien_invasion/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/alien_invasion/flag.txt -------------------------------------------------------------------------------- /pwn/alien_invasion/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/alien_invasion/libc.so.6 -------------------------------------------------------------------------------- /pwn/alien_invasion/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cat art.txt && ./aliensVSsamurais 3 | -------------------------------------------------------------------------------- /pwn/alien_invasion/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/alien_invasion/solve.py -------------------------------------------------------------------------------- /pwn/alien_invasion/solver.py: -------------------------------------------------------------------------------- 1 | from pwn import * 2 | e = ELF('libc.so.6') 3 | 4 | -------------------------------------------------------------------------------- /pwn/alien_invasion/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/alien_invasion/test.c -------------------------------------------------------------------------------- /pwn/bigboy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/bigboy/Dockerfile -------------------------------------------------------------------------------- /pwn/bigboy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/bigboy/Makefile -------------------------------------------------------------------------------- /pwn/bigboy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/bigboy/README.md -------------------------------------------------------------------------------- /pwn/bigboy/art.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/bigboy/art.txt -------------------------------------------------------------------------------- /pwn/bigboy/boi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/bigboy/boi -------------------------------------------------------------------------------- /pwn/bigboy/boi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/bigboy/boi.c -------------------------------------------------------------------------------- /pwn/bigboy/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/bigboy/flag.txt -------------------------------------------------------------------------------- /pwn/bigboy/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cat art.txt && ./boi 4 | -------------------------------------------------------------------------------- /pwn/bigboy/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/bigboy/solver.py -------------------------------------------------------------------------------- /pwn/doubletrouble/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/doubletrouble/Dockerfile -------------------------------------------------------------------------------- /pwn/doubletrouble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/doubletrouble/README.md -------------------------------------------------------------------------------- /pwn/doubletrouble/doubletrouble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/doubletrouble/doubletrouble -------------------------------------------------------------------------------- /pwn/doubletrouble/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/doubletrouble/flag.txt -------------------------------------------------------------------------------- /pwn/doubletrouble/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/doubletrouble/solve.py -------------------------------------------------------------------------------- /pwn/get_it?/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/get_it?/Dockerfile -------------------------------------------------------------------------------- /pwn/get_it?/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/get_it?/Makefile -------------------------------------------------------------------------------- /pwn/get_it?/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/get_it?/README.md -------------------------------------------------------------------------------- /pwn/get_it?/art.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/get_it?/art.txt -------------------------------------------------------------------------------- /pwn/get_it?/flag.txt: -------------------------------------------------------------------------------- 1 | flag{y0u_deF_get_itls} 2 | -------------------------------------------------------------------------------- /pwn/get_it?/get_it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/get_it?/get_it -------------------------------------------------------------------------------- /pwn/get_it?/get_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/get_it?/get_it.c -------------------------------------------------------------------------------- /pwn/get_it?/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cat art.txt && ./get_it 4 | -------------------------------------------------------------------------------- /pwn/get_it?/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/get_it?/solver.py -------------------------------------------------------------------------------- /pwn/plc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/plc/README.md -------------------------------------------------------------------------------- /pwn/shellpointcode/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/shellpointcode/Dockerfile -------------------------------------------------------------------------------- /pwn/shellpointcode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/shellpointcode/Makefile -------------------------------------------------------------------------------- /pwn/shellpointcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/shellpointcode/README.md -------------------------------------------------------------------------------- /pwn/shellpointcode/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/shellpointcode/flag.txt -------------------------------------------------------------------------------- /pwn/shellpointcode/shellpointcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/shellpointcode/shellpointcode -------------------------------------------------------------------------------- /pwn/shellpointcode/shellpointcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/shellpointcode/shellpointcode.c -------------------------------------------------------------------------------- /pwn/shellpointcode/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/shellpointcode/solver.py -------------------------------------------------------------------------------- /pwn/turtles/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/Dockerfile -------------------------------------------------------------------------------- /pwn/turtles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/README.md -------------------------------------------------------------------------------- /pwn/turtles/flag: -------------------------------------------------------------------------------- 1 | flag{i_like_turtl3$_do_u?} 2 | -------------------------------------------------------------------------------- /pwn/turtles/libs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs.zip -------------------------------------------------------------------------------- /pwn/turtles/libs/libc-2.19.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libc-2.19.so -------------------------------------------------------------------------------- /pwn/turtles/libs/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libc.so.6 -------------------------------------------------------------------------------- /pwn/turtles/libs/libdl-2.19.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libdl-2.19.so -------------------------------------------------------------------------------- /pwn/turtles/libs/libdl.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libdl.so.2 -------------------------------------------------------------------------------- /pwn/turtles/libs/libffi.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libffi.so.6 -------------------------------------------------------------------------------- /pwn/turtles/libs/libffi.so.6.0.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libffi.so.6.0.2 -------------------------------------------------------------------------------- /pwn/turtles/libs/libgcc_s.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libgcc_s.so.1 -------------------------------------------------------------------------------- /pwn/turtles/libs/libgnustep-base.so.1.25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libgnustep-base.so.1.25 -------------------------------------------------------------------------------- /pwn/turtles/libs/libgnustep-base.so.1.25.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libgnustep-base.so.1.25.0 -------------------------------------------------------------------------------- /pwn/turtles/libs/libicudata.so.52: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libicudata.so.52 -------------------------------------------------------------------------------- /pwn/turtles/libs/libicudata.so.52.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libicudata.so.52.1 -------------------------------------------------------------------------------- /pwn/turtles/libs/libicui18n.so.52: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libicui18n.so.52 -------------------------------------------------------------------------------- /pwn/turtles/libs/libicui18n.so.52.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libicui18n.so.52.1 -------------------------------------------------------------------------------- /pwn/turtles/libs/libicuuc.so.52: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libicuuc.so.52 -------------------------------------------------------------------------------- /pwn/turtles/libs/libicuuc.so.52.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libicuuc.so.52.1 -------------------------------------------------------------------------------- /pwn/turtles/libs/liblzma.so.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/liblzma.so.5 -------------------------------------------------------------------------------- /pwn/turtles/libs/liblzma.so.5.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/liblzma.so.5.0.0 -------------------------------------------------------------------------------- /pwn/turtles/libs/libm-2.19.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libm-2.19.so -------------------------------------------------------------------------------- /pwn/turtles/libs/libm.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libm.so.6 -------------------------------------------------------------------------------- /pwn/turtles/libs/libobjc.so.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libobjc.so.4 -------------------------------------------------------------------------------- /pwn/turtles/libs/libobjc.so.4.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libobjc.so.4.0.0 -------------------------------------------------------------------------------- /pwn/turtles/libs/libpthread-2.19.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libpthread-2.19.so -------------------------------------------------------------------------------- /pwn/turtles/libs/libpthread.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libpthread.so.0 -------------------------------------------------------------------------------- /pwn/turtles/libs/librt-2.19.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/librt-2.19.so -------------------------------------------------------------------------------- /pwn/turtles/libs/librt.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/librt.so.1 -------------------------------------------------------------------------------- /pwn/turtles/libs/libstdc++.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libstdc++.so.6 -------------------------------------------------------------------------------- /pwn/turtles/libs/libstdc++.so.6.0.20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libstdc++.so.6.0.20 -------------------------------------------------------------------------------- /pwn/turtles/libs/libxml2.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libxml2.so.2 -------------------------------------------------------------------------------- /pwn/turtles/libs/libxml2.so.2.9.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libxml2.so.2.9.1 -------------------------------------------------------------------------------- /pwn/turtles/libs/libxslt.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libxslt.so.1 -------------------------------------------------------------------------------- /pwn/turtles/libs/libxslt.so.1.1.28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libxslt.so.1.1.28 -------------------------------------------------------------------------------- /pwn/turtles/libs/libz.so.1.2.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/libs/libz.so.1.2.8 -------------------------------------------------------------------------------- /pwn/turtles/turtles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/turtles -------------------------------------------------------------------------------- /pwn/turtles/turtles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/turtles.m -------------------------------------------------------------------------------- /pwn/turtles/turtles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/pwn/turtles/turtles.py -------------------------------------------------------------------------------- /rev/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rev/1337/1337.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/1337/1337.exe -------------------------------------------------------------------------------- /rev/1337/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/1337/main.c -------------------------------------------------------------------------------- /rev/A-Walk-Through-x86-Part-1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/A-Walk-Through-x86-Part-1/Dockerfile -------------------------------------------------------------------------------- /rev/A-Walk-Through-x86-Part-1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/A-Walk-Through-x86-Part-1/Makefile -------------------------------------------------------------------------------- /rev/A-Walk-Through-x86-Part-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/A-Walk-Through-x86-Part-1/README.md -------------------------------------------------------------------------------- /rev/A-Walk-Through-x86-Part-1/solve.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/A-Walk-Through-x86-Part-1/solve.txt -------------------------------------------------------------------------------- /rev/A-Walk-Through-x86-Part-1/stage-1-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/A-Walk-Through-x86-Part-1/stage-1-server.py -------------------------------------------------------------------------------- /rev/A-Walk-Through-x86-Part-1/stage-1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/A-Walk-Through-x86-Part-1/stage-1.asm -------------------------------------------------------------------------------- /rev/A-Walk-Through-x86-Part-1/stage-2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/A-Walk-Through-x86-Part-1/stage-2.asm -------------------------------------------------------------------------------- /rev/A-Walk-Through-x86-Part-1/stage-2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/A-Walk-Through-x86-Part-1/stage-2.bin -------------------------------------------------------------------------------- /rev/A-Walk-Through-x86-Part-2/Makefile: -------------------------------------------------------------------------------- 1 | ../A-Walk-Through-x86-Part-1/Makefile -------------------------------------------------------------------------------- /rev/A-Walk-Through-x86-Part-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/A-Walk-Through-x86-Part-2/README.md -------------------------------------------------------------------------------- /rev/A-Walk-Through-x86-Part-2/flaggen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/A-Walk-Through-x86-Part-2/flaggen.py -------------------------------------------------------------------------------- /rev/A-Walk-Through-x86-Part-2/solve.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/A-Walk-Through-x86-Part-2/solve.txt -------------------------------------------------------------------------------- /rev/A-Walk-Through-x86-Part-2/stage-1.asm: -------------------------------------------------------------------------------- 1 | ../A-Walk-Through-x86-Part-1/stage-1.asm -------------------------------------------------------------------------------- /rev/A-Walk-Through-x86-Part-2/stage-2.bin: -------------------------------------------------------------------------------- 1 | ../A-Walk-Through-x86-Part-1/stage-2.bin -------------------------------------------------------------------------------- /rev/A-Walk-Through-x86-Part-3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/A-Walk-Through-x86-Part-3/Dockerfile -------------------------------------------------------------------------------- /rev/A-Walk-Through-x86-Part-3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/A-Walk-Through-x86-Part-3/Makefile -------------------------------------------------------------------------------- /rev/A-Walk-Through-x86-Part-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/A-Walk-Through-x86-Part-3/README.md -------------------------------------------------------------------------------- /rev/A-Walk-Through-x86-Part-3/flag.txt: -------------------------------------------------------------------------------- 1 | flag{S4l1y_Se11S_tacOShell_c0d3_bY_tHe_Se4_Sh0re} 2 | -------------------------------------------------------------------------------- /rev/A-Walk-Through-x86-Part-3/part-3-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/A-Walk-Through-x86-Part-3/part-3-server.py -------------------------------------------------------------------------------- /rev/A-Walk-Through-x86-Part-3/solve.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/A-Walk-Through-x86-Part-3/solve.asm -------------------------------------------------------------------------------- /rev/A-Walk-Through-x86-Part-3/stage-1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/A-Walk-Through-x86-Part-3/stage-1.asm -------------------------------------------------------------------------------- /rev/A-Walk-Through-x86-Part-3/stage-2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/A-Walk-Through-x86-Part-3/stage-2.asm -------------------------------------------------------------------------------- /rev/A-Walk-Through-x86-Part-3/tacOS-base.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/A-Walk-Through-x86-Part-3/tacOS-base.bin -------------------------------------------------------------------------------- /rev/kvm/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/README.txt -------------------------------------------------------------------------------- /rev/kvm/chal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/chal/Makefile -------------------------------------------------------------------------------- /rev/kvm/chal/dont_obf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/chal/dont_obf.c -------------------------------------------------------------------------------- /rev/kvm/chal/dont_obf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/chal/dont_obf.h -------------------------------------------------------------------------------- /rev/kvm/chal/dont_obf.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/chal/dont_obf.o -------------------------------------------------------------------------------- /rev/kvm/chal/flag-compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/chal/flag-compress.h -------------------------------------------------------------------------------- /rev/kvm/chal/guest-tbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/chal/guest-tbl.c -------------------------------------------------------------------------------- /rev/kvm/chal/guest-tbl.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/chal/guest-tbl.o -------------------------------------------------------------------------------- /rev/kvm/chal/guest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/chal/guest.c -------------------------------------------------------------------------------- /rev/kvm/chal/guest.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/chal/guest.img -------------------------------------------------------------------------------- /rev/kvm/chal/guest.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/chal/guest.ld -------------------------------------------------------------------------------- /rev/kvm/chal/guest.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/chal/guest.o -------------------------------------------------------------------------------- /rev/kvm/chal/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/chal/huffman.c -------------------------------------------------------------------------------- /rev/kvm/chal/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/chal/huffman.h -------------------------------------------------------------------------------- /rev/kvm/chal/huffman.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/chal/huffman.o -------------------------------------------------------------------------------- /rev/kvm/chal/obf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/chal/obf.c -------------------------------------------------------------------------------- /rev/kvm/chal/obf.h: -------------------------------------------------------------------------------- 1 | int compress(char chr, struct node *i); 2 | -------------------------------------------------------------------------------- /rev/kvm/chal/obf.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/chal/obf.o -------------------------------------------------------------------------------- /rev/kvm/flag.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/flag.tar -------------------------------------------------------------------------------- /rev/kvm/kvm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/kvm/LICENSE -------------------------------------------------------------------------------- /rev/kvm/kvm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/kvm/Makefile -------------------------------------------------------------------------------- /rev/kvm/kvm/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/kvm/challenge -------------------------------------------------------------------------------- /rev/kvm/kvm/challenge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/kvm/challenge.c -------------------------------------------------------------------------------- /rev/kvm/kvm/challenge.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/kvm/challenge.o -------------------------------------------------------------------------------- /rev/kvm/kvm/guest.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/kvm/guest.o -------------------------------------------------------------------------------- /rev/kvm/kvm/payload.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/kvm/payload.ld -------------------------------------------------------------------------------- /rev/kvm/kvm/payload.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/kvm/payload.o -------------------------------------------------------------------------------- /rev/kvm/secret-sauce/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.swp 3 | test/ 4 | -------------------------------------------------------------------------------- /rev/kvm/secret-sauce/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/secret-sauce/__init__.py -------------------------------------------------------------------------------- /rev/kvm/secret-sauce/deflatten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/kvm/secret-sauce/deflatten.py -------------------------------------------------------------------------------- /rev/notprotobuf/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | env/ -------------------------------------------------------------------------------- /rev/notprotobuf/CSLLC_Logo_Block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/notprotobuf/CSLLC_Logo_Block.png -------------------------------------------------------------------------------- /rev/notprotobuf/Dockerfile-dev_client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/notprotobuf/Dockerfile-dev_client -------------------------------------------------------------------------------- /rev/notprotobuf/Dockerfile-dev_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/notprotobuf/Dockerfile-dev_server -------------------------------------------------------------------------------- /rev/notprotobuf/Dockerfile-prod_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/notprotobuf/Dockerfile-prod_server -------------------------------------------------------------------------------- /rev/notprotobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/notprotobuf/README.md -------------------------------------------------------------------------------- /rev/notprotobuf/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/notprotobuf/client.py -------------------------------------------------------------------------------- /rev/notprotobuf/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/notprotobuf/docker-compose.yml -------------------------------------------------------------------------------- /rev/notprotobuf/initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/notprotobuf/initialize.py -------------------------------------------------------------------------------- /rev/notprotobuf/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/notprotobuf/library.py -------------------------------------------------------------------------------- /rev/notprotobuf/notprotobuf.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/notprotobuf/notprotobuf.tar.gz -------------------------------------------------------------------------------- /rev/notprotobuf/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/notprotobuf/server.py -------------------------------------------------------------------------------- /rev/notprotobuf/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/notprotobuf/solve.py -------------------------------------------------------------------------------- /rev/notprotobuf/zksolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/rev/notprotobuf/zksolve.py -------------------------------------------------------------------------------- /web/ldab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/ldab/Dockerfile -------------------------------------------------------------------------------- /web/ldab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/ldab/README.md -------------------------------------------------------------------------------- /web/ldab/htdocs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/ldab/htdocs/index.php -------------------------------------------------------------------------------- /web/ldab/ldap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/ldab/ldap.conf -------------------------------------------------------------------------------- /web/ldab/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/ldab/start.sh -------------------------------------------------------------------------------- /web/ldab/start_slapd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/ldab/start_slapd -------------------------------------------------------------------------------- /web/ldab/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/ldab/supervisord.conf -------------------------------------------------------------------------------- /web/ldab/users.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/ldab/users.ldif -------------------------------------------------------------------------------- /web/movie_club/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/movie_club/.dockerignore -------------------------------------------------------------------------------- /web/movie_club/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/movie_club/Dockerfile -------------------------------------------------------------------------------- /web/movie_club/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/movie_club/README.md -------------------------------------------------------------------------------- /web/movie_club/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | docker build -t cache . 3 | -------------------------------------------------------------------------------- /web/movie_club/chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/movie_club/chrome.js -------------------------------------------------------------------------------- /web/movie_club/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | docker run -it --rm -p 80:80 --cap-add=SYS_ADMIN cache 3 | -------------------------------------------------------------------------------- /web/movie_club/server/cdn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/movie_club/server/cdn.js -------------------------------------------------------------------------------- /web/movie_club/server/cdn/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/movie_club/server/cdn/app.js -------------------------------------------------------------------------------- /web/movie_club/server/cdn/main.mst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/movie_club/server/cdn/main.mst -------------------------------------------------------------------------------- /web/movie_club/server/cdn/mustache.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/movie_club/server/cdn/mustache.min.js -------------------------------------------------------------------------------- /web/movie_club/server/cdn_admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/movie_club/server/cdn_admin.js -------------------------------------------------------------------------------- /web/movie_club/server/movies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/movie_club/server/movies.py -------------------------------------------------------------------------------- /web/movie_club/server/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/movie_club/server/templates/index.html -------------------------------------------------------------------------------- /web/movie_club/server/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/movie_club/server/test.py -------------------------------------------------------------------------------- /web/movie_club/server/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/movie_club/server/util.py -------------------------------------------------------------------------------- /web/movie_club/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/movie_club/setup.sh -------------------------------------------------------------------------------- /web/movie_club/sol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/movie_club/sol.py -------------------------------------------------------------------------------- /web/nvs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/README.md -------------------------------------------------------------------------------- /web/nvs/bin/nip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/bin/nip -------------------------------------------------------------------------------- /web/nvs/conf/apache2/000-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/conf/apache2/000-default.conf -------------------------------------------------------------------------------- /web/nvs/conf/apache2/ports.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/conf/apache2/ports.conf -------------------------------------------------------------------------------- /web/nvs/conf/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/conf/hosts -------------------------------------------------------------------------------- /web/nvs/conf/nginx/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/conf/nginx/default -------------------------------------------------------------------------------- /web/nvs/conf/powerdns/named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/conf/powerdns/named.conf -------------------------------------------------------------------------------- /web/nvs/conf/powerdns/nip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/conf/powerdns/nip.conf -------------------------------------------------------------------------------- /web/nvs/conf/powerdns/pdns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/conf/powerdns/pdns.conf -------------------------------------------------------------------------------- /web/nvs/conf/powerdns/vulnerable.services.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/conf/powerdns/vulnerable.services.db -------------------------------------------------------------------------------- /web/nvs/conf/resolv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/conf/resolv.conf -------------------------------------------------------------------------------- /web/nvs/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/setup.sh -------------------------------------------------------------------------------- /web/nvs/src/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/db.php -------------------------------------------------------------------------------- /web/nvs/src/lb/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/lb/403.html -------------------------------------------------------------------------------- /web/nvs/src/nvs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/LICENSE.txt -------------------------------------------------------------------------------- /web/nvs/src/nvs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/README.txt -------------------------------------------------------------------------------- /web/nvs/src/nvs/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/footer.php -------------------------------------------------------------------------------- /web/nvs/src/nvs/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/header.php -------------------------------------------------------------------------------- /web/nvs/src/nvs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/index.php -------------------------------------------------------------------------------- /web/nvs/src/nvs/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/register.php -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/css/font-awesome.min.css -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/css/images/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/css/images/arrow.svg -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/css/images/ie/banner-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/css/images/ie/banner-overlay.png -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/css/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/css/images/overlay.png -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/css/main.css -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/css/noscript.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/css/noscript.css -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/images/banner.jpg -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/images/pic01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/images/pic01.jpg -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/images/pic02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/images/pic02.jpg -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/images/pic03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/images/pic03.jpg -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/images/pic04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/images/pic04.jpg -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/images/pic05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/images/pic05.jpg -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/images/pic06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/images/pic06.jpg -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/images/pic07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/images/pic07.jpg -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/images/pic08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/images/pic08.jpg -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/js/breakpoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/js/breakpoints.min.js -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/js/browser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/js/browser.min.js -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/js/jquery.dropotron.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/js/jquery.dropotron.min.js -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/js/jquery.min.js -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/js/jquery.scrollex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/js/jquery.scrollex.min.js -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/js/jquery.scrolly.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/js/jquery.scrolly.min.js -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/js/main.js -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/js/util.js -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/sass/libs/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/sass/libs/_breakpoints.scss -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/sass/libs/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/sass/libs/_functions.scss -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/sass/libs/_html-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/sass/libs/_html-grid.scss -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/sass/libs/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/sass/libs/_mixins.scss -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/sass/libs/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/sass/libs/_vars.scss -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/sass/libs/_vendor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/sass/libs/_vendor.scss -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/sass/main.scss -------------------------------------------------------------------------------- /web/nvs/src/nvs/static/sass/noscript.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs/static/sass/noscript.scss -------------------------------------------------------------------------------- /web/nvs/src/nvs_admin/authed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs_admin/authed.php -------------------------------------------------------------------------------- /web/nvs/src/nvs_admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs_admin/index.php -------------------------------------------------------------------------------- /web/nvs/src/nvs_admin/lb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs_admin/lb.php -------------------------------------------------------------------------------- /web/nvs/src/nvs_admin/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs_admin/login.php -------------------------------------------------------------------------------- /web/nvs/src/nvs_admin/review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs_admin/review.php -------------------------------------------------------------------------------- /web/nvs/src/nvs_support/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs_support/run.sh -------------------------------------------------------------------------------- /web/nvs/src/nvs_support/src/flag.txt: -------------------------------------------------------------------------------- 1 | flag{7672f158167cab32aebc161abe0fbfcaee2868c1} 2 | -------------------------------------------------------------------------------- /web/nvs/src/nvs_support/src/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs_support/src/index.php -------------------------------------------------------------------------------- /web/nvs/src/nvs_support/src/ping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/nvs_support/src/ping.php -------------------------------------------------------------------------------- /web/nvs/src/secrets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/nvs/src/secrets.php -------------------------------------------------------------------------------- /web/sso/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/sso/.dockerignore -------------------------------------------------------------------------------- /web/sso/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /web/sso/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/sso/Dockerfile -------------------------------------------------------------------------------- /web/sso/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/sso/index.js -------------------------------------------------------------------------------- /web/sso/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/sso/package.json -------------------------------------------------------------------------------- /web/sso/solver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/sso/solver.js -------------------------------------------------------------------------------- /web/sso/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/sso/yarn.lock -------------------------------------------------------------------------------- /web/wtf_sql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/Dockerfile -------------------------------------------------------------------------------- /web/wtf_sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/README.md -------------------------------------------------------------------------------- /web/wtf_sql/app.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/app.sql -------------------------------------------------------------------------------- /web/wtf_sql/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | make app.sql 4 | docker build -t=wtf_sql . 5 | -------------------------------------------------------------------------------- /web/wtf_sql/components/00-common-tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/components/00-common-tables.sql -------------------------------------------------------------------------------- /web/wtf_sql/components/01-static.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/components/01-static.sql -------------------------------------------------------------------------------- /web/wtf_sql/components/02-templates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/components/02-templates.sql -------------------------------------------------------------------------------- /web/wtf_sql/components/03-http.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/components/03-http.sql -------------------------------------------------------------------------------- /web/wtf_sql/components/10-dispatcher.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/components/10-dispatcher.sql -------------------------------------------------------------------------------- /web/wtf_sql/components/20-templates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/components/20-templates.sql -------------------------------------------------------------------------------- /web/wtf_sql/components/50-app_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/components/50-app_tables.sql -------------------------------------------------------------------------------- /web/wtf_sql/components/60-app_utils.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/components/60-app_utils.sql -------------------------------------------------------------------------------- /web/wtf_sql/components/61-app_priv_utils.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/components/61-app_priv_utils.sql -------------------------------------------------------------------------------- /web/wtf_sql/components/90-routes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/components/90-routes.sql -------------------------------------------------------------------------------- /web/wtf_sql/components/99-config.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/components/99-config.sql -------------------------------------------------------------------------------- /web/wtf_sql/crawl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/crawl.txt -------------------------------------------------------------------------------- /web/wtf_sql/generate_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/generate_static.py -------------------------------------------------------------------------------- /web/wtf_sql/generate_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/generate_templates.py -------------------------------------------------------------------------------- /web/wtf_sql/kill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/kill.sh -------------------------------------------------------------------------------- /web/wtf_sql/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/makefile -------------------------------------------------------------------------------- /web/wtf_sql/reload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/reload.sh -------------------------------------------------------------------------------- /web/wtf_sql/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/run.sh -------------------------------------------------------------------------------- /web/wtf_sql/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/server.py -------------------------------------------------------------------------------- /web/wtf_sql/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/start.sh -------------------------------------------------------------------------------- /web/wtf_sql/static/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/static/bg.png -------------------------------------------------------------------------------- /web/wtf_sql/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/static/style.css -------------------------------------------------------------------------------- /web/wtf_sql/static/wtf_sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/static/wtf_sql.png -------------------------------------------------------------------------------- /web/wtf_sql/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/templates/404.html -------------------------------------------------------------------------------- /web/wtf_sql/templates/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/templates/admin.html -------------------------------------------------------------------------------- /web/wtf_sql/templates/admin_create_panel_partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/templates/admin_create_panel_partial.html -------------------------------------------------------------------------------- /web/wtf_sql/templates/index_logged_in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/templates/index_logged_in.html -------------------------------------------------------------------------------- /web/wtf_sql/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/templates/login.html -------------------------------------------------------------------------------- /web/wtf_sql/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/CSAW-CTF-2018-Quals/HEAD/web/wtf_sql/templates/register.html --------------------------------------------------------------------------------