├── 0ops_app ├── 0ops_app.cpp ├── flag ├── makefile ├── makefile.rules ├── testcase │ ├── get_flag │ ├── print_flag │ ├── shell │ └── vuln └── vuln.c ├── CodeCoverage ├── codecoverage.cpp ├── makefile ├── makefile.rules ├── run.sh ├── test │ └── bof1 │ │ ├── bof1.c │ │ └── makefile └── whitelist └── README.md /0ops_app/0ops_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xddaa/pin/HEAD/0ops_app/0ops_app.cpp -------------------------------------------------------------------------------- /0ops_app/flag: -------------------------------------------------------------------------------- 1 | KL$p -------------------------------------------------------------------------------- /0ops_app/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xddaa/pin/HEAD/0ops_app/makefile -------------------------------------------------------------------------------- /0ops_app/makefile.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xddaa/pin/HEAD/0ops_app/makefile.rules -------------------------------------------------------------------------------- /0ops_app/testcase/get_flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xddaa/pin/HEAD/0ops_app/testcase/get_flag -------------------------------------------------------------------------------- /0ops_app/testcase/print_flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xddaa/pin/HEAD/0ops_app/testcase/print_flag -------------------------------------------------------------------------------- /0ops_app/testcase/shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xddaa/pin/HEAD/0ops_app/testcase/shell -------------------------------------------------------------------------------- /0ops_app/testcase/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xddaa/pin/HEAD/0ops_app/testcase/vuln -------------------------------------------------------------------------------- /0ops_app/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xddaa/pin/HEAD/0ops_app/vuln.c -------------------------------------------------------------------------------- /CodeCoverage/codecoverage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xddaa/pin/HEAD/CodeCoverage/codecoverage.cpp -------------------------------------------------------------------------------- /CodeCoverage/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xddaa/pin/HEAD/CodeCoverage/makefile -------------------------------------------------------------------------------- /CodeCoverage/makefile.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xddaa/pin/HEAD/CodeCoverage/makefile.rules -------------------------------------------------------------------------------- /CodeCoverage/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xddaa/pin/HEAD/CodeCoverage/run.sh -------------------------------------------------------------------------------- /CodeCoverage/test/bof1/bof1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xddaa/pin/HEAD/CodeCoverage/test/bof1/bof1.c -------------------------------------------------------------------------------- /CodeCoverage/test/bof1/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xddaa/pin/HEAD/CodeCoverage/test/bof1/makefile -------------------------------------------------------------------------------- /CodeCoverage/whitelist: -------------------------------------------------------------------------------- 1 | /lib/i386-linux-gnu/libc.so.6 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xddaa/pin/HEAD/README.md --------------------------------------------------------------------------------