No description
Find a file
2020-08-29 10:10:25 +02:00
cmake Remove useless capstone + keystone targets 2020-07-03 23:46:19 +02: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 Fix batch translator for non-free variables, add util finally. 2020-08-24 20:49:53 +02:00
VTIL-Common Implemented visitor-pattern for PE32/PE64, reworked has_relocs. 2020-08-29 10:10:25 +02:00
VTIL-Compiler Removing some redundancies. 2020-08-28 07:11:08 +02:00
VTIL-SymEx Fixing std::thread based tasks, added speculative lock. 2020-08-25 23:37:13 +02:00
VTIL-Tests Fixing license. 2020-07-06 21:41:04 +02:00
.gitignore Added VTune folder to gitignore. 2020-08-24 20:50:01 +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 Make C++20 a public target requirement on VTIL-Common 2020-07-03 14:18:29 +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.