├── 0ctfquals2015 └── 0opsApp │ ├── README.md │ └── x.py ├── 0ctfquals2016 ├── (づ ̄ 3 ̄)づ │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── x.b64 │ └── x.c └── sandbox │ ├── README.md │ ├── sc.asm │ ├── sc.bin │ └── x.py ├── asisfinals2015 └── png2ppm │ ├── README.md │ └── x.py ├── bkpctf2016 ├── qwn2own │ ├── README.md │ └── index.html ├── segsh │ ├── README.md │ ├── sc.asm │ ├── sc.bin │ ├── sh.asm │ ├── sh.bin │ └── x.py └── spacerex │ ├── README.md │ └── x.py ├── bkpctf2017 └── barewithme │ ├── Makefile │ ├── README.md │ ├── ae9085f691dffbf9831cb0153f10f077.tgz │ ├── asm.s │ ├── helpers.h │ ├── kpayload.asm │ ├── kstub.asm │ ├── libc.a │ ├── libgcc.a │ ├── main.c │ ├── newlibstrap.c │ ├── newlibstrap.h │ ├── script.ld │ ├── stage1 │ ├── stage1.asm │ ├── strap.h │ ├── syscalldefs.h │ └── x.py ├── confidence2015 ├── quarantine │ ├── README.md │ └── x.py └── quine │ ├── README.md │ └── x.py ├── csawfinals2013 └── Brad Oberberg │ ├── Makefile │ ├── README.md │ ├── exploit.c │ └── main.c ├── defconquals2014 └── turdedo │ ├── README.md │ └── exploit.py ├── hacklu2015 └── course_creator │ ├── README.md │ └── x.py ├── hitcon2014 ├── callme │ ├── Makefile │ ├── README.md │ ├── sc.asm │ └── x.py ├── rsbo │ ├── README.md │ └── x.py ├── sha1lcode │ ├── Makefile │ ├── README.md │ ├── brutus.c │ ├── printdata.py │ ├── sc.asm │ └── x.sh ├── stkof │ ├── README.md │ └── x.py └── ty │ ├── Makefile │ ├── README.md │ ├── sc.asm │ └── x.py ├── hitconquals2015 ├── blinkroot │ ├── README.md │ └── x.py ├── fooddb │ ├── README.md │ └── x.py └── matrixmatrix │ ├── README.md │ └── x.py ├── pctf2015 └── tp │ ├── README.md │ ├── ls.asm │ ├── ls.bin │ └── x.py └── twmma2016 ├── candystore ├── README.md └── x.py ├── diary ├── README.md └── x.py ├── greeting ├── README.md └── x.py ├── hastur ├── README.md ├── sc.asm ├── sc.bin ├── x.php └── x.py ├── interpreter ├── README.md └── x.py ├── judgement ├── README.md └── x.py └── shadow ├── README.md └── x.py /0ctfquals2015/0opsApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/0ctfquals2015/0opsApp/README.md -------------------------------------------------------------------------------- /0ctfquals2015/0opsApp/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/0ctfquals2015/0opsApp/x.py -------------------------------------------------------------------------------- /0ctfquals2016/(づ ̄ 3 ̄)づ/.gitignore: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /0ctfquals2016/(づ ̄ 3 ̄)づ/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/0ctfquals2016/(づ ̄ 3 ̄)づ/Makefile -------------------------------------------------------------------------------- /0ctfquals2016/(づ ̄ 3 ̄)づ/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/0ctfquals2016/(づ ̄ 3 ̄)づ/README.md -------------------------------------------------------------------------------- /0ctfquals2016/(づ ̄ 3 ̄)づ/x.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/0ctfquals2016/(づ ̄ 3 ̄)づ/x.b64 -------------------------------------------------------------------------------- /0ctfquals2016/(づ ̄ 3 ̄)づ/x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/0ctfquals2016/(づ ̄ 3 ̄)づ/x.c -------------------------------------------------------------------------------- /0ctfquals2016/sandbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/0ctfquals2016/sandbox/README.md -------------------------------------------------------------------------------- /0ctfquals2016/sandbox/sc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/0ctfquals2016/sandbox/sc.asm -------------------------------------------------------------------------------- /0ctfquals2016/sandbox/sc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/0ctfquals2016/sandbox/sc.bin -------------------------------------------------------------------------------- /0ctfquals2016/sandbox/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/0ctfquals2016/sandbox/x.py -------------------------------------------------------------------------------- /asisfinals2015/png2ppm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/asisfinals2015/png2ppm/README.md -------------------------------------------------------------------------------- /asisfinals2015/png2ppm/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/asisfinals2015/png2ppm/x.py -------------------------------------------------------------------------------- /bkpctf2016/qwn2own/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2016/qwn2own/README.md -------------------------------------------------------------------------------- /bkpctf2016/qwn2own/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2016/qwn2own/index.html -------------------------------------------------------------------------------- /bkpctf2016/segsh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2016/segsh/README.md -------------------------------------------------------------------------------- /bkpctf2016/segsh/sc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2016/segsh/sc.asm -------------------------------------------------------------------------------- /bkpctf2016/segsh/sc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2016/segsh/sc.bin -------------------------------------------------------------------------------- /bkpctf2016/segsh/sh.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2016/segsh/sh.asm -------------------------------------------------------------------------------- /bkpctf2016/segsh/sh.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2016/segsh/sh.bin -------------------------------------------------------------------------------- /bkpctf2016/segsh/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2016/segsh/x.py -------------------------------------------------------------------------------- /bkpctf2016/spacerex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2016/spacerex/README.md -------------------------------------------------------------------------------- /bkpctf2016/spacerex/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2016/spacerex/x.py -------------------------------------------------------------------------------- /bkpctf2017/barewithme/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2017/barewithme/Makefile -------------------------------------------------------------------------------- /bkpctf2017/barewithme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2017/barewithme/README.md -------------------------------------------------------------------------------- /bkpctf2017/barewithme/ae9085f691dffbf9831cb0153f10f077.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2017/barewithme/ae9085f691dffbf9831cb0153f10f077.tgz -------------------------------------------------------------------------------- /bkpctf2017/barewithme/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2017/barewithme/asm.s -------------------------------------------------------------------------------- /bkpctf2017/barewithme/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2017/barewithme/helpers.h -------------------------------------------------------------------------------- /bkpctf2017/barewithme/kpayload.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2017/barewithme/kpayload.asm -------------------------------------------------------------------------------- /bkpctf2017/barewithme/kstub.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2017/barewithme/kstub.asm -------------------------------------------------------------------------------- /bkpctf2017/barewithme/libc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2017/barewithme/libc.a -------------------------------------------------------------------------------- /bkpctf2017/barewithme/libgcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2017/barewithme/libgcc.a -------------------------------------------------------------------------------- /bkpctf2017/barewithme/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2017/barewithme/main.c -------------------------------------------------------------------------------- /bkpctf2017/barewithme/newlibstrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2017/barewithme/newlibstrap.c -------------------------------------------------------------------------------- /bkpctf2017/barewithme/newlibstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2017/barewithme/newlibstrap.h -------------------------------------------------------------------------------- /bkpctf2017/barewithme/script.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2017/barewithme/script.ld -------------------------------------------------------------------------------- /bkpctf2017/barewithme/stage1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2017/barewithme/stage1 -------------------------------------------------------------------------------- /bkpctf2017/barewithme/stage1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2017/barewithme/stage1.asm -------------------------------------------------------------------------------- /bkpctf2017/barewithme/strap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2017/barewithme/strap.h -------------------------------------------------------------------------------- /bkpctf2017/barewithme/syscalldefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2017/barewithme/syscalldefs.h -------------------------------------------------------------------------------- /bkpctf2017/barewithme/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/bkpctf2017/barewithme/x.py -------------------------------------------------------------------------------- /confidence2015/quarantine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/confidence2015/quarantine/README.md -------------------------------------------------------------------------------- /confidence2015/quarantine/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/confidence2015/quarantine/x.py -------------------------------------------------------------------------------- /confidence2015/quine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/confidence2015/quine/README.md -------------------------------------------------------------------------------- /confidence2015/quine/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/confidence2015/quine/x.py -------------------------------------------------------------------------------- /csawfinals2013/Brad Oberberg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/csawfinals2013/Brad Oberberg/Makefile -------------------------------------------------------------------------------- /csawfinals2013/Brad Oberberg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/csawfinals2013/Brad Oberberg/README.md -------------------------------------------------------------------------------- /csawfinals2013/Brad Oberberg/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/csawfinals2013/Brad Oberberg/exploit.c -------------------------------------------------------------------------------- /csawfinals2013/Brad Oberberg/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/csawfinals2013/Brad Oberberg/main.c -------------------------------------------------------------------------------- /defconquals2014/turdedo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/defconquals2014/turdedo/README.md -------------------------------------------------------------------------------- /defconquals2014/turdedo/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/defconquals2014/turdedo/exploit.py -------------------------------------------------------------------------------- /hacklu2015/course_creator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hacklu2015/course_creator/README.md -------------------------------------------------------------------------------- /hacklu2015/course_creator/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hacklu2015/course_creator/x.py -------------------------------------------------------------------------------- /hitcon2014/callme/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hitcon2014/callme/Makefile -------------------------------------------------------------------------------- /hitcon2014/callme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hitcon2014/callme/README.md -------------------------------------------------------------------------------- /hitcon2014/callme/sc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hitcon2014/callme/sc.asm -------------------------------------------------------------------------------- /hitcon2014/callme/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hitcon2014/callme/x.py -------------------------------------------------------------------------------- /hitcon2014/rsbo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hitcon2014/rsbo/README.md -------------------------------------------------------------------------------- /hitcon2014/rsbo/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hitcon2014/rsbo/x.py -------------------------------------------------------------------------------- /hitcon2014/sha1lcode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hitcon2014/sha1lcode/Makefile -------------------------------------------------------------------------------- /hitcon2014/sha1lcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hitcon2014/sha1lcode/README.md -------------------------------------------------------------------------------- /hitcon2014/sha1lcode/brutus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hitcon2014/sha1lcode/brutus.c -------------------------------------------------------------------------------- /hitcon2014/sha1lcode/printdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hitcon2014/sha1lcode/printdata.py -------------------------------------------------------------------------------- /hitcon2014/sha1lcode/sc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hitcon2014/sha1lcode/sc.asm -------------------------------------------------------------------------------- /hitcon2014/sha1lcode/x.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | (./printdata.py; cat -) | nc 210.61.2.51 5566 3 | -------------------------------------------------------------------------------- /hitcon2014/stkof/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hitcon2014/stkof/README.md -------------------------------------------------------------------------------- /hitcon2014/stkof/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hitcon2014/stkof/x.py -------------------------------------------------------------------------------- /hitcon2014/ty/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hitcon2014/ty/Makefile -------------------------------------------------------------------------------- /hitcon2014/ty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hitcon2014/ty/README.md -------------------------------------------------------------------------------- /hitcon2014/ty/sc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hitcon2014/ty/sc.asm -------------------------------------------------------------------------------- /hitcon2014/ty/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hitcon2014/ty/x.py -------------------------------------------------------------------------------- /hitconquals2015/blinkroot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hitconquals2015/blinkroot/README.md -------------------------------------------------------------------------------- /hitconquals2015/blinkroot/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hitconquals2015/blinkroot/x.py -------------------------------------------------------------------------------- /hitconquals2015/fooddb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hitconquals2015/fooddb/README.md -------------------------------------------------------------------------------- /hitconquals2015/fooddb/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hitconquals2015/fooddb/x.py -------------------------------------------------------------------------------- /hitconquals2015/matrixmatrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hitconquals2015/matrixmatrix/README.md -------------------------------------------------------------------------------- /hitconquals2015/matrixmatrix/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/hitconquals2015/matrixmatrix/x.py -------------------------------------------------------------------------------- /pctf2015/tp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/pctf2015/tp/README.md -------------------------------------------------------------------------------- /pctf2015/tp/ls.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/pctf2015/tp/ls.asm -------------------------------------------------------------------------------- /pctf2015/tp/ls.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/pctf2015/tp/ls.bin -------------------------------------------------------------------------------- /pctf2015/tp/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/pctf2015/tp/x.py -------------------------------------------------------------------------------- /twmma2016/candystore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/twmma2016/candystore/README.md -------------------------------------------------------------------------------- /twmma2016/candystore/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/twmma2016/candystore/x.py -------------------------------------------------------------------------------- /twmma2016/diary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/twmma2016/diary/README.md -------------------------------------------------------------------------------- /twmma2016/diary/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/twmma2016/diary/x.py -------------------------------------------------------------------------------- /twmma2016/greeting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/twmma2016/greeting/README.md -------------------------------------------------------------------------------- /twmma2016/greeting/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/twmma2016/greeting/x.py -------------------------------------------------------------------------------- /twmma2016/hastur/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/twmma2016/hastur/README.md -------------------------------------------------------------------------------- /twmma2016/hastur/sc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/twmma2016/hastur/sc.asm -------------------------------------------------------------------------------- /twmma2016/hastur/sc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/twmma2016/hastur/sc.bin -------------------------------------------------------------------------------- /twmma2016/hastur/x.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/twmma2016/hastur/x.php -------------------------------------------------------------------------------- /twmma2016/hastur/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/twmma2016/hastur/x.py -------------------------------------------------------------------------------- /twmma2016/interpreter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/twmma2016/interpreter/README.md -------------------------------------------------------------------------------- /twmma2016/interpreter/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/twmma2016/interpreter/x.py -------------------------------------------------------------------------------- /twmma2016/judgement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/twmma2016/judgement/README.md -------------------------------------------------------------------------------- /twmma2016/judgement/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/twmma2016/judgement/x.py -------------------------------------------------------------------------------- /twmma2016/shadow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/twmma2016/shadow/README.md -------------------------------------------------------------------------------- /twmma2016/shadow/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acama/ctf/HEAD/twmma2016/shadow/x.py --------------------------------------------------------------------------------