├── .clang-format ├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ └── cmake.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── appveyor.yml ├── cmake ├── CPM.cmake ├── CPMLicenses.cmake ├── VTIL-Core.cmake ├── VTIL-NativeLifters.cmake ├── args.cmake └── asmjit.cmake ├── examples ├── hello.exe ├── hello_world.vtil └── test.vtil ├── include ├── pe_input.hpp └── vtil-utils.hpp └── src ├── commands ├── vtil-compile.cpp ├── vtil-dump.cpp ├── vtil-lift.cpp └── vtil-opt.cpp └── vtil-utils.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [mrexodia] 2 | -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cmake/CPM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/cmake/CPM.cmake -------------------------------------------------------------------------------- /cmake/CPMLicenses.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/cmake/CPMLicenses.cmake -------------------------------------------------------------------------------- /cmake/VTIL-Core.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/cmake/VTIL-Core.cmake -------------------------------------------------------------------------------- /cmake/VTIL-NativeLifters.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/cmake/VTIL-NativeLifters.cmake -------------------------------------------------------------------------------- /cmake/args.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/cmake/args.cmake -------------------------------------------------------------------------------- /cmake/asmjit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/cmake/asmjit.cmake -------------------------------------------------------------------------------- /examples/hello.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/examples/hello.exe -------------------------------------------------------------------------------- /examples/hello_world.vtil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/examples/hello_world.vtil -------------------------------------------------------------------------------- /examples/test.vtil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/examples/test.vtil -------------------------------------------------------------------------------- /include/pe_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/include/pe_input.hpp -------------------------------------------------------------------------------- /include/vtil-utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/include/vtil-utils.hpp -------------------------------------------------------------------------------- /src/commands/vtil-compile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/src/commands/vtil-compile.cpp -------------------------------------------------------------------------------- /src/commands/vtil-dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/src/commands/vtil-dump.cpp -------------------------------------------------------------------------------- /src/commands/vtil-lift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/src/commands/vtil-lift.cpp -------------------------------------------------------------------------------- /src/commands/vtil-opt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/src/commands/vtil-opt.cpp -------------------------------------------------------------------------------- /src/vtil-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtil-project/VTIL-Utils/HEAD/src/vtil-utils.cpp --------------------------------------------------------------------------------