No description
Find a file
Duncan Ogilvie cda7694f91
Merge pull request #62 from wallds/patch-1
Fix test_access
2022-01-14 13:37:39 +01:00
.github/workflows Switch to GitHub Actions 2022-01-10 22:08:42 +01:00
Dependencies Fix issue with capstone dependency 2020-11-16 03:55:30 +01:00
Docs Fix typo 2021-08-03 20:08:15 +08:00
Sample Routines Fixed $FLAGS.OF in sample complex routine. 2020-06-13 08:11:27 +02:00
VTIL Fix build 2021-08-25 22:31:22 +08:00
VTIL-Architecture Merge pull request #62 from wallds/patch-1 2022-01-14 13:37:39 +01:00
VTIL-Common Fix compilation on GCC 11.1 2022-01-10 22:08:33 +01:00
VTIL-Compiler Change the stack_pointer expression to relative position in is_used, so when detecting whether the stack accessing can be discarded (auxiliaries.cpp#L159) can get right result when meet muti-block 2022-01-10 22:39:59 +01:00
VTIL-SymEx Fix https://github.com/vtil-project/VTIL-Core/issues/61 2022-01-14 12:48:12 +01:00
VTIL-Tests Fix https://github.com/vtil-project/VTIL-Core/issues/61 2022-01-14 12:48:12 +01:00
.gitignore Switch to GitHub Actions 2022-01-10 22:08:42 +01:00
CMakeLists.txt Switch to GitHub Actions 2022-01-10 22:08:42 +01:00
LICENSE.md -- Completed converting into monorepo setup. 2020-05-02 09:35:56 +02:00
README.md Switch to GitHub Actions 2022-01-10 22:08:42 +01:00
VTIL-Core.sln Add build docs for Visual Studio 2021-08-02 23:41:48 +08:00

VTIL

github-actions 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.