No description
Find a file
2020-06-21 23:47:21 +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 Renamed some leftover files. 2020-06-20 10:56:42 +02:00
VTIL-Architecture Implemented a way to fix unknown access when rtracing is allowed. 2020-06-21 01:30:21 +02:00
VTIL-Common Modernize compiler flags 2020-06-21 23:47:21 +02:00
VTIL-Compiler Implemented a way to fix unknown access when rtracing is allowed. 2020-06-21 01:30:21 +02:00
VTIL-SymEx Major speedup by comparing UID by hash rather than value. 2020-06-21 05:05:10 +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 Modernize compiler flags 2020-06-21 23:47:21 +02:00
appveyor.yml Fix Travis and introduce AppVeyor 2020-05-28 23:29:10 +02:00
CMakeLists.txt Modernize compiler flags 2020-06-21 23:47:21 +02:00
LICENSE.md -- Completed converting into monorepo setup. 2020-05-02 09:35:56 +02:00
README.md Fixed Discord invite. 2020-06-21 20:10:21 +02:00
VTIL-Core.sln Renamed VTIL-Optimizer into VTIL-Compiler. 2020-06-20 10:54:22 +02:00

VTIL

travis-ci appveyor-ci license discord

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.