├── AsisCTF18_FiftyDollars.py ├── LICENSE ├── fifty_dollars ├── frontlink_arbitrary_allocation.c ├── libc6_2.23-0ubuntu9_amd64.so ├── preload_exec.sh ├── readme.md └── run.sh /AsisCTF18_FiftyDollars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scepticz/Glibc-Malloc-POCs/HEAD/AsisCTF18_FiftyDollars.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scepticz/Glibc-Malloc-POCs/HEAD/LICENSE -------------------------------------------------------------------------------- /fifty_dollars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scepticz/Glibc-Malloc-POCs/HEAD/fifty_dollars -------------------------------------------------------------------------------- /frontlink_arbitrary_allocation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scepticz/Glibc-Malloc-POCs/HEAD/frontlink_arbitrary_allocation.c -------------------------------------------------------------------------------- /libc6_2.23-0ubuntu9_amd64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scepticz/Glibc-Malloc-POCs/HEAD/libc6_2.23-0ubuntu9_amd64.so -------------------------------------------------------------------------------- /preload_exec.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ./fifty_dollars 3 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scepticz/Glibc-Malloc-POCs/HEAD/readme.md -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scepticz/Glibc-Malloc-POCs/HEAD/run.sh --------------------------------------------------------------------------------