├── .gitignore ├── Dockerfile ├── INSTALL.md ├── LICENSE ├── Makefile ├── README.md ├── env.init ├── install_pin.ps1 ├── install_pin.sh ├── src ├── Makefile ├── bdd_tag.cpp ├── bdd_tag.h ├── branch_pred.h ├── debug.h ├── def.h ├── ins_binary_op.cpp ├── ins_binary_op.h ├── ins_clear_op.cpp ├── ins_clear_op.h ├── ins_helper.h ├── ins_movsx_op.cpp ├── ins_movsx_op.h ├── ins_ternary_op.cpp ├── ins_ternary_op.h ├── ins_unitary_op.cpp ├── ins_unitary_op.h ├── ins_xchg_op.cpp ├── ins_xchg_op.h ├── ins_xfer_op.cpp ├── ins_xfer_op.h ├── libdft_api.cpp ├── libdft_api.h ├── libdft_core.cpp ├── libdft_core.h ├── makefile.rules ├── syscall_desc.cpp ├── syscall_desc.h ├── syscall_hook.cpp ├── syscall_hook.h ├── syscall_struct.h ├── tag_trait.cpp ├── tag_traits.h ├── tagmap.cpp └── tagmap.h └── tools ├── Makefile ├── cur_input ├── libdft-dta.cpp ├── libdft.cpp ├── makefile.rules ├── mini_test.cpp ├── nullpin.cpp └── track.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/Dockerfile -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/README.md -------------------------------------------------------------------------------- /env.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/env.init -------------------------------------------------------------------------------- /install_pin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/install_pin.ps1 -------------------------------------------------------------------------------- /install_pin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/install_pin.sh -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/bdd_tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/bdd_tag.cpp -------------------------------------------------------------------------------- /src/bdd_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/bdd_tag.h -------------------------------------------------------------------------------- /src/branch_pred.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/branch_pred.h -------------------------------------------------------------------------------- /src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/debug.h -------------------------------------------------------------------------------- /src/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/def.h -------------------------------------------------------------------------------- /src/ins_binary_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/ins_binary_op.cpp -------------------------------------------------------------------------------- /src/ins_binary_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/ins_binary_op.h -------------------------------------------------------------------------------- /src/ins_clear_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/ins_clear_op.cpp -------------------------------------------------------------------------------- /src/ins_clear_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/ins_clear_op.h -------------------------------------------------------------------------------- /src/ins_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/ins_helper.h -------------------------------------------------------------------------------- /src/ins_movsx_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/ins_movsx_op.cpp -------------------------------------------------------------------------------- /src/ins_movsx_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/ins_movsx_op.h -------------------------------------------------------------------------------- /src/ins_ternary_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/ins_ternary_op.cpp -------------------------------------------------------------------------------- /src/ins_ternary_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/ins_ternary_op.h -------------------------------------------------------------------------------- /src/ins_unitary_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/ins_unitary_op.cpp -------------------------------------------------------------------------------- /src/ins_unitary_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/ins_unitary_op.h -------------------------------------------------------------------------------- /src/ins_xchg_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/ins_xchg_op.cpp -------------------------------------------------------------------------------- /src/ins_xchg_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/ins_xchg_op.h -------------------------------------------------------------------------------- /src/ins_xfer_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/ins_xfer_op.cpp -------------------------------------------------------------------------------- /src/ins_xfer_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/ins_xfer_op.h -------------------------------------------------------------------------------- /src/libdft_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/libdft_api.cpp -------------------------------------------------------------------------------- /src/libdft_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/libdft_api.h -------------------------------------------------------------------------------- /src/libdft_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/libdft_core.cpp -------------------------------------------------------------------------------- /src/libdft_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/libdft_core.h -------------------------------------------------------------------------------- /src/makefile.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/makefile.rules -------------------------------------------------------------------------------- /src/syscall_desc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/syscall_desc.cpp -------------------------------------------------------------------------------- /src/syscall_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/syscall_desc.h -------------------------------------------------------------------------------- /src/syscall_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/syscall_hook.cpp -------------------------------------------------------------------------------- /src/syscall_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/syscall_hook.h -------------------------------------------------------------------------------- /src/syscall_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/syscall_struct.h -------------------------------------------------------------------------------- /src/tag_trait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/tag_trait.cpp -------------------------------------------------------------------------------- /src/tag_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/tag_traits.h -------------------------------------------------------------------------------- /src/tagmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/tagmap.cpp -------------------------------------------------------------------------------- /src/tagmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/src/tagmap.h -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/cur_input: -------------------------------------------------------------------------------- 1 | hello world 2 | 1234567890 3 | -------------------------------------------------------------------------------- /tools/libdft-dta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/tools/libdft-dta.cpp -------------------------------------------------------------------------------- /tools/libdft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/tools/libdft.cpp -------------------------------------------------------------------------------- /tools/makefile.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/tools/makefile.rules -------------------------------------------------------------------------------- /tools/mini_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/tools/mini_test.cpp -------------------------------------------------------------------------------- /tools/nullpin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/tools/nullpin.cpp -------------------------------------------------------------------------------- /tools/track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngoraFuzzer/libdft64/HEAD/tools/track.cpp --------------------------------------------------------------------------------