├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── Dockerfile.build ├── Makefile ├── README.md ├── demo ├── .gitignore ├── Makefile ├── demo.c ├── demo2.c └── demo3.c ├── harness ├── Makefile ├── harness └── harness.c └── src ├── analyzed_value.rs ├── lib.rs ├── main.rs ├── mandrake.rs ├── mandrake_output.rs ├── syscalls.csv ├── syscalls.rs └── visibility_configuration.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | testing 3 | /build 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CounterHack/mandrake/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CounterHack/mandrake/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CounterHack/mandrake/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CounterHack/mandrake/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CounterHack/mandrake/HEAD/Dockerfile.build -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CounterHack/mandrake/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CounterHack/mandrake/HEAD/README.md -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CounterHack/mandrake/HEAD/demo/.gitignore -------------------------------------------------------------------------------- /demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CounterHack/mandrake/HEAD/demo/Makefile -------------------------------------------------------------------------------- /demo/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CounterHack/mandrake/HEAD/demo/demo.c -------------------------------------------------------------------------------- /demo/demo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CounterHack/mandrake/HEAD/demo/demo2.c -------------------------------------------------------------------------------- /demo/demo3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CounterHack/mandrake/HEAD/demo/demo3.c -------------------------------------------------------------------------------- /harness/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CounterHack/mandrake/HEAD/harness/Makefile -------------------------------------------------------------------------------- /harness/harness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CounterHack/mandrake/HEAD/harness/harness -------------------------------------------------------------------------------- /harness/harness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CounterHack/mandrake/HEAD/harness/harness.c -------------------------------------------------------------------------------- /src/analyzed_value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CounterHack/mandrake/HEAD/src/analyzed_value.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CounterHack/mandrake/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CounterHack/mandrake/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/mandrake.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CounterHack/mandrake/HEAD/src/mandrake.rs -------------------------------------------------------------------------------- /src/mandrake_output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CounterHack/mandrake/HEAD/src/mandrake_output.rs -------------------------------------------------------------------------------- /src/syscalls.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CounterHack/mandrake/HEAD/src/syscalls.csv -------------------------------------------------------------------------------- /src/syscalls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CounterHack/mandrake/HEAD/src/syscalls.rs -------------------------------------------------------------------------------- /src/visibility_configuration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CounterHack/mandrake/HEAD/src/visibility_configuration.rs --------------------------------------------------------------------------------