No description
Find a file
2020-06-13 08:11:27 +02:00
cmake Clean up CMake to combine flags into root Lists 2020-05-02 20:46:03 -04:00
Sample Routines Fixed $FLAGS.OF in sample complex routine. 2020-06-13 08:11:27 +02:00
VTIL Refactor CMake project to match Visual Studio project 2020-05-28 19:44:43 +02:00
VTIL-Architecture rtracer no longer returns null to user-side. 2020-06-13 06:19:51 +02:00
VTIL-Common Fixed major bug in recursive result, minor fixes to aux::is_used. 2020-06-13 04:29:05 +02:00
VTIL-Optimizer Fixed a bug with the register renaming pass. 2020-06-13 07:33:21 +02:00
VTIL-SymEx Packer should leave size as is. 2020-06-12 02:52:39 +02:00
VTIL-Tests Apparently it's bad practice to use variables in CMake 2020-05-30 02:56:36 +02:00
.gitignore Fix Travis and introduce AppVeyor 2020-05-28 23:29:10 +02:00
.travis.yml Fix Travis and introduce AppVeyor 2020-05-28 23:29:10 +02:00
appveyor.yml Fix Travis and introduce AppVeyor 2020-05-28 23:29:10 +02:00
CMakeLists.txt Add VTIL-Tests project 2020-05-28 19:48:01 +02:00
LICENSE.md -- Completed converting into monorepo setup. 2020-05-02 09:35:56 +02:00
README.md Updated README.md for to include AppVeyor. 2020-05-29 00:23:42 +02:00
VTIL-Core.sln Add VTIL-Tests project 2020-05-28 19:48:01 +02:00

VTIL

travis-ci appveyor-ci license

Virtual-machine Translation Intermediate Language

Introduction

1) What is VTIL?

VTIL Project, standing for Virtual-machine Translation Intermediate Language, is a set of tools designed around an optimizing compiler to be used for binary de-obfuscation and de-virtualization.

The main difference between VTIL and other optimizing compilers such as LLVM is that it has an extremely versatile IL that makes it trivial to lift from any architecture including stack machines. Since it is built for translation, VTIL does not abstract away the native ISA and keeps the concept of the stack, physical registers, and the non-SSA architecture of a general-purpose CPU as is. Native instructions can be emitted in the middle of the IL stream and the physical registers can be addressed from VTIL instructions freely.

VTIL also makes it trivial to emit code back into the native format at any virtual address requested without being constrained to a specific file format.

2) What is this repository?

This repository contains the core components of the VTIL Project used across the toolchain.

It is currently incomplete as the initial release is not done yet, and documentation and FAQ will be within this repository and the organization website once they're done.

Until the initial release, you can keep up to date with the VTIL project by checking my personal twitter account or the VTIL website vtil.org.