├── .gitignore ├── 0ctf-quals-2017 └── babyheap │ ├── babyheap │ └── exploit.py ├── 30c3-2013 └── bigdata │ ├── exploit.py │ └── server ├── 34c3ctf-2017 └── 300 │ ├── 300 │ ├── exploit.py │ └── libc.so.6 ├── acebear-2018 ├── easy_heap │ ├── easy_heap │ ├── easyheap_libc.so.6 │ └── exploit.py └── memo_heap │ ├── exploit.py │ └── memo_heap ├── advent-2021 └── santazon │ ├── exploit.py │ ├── libc.so.6 │ └── santazon ├── asis-finals-2018 └── mem0 │ ├── exploit-16.04.py │ └── memo ├── blaze-ctf-2018 └── blazefox │ ├── blaze.patch │ ├── exploit.js │ ├── jspack.js │ └── test.html ├── boston-key-party-2016 └── cookbook │ ├── cookbook │ └── exploit.py ├── codegate-2018 ├── baskin-robins │ ├── BaskinRobins31 │ └── exploit.py ├── rbSql │ ├── 4bbc327f5b0fd076e005961bcfc4a9ee.php │ ├── 5f0c2baaa2c0426eed9a958e3fe0ff94.php │ ├── dbconn.php │ ├── exploit.php │ ├── images │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.png │ │ ├── 4.gif │ │ ├── bg.jpg │ │ ├── cover2.jpg │ │ ├── index.php │ │ ├── join.png │ │ ├── k_03.jpg │ │ ├── login.jpg │ │ ├── merong.jpg │ │ └── wine.jpg │ ├── index.php │ └── style.css ├── super-marimo │ ├── exploit.py │ ├── libc.so.6 │ └── marimo └── zoo │ ├── .gdbinit │ ├── dec.c │ ├── exploit.py │ ├── helper.py │ ├── libc.so.6 │ ├── structs.c │ └── zoo ├── codegate-2019 └── god-the-reum │ ├── exploit.py │ ├── god-the-reum │ └── libc-2.27.so ├── codegate-final-2015 └── heapster │ ├── exploit.py │ ├── heapster │ └── libc-2.19.so ├── csaw-ctf-2013 ├── exploitation-1 │ ├── exploit.py │ ├── exploit1 │ └── key ├── exploitation-2 │ ├── exploit.py │ ├── exploit2 │ └── key └── exploitation-3 │ ├── exploit.py │ ├── fil_chal │ └── key ├── defcon-2015 ├── babyecho │ ├── babyecho │ └── exploit.py └── r0pbaby │ ├── exploit.py │ └── r0pbaby ├── fireshell-2019 └── quotes_list │ ├── exploit.py │ ├── ld-linux-x86-64.so.2 │ ├── libc.so.6 │ └── quotes_list ├── hacklu-2014 └── oreo │ ├── exploit.py │ └── oreo ├── hacklu-2015 └── bookstore │ ├── bookstore │ └── exploit.py ├── hacklu-2017 ├── HeapsOfPrint │ ├── HeapsOfPrint │ ├── exploit.py │ └── libc.so.6 ├── exam │ ├── exam │ └── exploit.py ├── heapheaven │ ├── HeapHeaven │ └── exploit.py └── multi-o-flow │ ├── exploit.py │ └── mult-o-flow ├── hitcon-2015 └── blinkroot │ ├── blinkroot │ └── exploit.py ├── hitcon-2016 ├── baby-heap-300 │ ├── babyheap │ └── exploit.py ├── secretholder │ ├── exploit.py │ └── secretholder └── sleepyholder │ ├── exploit.py │ └── sleepyholder ├── insomni-hack-17 ├── babyfirst │ ├── babyfirst │ ├── exploit.py │ └── flag.txt └── wheelofrobots │ ├── exploit.py │ └── wheelofrobots ├── insomni-hack-18 ├── magichat │ ├── README.md │ ├── client │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── lib │ │ │ ├── commons-collections-3.2.2.jar │ │ │ ├── commons-lang3-3.7.jar │ │ │ └── mockito-all-1.9.5.jar │ │ └── src │ │ │ └── ch │ │ │ └── scrt │ │ │ ├── Muggle.java │ │ │ ├── MyExploit.java │ │ │ ├── WizardAPI.java │ │ │ └── model │ │ │ ├── Artifact.java │ │ │ ├── Broomstick.java │ │ │ ├── Cauldron.java │ │ │ ├── Frog.java │ │ │ ├── Gem.java │ │ │ ├── Hat.java │ │ │ ├── Lamp.java │ │ │ ├── Mirror.java │ │ │ ├── Scroll.java │ │ │ ├── TeaSet.java │ │ │ └── Wand.java │ └── server │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── lib │ │ ├── commons-collections-3.2.2.jar │ │ └── commons-lang3-3.7.jar │ │ └── src │ │ └── ch │ │ └── scrt │ │ ├── Server.java │ │ ├── WizardAPI.java │ │ ├── WizardAPIImpl.java │ │ └── model │ │ ├── Artifact.java │ │ ├── Broomstick.java │ │ ├── Cauldron.java │ │ ├── Frog.java │ │ ├── Gem.java │ │ ├── Hat.java │ │ ├── Lamp.java │ │ ├── Mirror.java │ │ ├── Scroll.java │ │ ├── TeaSet.java │ │ └── Wand.java └── sapeloshop │ ├── exploit.py │ ├── footer.html │ ├── header.html │ ├── index.html │ ├── libc-2.23.so │ ├── order.html │ └── sapeloshop ├── insomni-hack-finals-18 └── yanc │ ├── exploit.py │ └── yanc ├── meepwn-2018 ├── baby-sandbox │ ├── baby-sandbox │ ├── code.c │ └── exploit.py └── house_of_card │ ├── exploit.py │ ├── house_of_card │ └── libc.so ├── n1ctf-2018 └── vote │ ├── exploit.py │ ├── libc-2.23.so │ └── vote ├── rctf-2017 ├── rnote │ ├── RNote │ ├── exploit.py │ └── libc.so.6 └── rnote2 │ ├── RNote2 │ ├── exploit.py │ └── libc.so.6 ├── rctf-2018 ├── RNote3 │ ├── RNote3 │ ├── exploit.py │ └── libc.so.6 ├── RNote4 │ ├── RNote4 │ ├── exploit.py │ └── libc.so.6 ├── babyheap │ ├── babyheap │ ├── exploit.py │ └── libc.so.6 └── stringer │ ├── exploit.py │ ├── libc.so.6 │ └── stringer ├── seccon-2017 ├── election-200 │ ├── election │ ├── exploit.py │ └── libc-2.23.so └── videoplayer-500 │ ├── exploit.py │ ├── libc.so.6 │ └── video_player ├── securinets-2018 ├── boobs │ ├── boobs │ ├── exploit.py │ └── flag.txt ├── format-me │ ├── exploit.py │ └── format ├── no-mercy │ ├── exploit.py │ ├── libc.so.6 │ └── no_mercy ├── protect │ ├── exploit.py │ └── protect └── special │ └── writeup ├── sharif-2018 └── t00p_secrets │ ├── exploit.py │ └── t00p_secrets ├── tuctf-2018 ├── canary │ ├── canary │ ├── exploit.py │ ├── flag │ └── password └── lisa │ ├── exploit.py │ ├── flag │ ├── lisa │ └── password └── whitehat-grandpix-2018 └── book-store ├── BookStore ├── exploit.py └── libc-2.27.so /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/.gitignore -------------------------------------------------------------------------------- /0ctf-quals-2017/babyheap/babyheap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/0ctf-quals-2017/babyheap/babyheap -------------------------------------------------------------------------------- /0ctf-quals-2017/babyheap/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/0ctf-quals-2017/babyheap/exploit.py -------------------------------------------------------------------------------- /30c3-2013/bigdata/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/30c3-2013/bigdata/exploit.py -------------------------------------------------------------------------------- /30c3-2013/bigdata/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/30c3-2013/bigdata/server -------------------------------------------------------------------------------- /34c3ctf-2017/300/300: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/34c3ctf-2017/300/300 -------------------------------------------------------------------------------- /34c3ctf-2017/300/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/34c3ctf-2017/300/exploit.py -------------------------------------------------------------------------------- /34c3ctf-2017/300/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/34c3ctf-2017/300/libc.so.6 -------------------------------------------------------------------------------- /acebear-2018/easy_heap/easy_heap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/acebear-2018/easy_heap/easy_heap -------------------------------------------------------------------------------- /acebear-2018/easy_heap/easyheap_libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/acebear-2018/easy_heap/easyheap_libc.so.6 -------------------------------------------------------------------------------- /acebear-2018/easy_heap/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/acebear-2018/easy_heap/exploit.py -------------------------------------------------------------------------------- /acebear-2018/memo_heap/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/acebear-2018/memo_heap/exploit.py -------------------------------------------------------------------------------- /acebear-2018/memo_heap/memo_heap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/acebear-2018/memo_heap/memo_heap -------------------------------------------------------------------------------- /advent-2021/santazon/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/advent-2021/santazon/exploit.py -------------------------------------------------------------------------------- /advent-2021/santazon/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/advent-2021/santazon/libc.so.6 -------------------------------------------------------------------------------- /advent-2021/santazon/santazon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/advent-2021/santazon/santazon -------------------------------------------------------------------------------- /asis-finals-2018/mem0/exploit-16.04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/asis-finals-2018/mem0/exploit-16.04.py -------------------------------------------------------------------------------- /asis-finals-2018/mem0/memo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/asis-finals-2018/mem0/memo -------------------------------------------------------------------------------- /blaze-ctf-2018/blazefox/blaze.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/blaze-ctf-2018/blazefox/blaze.patch -------------------------------------------------------------------------------- /blaze-ctf-2018/blazefox/exploit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/blaze-ctf-2018/blazefox/exploit.js -------------------------------------------------------------------------------- /blaze-ctf-2018/blazefox/jspack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/blaze-ctf-2018/blazefox/jspack.js -------------------------------------------------------------------------------- /blaze-ctf-2018/blazefox/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/blaze-ctf-2018/blazefox/test.html -------------------------------------------------------------------------------- /boston-key-party-2016/cookbook/cookbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/boston-key-party-2016/cookbook/cookbook -------------------------------------------------------------------------------- /boston-key-party-2016/cookbook/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/boston-key-party-2016/cookbook/exploit.py -------------------------------------------------------------------------------- /codegate-2018/baskin-robins/BaskinRobins31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/baskin-robins/BaskinRobins31 -------------------------------------------------------------------------------- /codegate-2018/baskin-robins/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/baskin-robins/exploit.py -------------------------------------------------------------------------------- /codegate-2018/rbSql/4bbc327f5b0fd076e005961bcfc4a9ee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/rbSql/4bbc327f5b0fd076e005961bcfc4a9ee.php -------------------------------------------------------------------------------- /codegate-2018/rbSql/5f0c2baaa2c0426eed9a958e3fe0ff94.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/rbSql/5f0c2baaa2c0426eed9a958e3fe0ff94.php -------------------------------------------------------------------------------- /codegate-2018/rbSql/dbconn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/rbSql/dbconn.php -------------------------------------------------------------------------------- /codegate-2018/rbSql/exploit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/rbSql/exploit.php -------------------------------------------------------------------------------- /codegate-2018/rbSql/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/rbSql/images/1.jpg -------------------------------------------------------------------------------- /codegate-2018/rbSql/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/rbSql/images/2.jpg -------------------------------------------------------------------------------- /codegate-2018/rbSql/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/rbSql/images/3.png -------------------------------------------------------------------------------- /codegate-2018/rbSql/images/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/rbSql/images/4.gif -------------------------------------------------------------------------------- /codegate-2018/rbSql/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/rbSql/images/bg.jpg -------------------------------------------------------------------------------- /codegate-2018/rbSql/images/cover2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/rbSql/images/cover2.jpg -------------------------------------------------------------------------------- /codegate-2018/rbSql/images/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codegate-2018/rbSql/images/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/rbSql/images/join.png -------------------------------------------------------------------------------- /codegate-2018/rbSql/images/k_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/rbSql/images/k_03.jpg -------------------------------------------------------------------------------- /codegate-2018/rbSql/images/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/rbSql/images/login.jpg -------------------------------------------------------------------------------- /codegate-2018/rbSql/images/merong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/rbSql/images/merong.jpg -------------------------------------------------------------------------------- /codegate-2018/rbSql/images/wine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/rbSql/images/wine.jpg -------------------------------------------------------------------------------- /codegate-2018/rbSql/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/rbSql/index.php -------------------------------------------------------------------------------- /codegate-2018/rbSql/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/rbSql/style.css -------------------------------------------------------------------------------- /codegate-2018/super-marimo/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/super-marimo/exploit.py -------------------------------------------------------------------------------- /codegate-2018/super-marimo/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/super-marimo/libc.so.6 -------------------------------------------------------------------------------- /codegate-2018/super-marimo/marimo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/super-marimo/marimo -------------------------------------------------------------------------------- /codegate-2018/zoo/.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/zoo/.gdbinit -------------------------------------------------------------------------------- /codegate-2018/zoo/dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/zoo/dec.c -------------------------------------------------------------------------------- /codegate-2018/zoo/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/zoo/exploit.py -------------------------------------------------------------------------------- /codegate-2018/zoo/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/zoo/helper.py -------------------------------------------------------------------------------- /codegate-2018/zoo/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/zoo/libc.so.6 -------------------------------------------------------------------------------- /codegate-2018/zoo/structs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/zoo/structs.c -------------------------------------------------------------------------------- /codegate-2018/zoo/zoo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2018/zoo/zoo -------------------------------------------------------------------------------- /codegate-2019/god-the-reum/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2019/god-the-reum/exploit.py -------------------------------------------------------------------------------- /codegate-2019/god-the-reum/god-the-reum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2019/god-the-reum/god-the-reum -------------------------------------------------------------------------------- /codegate-2019/god-the-reum/libc-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-2019/god-the-reum/libc-2.27.so -------------------------------------------------------------------------------- /codegate-final-2015/heapster/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-final-2015/heapster/exploit.py -------------------------------------------------------------------------------- /codegate-final-2015/heapster/heapster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-final-2015/heapster/heapster -------------------------------------------------------------------------------- /codegate-final-2015/heapster/libc-2.19.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/codegate-final-2015/heapster/libc-2.19.so -------------------------------------------------------------------------------- /csaw-ctf-2013/exploitation-1/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/csaw-ctf-2013/exploitation-1/exploit.py -------------------------------------------------------------------------------- /csaw-ctf-2013/exploitation-1/exploit1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/csaw-ctf-2013/exploitation-1/exploit1 -------------------------------------------------------------------------------- /csaw-ctf-2013/exploitation-1/key: -------------------------------------------------------------------------------- 1 | THIS_IS_THE_KEY 2 | -------------------------------------------------------------------------------- /csaw-ctf-2013/exploitation-2/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/csaw-ctf-2013/exploitation-2/exploit.py -------------------------------------------------------------------------------- /csaw-ctf-2013/exploitation-2/exploit2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/csaw-ctf-2013/exploitation-2/exploit2 -------------------------------------------------------------------------------- /csaw-ctf-2013/exploitation-2/key: -------------------------------------------------------------------------------- 1 | THIS_IS_KEY_FILE 2 | -------------------------------------------------------------------------------- /csaw-ctf-2013/exploitation-3/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/csaw-ctf-2013/exploitation-3/exploit.py -------------------------------------------------------------------------------- /csaw-ctf-2013/exploitation-3/fil_chal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/csaw-ctf-2013/exploitation-3/fil_chal -------------------------------------------------------------------------------- /csaw-ctf-2013/exploitation-3/key: -------------------------------------------------------------------------------- 1 | THIS_IS_KEY 2 | -------------------------------------------------------------------------------- /defcon-2015/babyecho/babyecho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/defcon-2015/babyecho/babyecho -------------------------------------------------------------------------------- /defcon-2015/babyecho/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/defcon-2015/babyecho/exploit.py -------------------------------------------------------------------------------- /defcon-2015/r0pbaby/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/defcon-2015/r0pbaby/exploit.py -------------------------------------------------------------------------------- /defcon-2015/r0pbaby/r0pbaby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/defcon-2015/r0pbaby/r0pbaby -------------------------------------------------------------------------------- /fireshell-2019/quotes_list/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/fireshell-2019/quotes_list/exploit.py -------------------------------------------------------------------------------- /fireshell-2019/quotes_list/ld-linux-x86-64.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/fireshell-2019/quotes_list/ld-linux-x86-64.so.2 -------------------------------------------------------------------------------- /fireshell-2019/quotes_list/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/fireshell-2019/quotes_list/libc.so.6 -------------------------------------------------------------------------------- /fireshell-2019/quotes_list/quotes_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/fireshell-2019/quotes_list/quotes_list -------------------------------------------------------------------------------- /hacklu-2014/oreo/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/hacklu-2014/oreo/exploit.py -------------------------------------------------------------------------------- /hacklu-2014/oreo/oreo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/hacklu-2014/oreo/oreo -------------------------------------------------------------------------------- /hacklu-2015/bookstore/bookstore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/hacklu-2015/bookstore/bookstore -------------------------------------------------------------------------------- /hacklu-2015/bookstore/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/hacklu-2015/bookstore/exploit.py -------------------------------------------------------------------------------- /hacklu-2017/HeapsOfPrint/HeapsOfPrint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/hacklu-2017/HeapsOfPrint/HeapsOfPrint -------------------------------------------------------------------------------- /hacklu-2017/HeapsOfPrint/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/hacklu-2017/HeapsOfPrint/exploit.py -------------------------------------------------------------------------------- /hacklu-2017/HeapsOfPrint/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/hacklu-2017/HeapsOfPrint/libc.so.6 -------------------------------------------------------------------------------- /hacklu-2017/exam/exam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/hacklu-2017/exam/exam -------------------------------------------------------------------------------- /hacklu-2017/exam/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/hacklu-2017/exam/exploit.py -------------------------------------------------------------------------------- /hacklu-2017/heapheaven/HeapHeaven: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/hacklu-2017/heapheaven/HeapHeaven -------------------------------------------------------------------------------- /hacklu-2017/heapheaven/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/hacklu-2017/heapheaven/exploit.py -------------------------------------------------------------------------------- /hacklu-2017/multi-o-flow/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/hacklu-2017/multi-o-flow/exploit.py -------------------------------------------------------------------------------- /hacklu-2017/multi-o-flow/mult-o-flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/hacklu-2017/multi-o-flow/mult-o-flow -------------------------------------------------------------------------------- /hitcon-2015/blinkroot/blinkroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/hitcon-2015/blinkroot/blinkroot -------------------------------------------------------------------------------- /hitcon-2015/blinkroot/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/hitcon-2015/blinkroot/exploit.py -------------------------------------------------------------------------------- /hitcon-2016/baby-heap-300/babyheap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/hitcon-2016/baby-heap-300/babyheap -------------------------------------------------------------------------------- /hitcon-2016/baby-heap-300/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/hitcon-2016/baby-heap-300/exploit.py -------------------------------------------------------------------------------- /hitcon-2016/secretholder/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/hitcon-2016/secretholder/exploit.py -------------------------------------------------------------------------------- /hitcon-2016/secretholder/secretholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/hitcon-2016/secretholder/secretholder -------------------------------------------------------------------------------- /hitcon-2016/sleepyholder/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/hitcon-2016/sleepyholder/exploit.py -------------------------------------------------------------------------------- /hitcon-2016/sleepyholder/sleepyholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/hitcon-2016/sleepyholder/sleepyholder -------------------------------------------------------------------------------- /insomni-hack-17/babyfirst/babyfirst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-17/babyfirst/babyfirst -------------------------------------------------------------------------------- /insomni-hack-17/babyfirst/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-17/babyfirst/exploit.py -------------------------------------------------------------------------------- /insomni-hack-17/babyfirst/flag.txt: -------------------------------------------------------------------------------- 1 | my_fake_flag 2 | -------------------------------------------------------------------------------- /insomni-hack-17/wheelofrobots/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-17/wheelofrobots/exploit.py -------------------------------------------------------------------------------- /insomni-hack-17/wheelofrobots/wheelofrobots: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-17/wheelofrobots/wheelofrobots -------------------------------------------------------------------------------- /insomni-hack-18/magichat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/README.md -------------------------------------------------------------------------------- /insomni-hack-18/magichat/client/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/client/.classpath -------------------------------------------------------------------------------- /insomni-hack-18/magichat/client/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /insomni-hack-18/magichat/client/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/client/.project -------------------------------------------------------------------------------- /insomni-hack-18/magichat/client/lib/commons-collections-3.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/client/lib/commons-collections-3.2.2.jar -------------------------------------------------------------------------------- /insomni-hack-18/magichat/client/lib/commons-lang3-3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/client/lib/commons-lang3-3.7.jar -------------------------------------------------------------------------------- /insomni-hack-18/magichat/client/lib/mockito-all-1.9.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/client/lib/mockito-all-1.9.5.jar -------------------------------------------------------------------------------- /insomni-hack-18/magichat/client/src/ch/scrt/Muggle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/client/src/ch/scrt/Muggle.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/client/src/ch/scrt/MyExploit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/client/src/ch/scrt/MyExploit.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/client/src/ch/scrt/WizardAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/client/src/ch/scrt/WizardAPI.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/client/src/ch/scrt/model/Artifact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/client/src/ch/scrt/model/Artifact.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/client/src/ch/scrt/model/Broomstick.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/client/src/ch/scrt/model/Broomstick.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/client/src/ch/scrt/model/Cauldron.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/client/src/ch/scrt/model/Cauldron.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/client/src/ch/scrt/model/Frog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/client/src/ch/scrt/model/Frog.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/client/src/ch/scrt/model/Gem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/client/src/ch/scrt/model/Gem.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/client/src/ch/scrt/model/Hat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/client/src/ch/scrt/model/Hat.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/client/src/ch/scrt/model/Lamp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/client/src/ch/scrt/model/Lamp.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/client/src/ch/scrt/model/Mirror.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/client/src/ch/scrt/model/Mirror.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/client/src/ch/scrt/model/Scroll.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/client/src/ch/scrt/model/Scroll.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/client/src/ch/scrt/model/TeaSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/client/src/ch/scrt/model/TeaSet.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/client/src/ch/scrt/model/Wand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/client/src/ch/scrt/model/Wand.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/server/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/server/.classpath -------------------------------------------------------------------------------- /insomni-hack-18/magichat/server/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /insomni-hack-18/magichat/server/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/server/.project -------------------------------------------------------------------------------- /insomni-hack-18/magichat/server/lib/commons-collections-3.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/server/lib/commons-collections-3.2.2.jar -------------------------------------------------------------------------------- /insomni-hack-18/magichat/server/lib/commons-lang3-3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/server/lib/commons-lang3-3.7.jar -------------------------------------------------------------------------------- /insomni-hack-18/magichat/server/src/ch/scrt/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/server/src/ch/scrt/Server.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/server/src/ch/scrt/WizardAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/server/src/ch/scrt/WizardAPI.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/server/src/ch/scrt/WizardAPIImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/server/src/ch/scrt/WizardAPIImpl.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/server/src/ch/scrt/model/Artifact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/server/src/ch/scrt/model/Artifact.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/server/src/ch/scrt/model/Broomstick.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/server/src/ch/scrt/model/Broomstick.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/server/src/ch/scrt/model/Cauldron.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/server/src/ch/scrt/model/Cauldron.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/server/src/ch/scrt/model/Frog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/server/src/ch/scrt/model/Frog.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/server/src/ch/scrt/model/Gem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/server/src/ch/scrt/model/Gem.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/server/src/ch/scrt/model/Hat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/server/src/ch/scrt/model/Hat.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/server/src/ch/scrt/model/Lamp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/server/src/ch/scrt/model/Lamp.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/server/src/ch/scrt/model/Mirror.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/server/src/ch/scrt/model/Mirror.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/server/src/ch/scrt/model/Scroll.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/server/src/ch/scrt/model/Scroll.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/server/src/ch/scrt/model/TeaSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/server/src/ch/scrt/model/TeaSet.java -------------------------------------------------------------------------------- /insomni-hack-18/magichat/server/src/ch/scrt/model/Wand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/magichat/server/src/ch/scrt/model/Wand.java -------------------------------------------------------------------------------- /insomni-hack-18/sapeloshop/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/sapeloshop/exploit.py -------------------------------------------------------------------------------- /insomni-hack-18/sapeloshop/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/sapeloshop/footer.html -------------------------------------------------------------------------------- /insomni-hack-18/sapeloshop/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/sapeloshop/header.html -------------------------------------------------------------------------------- /insomni-hack-18/sapeloshop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/sapeloshop/index.html -------------------------------------------------------------------------------- /insomni-hack-18/sapeloshop/libc-2.23.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/sapeloshop/libc-2.23.so -------------------------------------------------------------------------------- /insomni-hack-18/sapeloshop/order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/sapeloshop/order.html -------------------------------------------------------------------------------- /insomni-hack-18/sapeloshop/sapeloshop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-18/sapeloshop/sapeloshop -------------------------------------------------------------------------------- /insomni-hack-finals-18/yanc/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-finals-18/yanc/exploit.py -------------------------------------------------------------------------------- /insomni-hack-finals-18/yanc/yanc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/insomni-hack-finals-18/yanc/yanc -------------------------------------------------------------------------------- /meepwn-2018/baby-sandbox/baby-sandbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/meepwn-2018/baby-sandbox/baby-sandbox -------------------------------------------------------------------------------- /meepwn-2018/baby-sandbox/code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/meepwn-2018/baby-sandbox/code.c -------------------------------------------------------------------------------- /meepwn-2018/baby-sandbox/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/meepwn-2018/baby-sandbox/exploit.py -------------------------------------------------------------------------------- /meepwn-2018/house_of_card/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/meepwn-2018/house_of_card/exploit.py -------------------------------------------------------------------------------- /meepwn-2018/house_of_card/house_of_card: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/meepwn-2018/house_of_card/house_of_card -------------------------------------------------------------------------------- /meepwn-2018/house_of_card/libc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/meepwn-2018/house_of_card/libc.so -------------------------------------------------------------------------------- /n1ctf-2018/vote/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/n1ctf-2018/vote/exploit.py -------------------------------------------------------------------------------- /n1ctf-2018/vote/libc-2.23.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/n1ctf-2018/vote/libc-2.23.so -------------------------------------------------------------------------------- /n1ctf-2018/vote/vote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/n1ctf-2018/vote/vote -------------------------------------------------------------------------------- /rctf-2017/rnote/RNote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/rctf-2017/rnote/RNote -------------------------------------------------------------------------------- /rctf-2017/rnote/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/rctf-2017/rnote/exploit.py -------------------------------------------------------------------------------- /rctf-2017/rnote/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/rctf-2017/rnote/libc.so.6 -------------------------------------------------------------------------------- /rctf-2017/rnote2/RNote2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/rctf-2017/rnote2/RNote2 -------------------------------------------------------------------------------- /rctf-2017/rnote2/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/rctf-2017/rnote2/exploit.py -------------------------------------------------------------------------------- /rctf-2017/rnote2/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/rctf-2017/rnote2/libc.so.6 -------------------------------------------------------------------------------- /rctf-2018/RNote3/RNote3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/rctf-2018/RNote3/RNote3 -------------------------------------------------------------------------------- /rctf-2018/RNote3/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/rctf-2018/RNote3/exploit.py -------------------------------------------------------------------------------- /rctf-2018/RNote3/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/rctf-2018/RNote3/libc.so.6 -------------------------------------------------------------------------------- /rctf-2018/RNote4/RNote4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/rctf-2018/RNote4/RNote4 -------------------------------------------------------------------------------- /rctf-2018/RNote4/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/rctf-2018/RNote4/exploit.py -------------------------------------------------------------------------------- /rctf-2018/RNote4/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/rctf-2018/RNote4/libc.so.6 -------------------------------------------------------------------------------- /rctf-2018/babyheap/babyheap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/rctf-2018/babyheap/babyheap -------------------------------------------------------------------------------- /rctf-2018/babyheap/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/rctf-2018/babyheap/exploit.py -------------------------------------------------------------------------------- /rctf-2018/babyheap/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/rctf-2018/babyheap/libc.so.6 -------------------------------------------------------------------------------- /rctf-2018/stringer/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/rctf-2018/stringer/exploit.py -------------------------------------------------------------------------------- /rctf-2018/stringer/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/rctf-2018/stringer/libc.so.6 -------------------------------------------------------------------------------- /rctf-2018/stringer/stringer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/rctf-2018/stringer/stringer -------------------------------------------------------------------------------- /seccon-2017/election-200/election: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/seccon-2017/election-200/election -------------------------------------------------------------------------------- /seccon-2017/election-200/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/seccon-2017/election-200/exploit.py -------------------------------------------------------------------------------- /seccon-2017/election-200/libc-2.23.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/seccon-2017/election-200/libc-2.23.so -------------------------------------------------------------------------------- /seccon-2017/videoplayer-500/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/seccon-2017/videoplayer-500/exploit.py -------------------------------------------------------------------------------- /seccon-2017/videoplayer-500/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/seccon-2017/videoplayer-500/libc.so.6 -------------------------------------------------------------------------------- /seccon-2017/videoplayer-500/video_player: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/seccon-2017/videoplayer-500/video_player -------------------------------------------------------------------------------- /securinets-2018/boobs/boobs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/securinets-2018/boobs/boobs -------------------------------------------------------------------------------- /securinets-2018/boobs/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/securinets-2018/boobs/exploit.py -------------------------------------------------------------------------------- /securinets-2018/boobs/flag.txt: -------------------------------------------------------------------------------- 1 | SAMPLE{FLAG} 2 | -------------------------------------------------------------------------------- /securinets-2018/format-me/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/securinets-2018/format-me/exploit.py -------------------------------------------------------------------------------- /securinets-2018/format-me/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/securinets-2018/format-me/format -------------------------------------------------------------------------------- /securinets-2018/no-mercy/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/securinets-2018/no-mercy/exploit.py -------------------------------------------------------------------------------- /securinets-2018/no-mercy/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/securinets-2018/no-mercy/libc.so.6 -------------------------------------------------------------------------------- /securinets-2018/no-mercy/no_mercy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/securinets-2018/no-mercy/no_mercy -------------------------------------------------------------------------------- /securinets-2018/protect/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/securinets-2018/protect/exploit.py -------------------------------------------------------------------------------- /securinets-2018/protect/protect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/securinets-2018/protect/protect -------------------------------------------------------------------------------- /securinets-2018/special/writeup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/securinets-2018/special/writeup -------------------------------------------------------------------------------- /sharif-2018/t00p_secrets/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/sharif-2018/t00p_secrets/exploit.py -------------------------------------------------------------------------------- /sharif-2018/t00p_secrets/t00p_secrets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/sharif-2018/t00p_secrets/t00p_secrets -------------------------------------------------------------------------------- /tuctf-2018/canary/canary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/tuctf-2018/canary/canary -------------------------------------------------------------------------------- /tuctf-2018/canary/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/tuctf-2018/canary/exploit.py -------------------------------------------------------------------------------- /tuctf-2018/canary/flag: -------------------------------------------------------------------------------- 1 | flag{test-flag-here} 2 | -------------------------------------------------------------------------------- /tuctf-2018/canary/password: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/tuctf-2018/canary/password -------------------------------------------------------------------------------- /tuctf-2018/lisa/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/tuctf-2018/lisa/exploit.py -------------------------------------------------------------------------------- /tuctf-2018/lisa/flag: -------------------------------------------------------------------------------- 1 | flag{test-flag-here} 2 | -------------------------------------------------------------------------------- /tuctf-2018/lisa/lisa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/tuctf-2018/lisa/lisa -------------------------------------------------------------------------------- /tuctf-2018/lisa/password: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/tuctf-2018/lisa/password -------------------------------------------------------------------------------- /whitehat-grandpix-2018/book-store/BookStore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/whitehat-grandpix-2018/book-store/BookStore -------------------------------------------------------------------------------- /whitehat-grandpix-2018/book-store/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/whitehat-grandpix-2018/book-store/exploit.py -------------------------------------------------------------------------------- /whitehat-grandpix-2018/book-store/libc-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhavalKapil/ctf-writeups/HEAD/whitehat-grandpix-2018/book-store/libc-2.27.so --------------------------------------------------------------------------------