georgeto / VTIL-Core

Virtual-machine Translation Intermediate Language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

VTIL

travis-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 to be used for binary deobfuscation and devirtualization.

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 a stack, physical registers and non-SSA architecture 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 contrained to a specific file format.

2) What is this repostiory?

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

It is currently incomplete as 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.

About

Virtual-machine Translation Intermediate Language

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:C++ 99.0%Language:CMake 1.0%