├── .gitignore ├── README.md ├── level-1 ├── binary-exploitation │ ├── bash-loop │ │ └── README.md │ └── just-no │ │ └── README.md ├── cryptography │ ├── computeaes │ │ ├── README.md │ │ └── data │ │ │ └── clue.txt │ ├── computersa │ │ └── README.md │ ├── hash101 │ │ └── README.md │ ├── keyz │ │ └── README.md │ └── substitute │ │ ├── README.md │ │ └── data │ │ └── cipher.txt ├── forensics │ ├── digital-camouflage │ │ ├── README.md │ │ └── data │ │ │ └── data.pcap │ └── special-agent-user │ │ ├── README.md │ │ └── data │ │ └── data.pcap ├── master-challenge │ └── README.md ├── misc │ ├── internet-kitties │ │ └── README.md │ ├── leaf-of-the-forest │ │ └── README.md │ ├── leaf-of-the-tree │ │ └── README.md │ ├── looooong │ │ └── README.md │ ├── piazza │ │ └── README.md │ └── world-chat │ │ └── README.md ├── reverse-engineering │ ├── hex2raw │ │ └── README.md │ └── raw2hex │ │ └── README.md └── web-exploitation │ └── what-is-web │ └── README.md ├── level-2 ├── binary-exploitation │ ├── flagsay-1 │ │ ├── README.md │ │ └── data │ │ │ ├── flagsay-1 │ │ │ └── flagsay-1.c │ ├── guess-the-number │ │ ├── README.md │ │ └── data │ │ │ ├── guess_num │ │ │ └── guess_num.c │ ├── ive-got-a-secret │ │ ├── README.md │ │ └── data │ │ │ ├── secret │ │ │ └── secret.c │ ├── shells │ │ ├── README.md │ │ └── data │ │ │ ├── shells │ │ │ └── shells.c │ ├── shellz │ │ ├── README.md │ │ └── data │ │ │ ├── shellz │ │ │ └── shellz.c │ └── vr-gear-console │ │ └── README.md ├── cryptography │ ├── leaked-hashes │ │ ├── README.md │ │ └── data │ │ │ └── hashdump.txt │ └── sorandom │ │ ├── README.md │ │ └── data │ │ └── sorandom.py ├── forensics │ ├── just-keyp-trying │ │ ├── README.md │ │ └── data │ │ │ └── data.pcap │ ├── little-school-bus │ │ ├── README.md │ │ └── data │ │ │ └── littleschoolbus.bmp │ └── meta-find-me │ │ ├── README.md │ │ └── data │ │ └── image.jpg ├── master-challenge │ ├── README.md │ └── data │ │ └── file ├── misc │ ├── mystery-box │ │ ├── README.md │ │ └── data │ │ │ ├── MysteryBox.png │ │ │ └── note.txt │ └── yarn │ │ ├── README.md │ │ └── data │ │ └── yarn ├── reverse-engineering │ ├── a-thing-called-stack │ │ ├── README.md │ │ └── data │ │ │ └── assembly.s │ └── programmers-assemble │ │ ├── README.md │ │ └── data │ │ └── assembly.s └── web-exploitation │ └── my-first-sql │ └── README.md └── level-3 ├── binary-exploitation ├── chat-logger │ └── data │ │ ├── chat-logger │ │ └── server.c └── config-console │ ├── README.md │ └── data │ ├── config-console.c │ └── console ├── cryptography ├── broadcast │ ├── README.md │ └── data │ │ └── clue.txt └── hashchain │ ├── README.md │ └── data │ └── hcexample.py ├── forensics └── connect-the-wigle │ ├── README.md │ └── data │ └── wigle ├── reverse-engineering ├── coffee │ ├── README.md │ └── data │ │ └── freeThePickles.class ├── jsut-duck-it-up │ ├── README.md │ └── data │ │ └── file └── much-ado-about-hacking │ ├── README.md │ └── data │ ├── MuchAdoAboutHacking.spl │ └── ending.txt └── web-exploitation ├── a-happy-union └── README.md ├── biscuits └── README.md └── no-eyes └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | temp/* 2 | .vscode/* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/README.md -------------------------------------------------------------------------------- /level-1/binary-exploitation/bash-loop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-1/binary-exploitation/bash-loop/README.md -------------------------------------------------------------------------------- /level-1/binary-exploitation/just-no/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-1/binary-exploitation/just-no/README.md -------------------------------------------------------------------------------- /level-1/cryptography/computeaes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-1/cryptography/computeaes/README.md -------------------------------------------------------------------------------- /level-1/cryptography/computeaes/data/clue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-1/cryptography/computeaes/data/clue.txt -------------------------------------------------------------------------------- /level-1/cryptography/computersa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-1/cryptography/computersa/README.md -------------------------------------------------------------------------------- /level-1/cryptography/hash101/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-1/cryptography/hash101/README.md -------------------------------------------------------------------------------- /level-1/cryptography/keyz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-1/cryptography/keyz/README.md -------------------------------------------------------------------------------- /level-1/cryptography/substitute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-1/cryptography/substitute/README.md -------------------------------------------------------------------------------- /level-1/cryptography/substitute/data/cipher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-1/cryptography/substitute/data/cipher.txt -------------------------------------------------------------------------------- /level-1/forensics/digital-camouflage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-1/forensics/digital-camouflage/README.md -------------------------------------------------------------------------------- /level-1/forensics/digital-camouflage/data/data.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-1/forensics/digital-camouflage/data/data.pcap -------------------------------------------------------------------------------- /level-1/forensics/special-agent-user/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-1/forensics/special-agent-user/README.md -------------------------------------------------------------------------------- /level-1/forensics/special-agent-user/data/data.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-1/forensics/special-agent-user/data/data.pcap -------------------------------------------------------------------------------- /level-1/master-challenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-1/master-challenge/README.md -------------------------------------------------------------------------------- /level-1/misc/internet-kitties/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-1/misc/internet-kitties/README.md -------------------------------------------------------------------------------- /level-1/misc/leaf-of-the-forest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-1/misc/leaf-of-the-forest/README.md -------------------------------------------------------------------------------- /level-1/misc/leaf-of-the-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-1/misc/leaf-of-the-tree/README.md -------------------------------------------------------------------------------- /level-1/misc/looooong/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-1/misc/looooong/README.md -------------------------------------------------------------------------------- /level-1/misc/piazza/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-1/misc/piazza/README.md -------------------------------------------------------------------------------- /level-1/misc/world-chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-1/misc/world-chat/README.md -------------------------------------------------------------------------------- /level-1/reverse-engineering/hex2raw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-1/reverse-engineering/hex2raw/README.md -------------------------------------------------------------------------------- /level-1/reverse-engineering/raw2hex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-1/reverse-engineering/raw2hex/README.md -------------------------------------------------------------------------------- /level-1/web-exploitation/what-is-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-1/web-exploitation/what-is-web/README.md -------------------------------------------------------------------------------- /level-2/binary-exploitation/flagsay-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/binary-exploitation/flagsay-1/README.md -------------------------------------------------------------------------------- /level-2/binary-exploitation/flagsay-1/data/flagsay-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/binary-exploitation/flagsay-1/data/flagsay-1 -------------------------------------------------------------------------------- /level-2/binary-exploitation/flagsay-1/data/flagsay-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/binary-exploitation/flagsay-1/data/flagsay-1.c -------------------------------------------------------------------------------- /level-2/binary-exploitation/guess-the-number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/binary-exploitation/guess-the-number/README.md -------------------------------------------------------------------------------- /level-2/binary-exploitation/guess-the-number/data/guess_num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/binary-exploitation/guess-the-number/data/guess_num -------------------------------------------------------------------------------- /level-2/binary-exploitation/guess-the-number/data/guess_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/binary-exploitation/guess-the-number/data/guess_num.c -------------------------------------------------------------------------------- /level-2/binary-exploitation/ive-got-a-secret/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/binary-exploitation/ive-got-a-secret/README.md -------------------------------------------------------------------------------- /level-2/binary-exploitation/ive-got-a-secret/data/secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/binary-exploitation/ive-got-a-secret/data/secret -------------------------------------------------------------------------------- /level-2/binary-exploitation/ive-got-a-secret/data/secret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/binary-exploitation/ive-got-a-secret/data/secret.c -------------------------------------------------------------------------------- /level-2/binary-exploitation/shells/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/binary-exploitation/shells/README.md -------------------------------------------------------------------------------- /level-2/binary-exploitation/shells/data/shells: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/binary-exploitation/shells/data/shells -------------------------------------------------------------------------------- /level-2/binary-exploitation/shells/data/shells.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/binary-exploitation/shells/data/shells.c -------------------------------------------------------------------------------- /level-2/binary-exploitation/shellz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/binary-exploitation/shellz/README.md -------------------------------------------------------------------------------- /level-2/binary-exploitation/shellz/data/shellz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/binary-exploitation/shellz/data/shellz -------------------------------------------------------------------------------- /level-2/binary-exploitation/shellz/data/shellz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/binary-exploitation/shellz/data/shellz.c -------------------------------------------------------------------------------- /level-2/binary-exploitation/vr-gear-console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/binary-exploitation/vr-gear-console/README.md -------------------------------------------------------------------------------- /level-2/cryptography/leaked-hashes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/cryptography/leaked-hashes/README.md -------------------------------------------------------------------------------- /level-2/cryptography/leaked-hashes/data/hashdump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/cryptography/leaked-hashes/data/hashdump.txt -------------------------------------------------------------------------------- /level-2/cryptography/sorandom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/cryptography/sorandom/README.md -------------------------------------------------------------------------------- /level-2/cryptography/sorandom/data/sorandom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/cryptography/sorandom/data/sorandom.py -------------------------------------------------------------------------------- /level-2/forensics/just-keyp-trying/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/forensics/just-keyp-trying/README.md -------------------------------------------------------------------------------- /level-2/forensics/just-keyp-trying/data/data.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/forensics/just-keyp-trying/data/data.pcap -------------------------------------------------------------------------------- /level-2/forensics/little-school-bus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/forensics/little-school-bus/README.md -------------------------------------------------------------------------------- /level-2/forensics/little-school-bus/data/littleschoolbus.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/forensics/little-school-bus/data/littleschoolbus.bmp -------------------------------------------------------------------------------- /level-2/forensics/meta-find-me/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/forensics/meta-find-me/README.md -------------------------------------------------------------------------------- /level-2/forensics/meta-find-me/data/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/forensics/meta-find-me/data/image.jpg -------------------------------------------------------------------------------- /level-2/master-challenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/master-challenge/README.md -------------------------------------------------------------------------------- /level-2/master-challenge/data/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/master-challenge/data/file -------------------------------------------------------------------------------- /level-2/misc/mystery-box/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/misc/mystery-box/README.md -------------------------------------------------------------------------------- /level-2/misc/mystery-box/data/MysteryBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/misc/mystery-box/data/MysteryBox.png -------------------------------------------------------------------------------- /level-2/misc/mystery-box/data/note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/misc/mystery-box/data/note.txt -------------------------------------------------------------------------------- /level-2/misc/yarn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/misc/yarn/README.md -------------------------------------------------------------------------------- /level-2/misc/yarn/data/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/misc/yarn/data/yarn -------------------------------------------------------------------------------- /level-2/reverse-engineering/a-thing-called-stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/reverse-engineering/a-thing-called-stack/README.md -------------------------------------------------------------------------------- /level-2/reverse-engineering/a-thing-called-stack/data/assembly.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/reverse-engineering/a-thing-called-stack/data/assembly.s -------------------------------------------------------------------------------- /level-2/reverse-engineering/programmers-assemble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/reverse-engineering/programmers-assemble/README.md -------------------------------------------------------------------------------- /level-2/reverse-engineering/programmers-assemble/data/assembly.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/reverse-engineering/programmers-assemble/data/assembly.s -------------------------------------------------------------------------------- /level-2/web-exploitation/my-first-sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-2/web-exploitation/my-first-sql/README.md -------------------------------------------------------------------------------- /level-3/binary-exploitation/chat-logger/data/chat-logger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-3/binary-exploitation/chat-logger/data/chat-logger -------------------------------------------------------------------------------- /level-3/binary-exploitation/chat-logger/data/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-3/binary-exploitation/chat-logger/data/server.c -------------------------------------------------------------------------------- /level-3/binary-exploitation/config-console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-3/binary-exploitation/config-console/README.md -------------------------------------------------------------------------------- /level-3/binary-exploitation/config-console/data/config-console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-3/binary-exploitation/config-console/data/config-console.c -------------------------------------------------------------------------------- /level-3/binary-exploitation/config-console/data/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-3/binary-exploitation/config-console/data/console -------------------------------------------------------------------------------- /level-3/cryptography/broadcast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-3/cryptography/broadcast/README.md -------------------------------------------------------------------------------- /level-3/cryptography/broadcast/data/clue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-3/cryptography/broadcast/data/clue.txt -------------------------------------------------------------------------------- /level-3/cryptography/hashchain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-3/cryptography/hashchain/README.md -------------------------------------------------------------------------------- /level-3/cryptography/hashchain/data/hcexample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-3/cryptography/hashchain/data/hcexample.py -------------------------------------------------------------------------------- /level-3/forensics/connect-the-wigle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-3/forensics/connect-the-wigle/README.md -------------------------------------------------------------------------------- /level-3/forensics/connect-the-wigle/data/wigle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-3/forensics/connect-the-wigle/data/wigle -------------------------------------------------------------------------------- /level-3/reverse-engineering/coffee/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-3/reverse-engineering/coffee/README.md -------------------------------------------------------------------------------- /level-3/reverse-engineering/coffee/data/freeThePickles.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-3/reverse-engineering/coffee/data/freeThePickles.class -------------------------------------------------------------------------------- /level-3/reverse-engineering/jsut-duck-it-up/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-3/reverse-engineering/jsut-duck-it-up/README.md -------------------------------------------------------------------------------- /level-3/reverse-engineering/jsut-duck-it-up/data/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-3/reverse-engineering/jsut-duck-it-up/data/file -------------------------------------------------------------------------------- /level-3/reverse-engineering/much-ado-about-hacking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-3/reverse-engineering/much-ado-about-hacking/README.md -------------------------------------------------------------------------------- /level-3/reverse-engineering/much-ado-about-hacking/data/MuchAdoAboutHacking.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-3/reverse-engineering/much-ado-about-hacking/data/MuchAdoAboutHacking.spl -------------------------------------------------------------------------------- /level-3/reverse-engineering/much-ado-about-hacking/data/ending.txt: -------------------------------------------------------------------------------- 1 | tu1|\h+&g\OP7@% :BH7M6m3g= 2 | -------------------------------------------------------------------------------- /level-3/web-exploitation/a-happy-union/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-3/web-exploitation/a-happy-union/README.md -------------------------------------------------------------------------------- /level-3/web-exploitation/biscuits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-3/web-exploitation/biscuits/README.md -------------------------------------------------------------------------------- /level-3/web-exploitation/no-eyes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavideRoss/pico-ctf-2017-writeups/HEAD/level-3/web-exploitation/no-eyes/README.md --------------------------------------------------------------------------------