├── .gitignore ├── COPYING ├── Makefile.in ├── README.md ├── VERSION ├── configure ├── configure.ac ├── demo ├── FF-gnupg-1.4.13.c ├── FR-1-file-access.c ├── FR-2-file-access.c ├── FR-flush.c ├── FR-function-call-nodelay.c ├── FR-function-call.c ├── FR-gnupg-1.4.13.c ├── FR-threshold.c ├── FR-trace.c ├── L1-capture.c ├── L1-rattle.c ├── L3-capture.c ├── L3-capturecount.c ├── L3-scan.c ├── Makefile.in ├── debuginfo.sh ├── disas.sh └── rungnupg.sh └── src ├── LocalMakefile ├── Makefile.in ├── config.h.in ├── ff.c ├── ff.h ├── fr.c ├── fr.h ├── l1.c ├── l1.h ├── l1i.c ├── l1i.h ├── l3.c ├── l3.h ├── low.h ├── pda.c ├── pda.h ├── symbol.c ├── symbol.h ├── symbol_bfd.c ├── symbol_mach.c ├── timestats.c ├── timestats.h ├── util.c ├── util.h ├── vlist.c └── vlist.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/Makefile.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/VERSION -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/configure.ac -------------------------------------------------------------------------------- /demo/FF-gnupg-1.4.13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/demo/FF-gnupg-1.4.13.c -------------------------------------------------------------------------------- /demo/FR-1-file-access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/demo/FR-1-file-access.c -------------------------------------------------------------------------------- /demo/FR-2-file-access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/demo/FR-2-file-access.c -------------------------------------------------------------------------------- /demo/FR-flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/demo/FR-flush.c -------------------------------------------------------------------------------- /demo/FR-function-call-nodelay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/demo/FR-function-call-nodelay.c -------------------------------------------------------------------------------- /demo/FR-function-call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/demo/FR-function-call.c -------------------------------------------------------------------------------- /demo/FR-gnupg-1.4.13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/demo/FR-gnupg-1.4.13.c -------------------------------------------------------------------------------- /demo/FR-threshold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/demo/FR-threshold.c -------------------------------------------------------------------------------- /demo/FR-trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/demo/FR-trace.c -------------------------------------------------------------------------------- /demo/L1-capture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/demo/L1-capture.c -------------------------------------------------------------------------------- /demo/L1-rattle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/demo/L1-rattle.c -------------------------------------------------------------------------------- /demo/L3-capture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/demo/L3-capture.c -------------------------------------------------------------------------------- /demo/L3-capturecount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/demo/L3-capturecount.c -------------------------------------------------------------------------------- /demo/L3-scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/demo/L3-scan.c -------------------------------------------------------------------------------- /demo/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/demo/Makefile.in -------------------------------------------------------------------------------- /demo/debuginfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/demo/debuginfo.sh -------------------------------------------------------------------------------- /demo/disas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/demo/disas.sh -------------------------------------------------------------------------------- /demo/rungnupg.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | while true; do ./gpg-1.4.13 --yes -b echo.c; done 4 | -------------------------------------------------------------------------------- /src/LocalMakefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/ff.c -------------------------------------------------------------------------------- /src/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/ff.h -------------------------------------------------------------------------------- /src/fr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/fr.c -------------------------------------------------------------------------------- /src/fr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/fr.h -------------------------------------------------------------------------------- /src/l1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/l1.c -------------------------------------------------------------------------------- /src/l1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/l1.h -------------------------------------------------------------------------------- /src/l1i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/l1i.c -------------------------------------------------------------------------------- /src/l1i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/l1i.h -------------------------------------------------------------------------------- /src/l3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/l3.c -------------------------------------------------------------------------------- /src/l3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/l3.h -------------------------------------------------------------------------------- /src/low.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/low.h -------------------------------------------------------------------------------- /src/pda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/pda.c -------------------------------------------------------------------------------- /src/pda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/pda.h -------------------------------------------------------------------------------- /src/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/symbol.c -------------------------------------------------------------------------------- /src/symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/symbol.h -------------------------------------------------------------------------------- /src/symbol_bfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/symbol_bfd.c -------------------------------------------------------------------------------- /src/symbol_mach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/symbol_mach.c -------------------------------------------------------------------------------- /src/timestats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/timestats.c -------------------------------------------------------------------------------- /src/timestats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/timestats.h -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/util.h -------------------------------------------------------------------------------- /src/vlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/vlist.c -------------------------------------------------------------------------------- /src/vlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-and-Responsible-AI-Lab/Mastik/HEAD/src/vlist.h --------------------------------------------------------------------------------