No description
Find a file
Can Bölük 9ebee8e890
Some checks failed
CMake / build (2, macos-14) (push) Has been cancelled
CMake / build (2, ubuntu-24.04) (push) Has been cancelled
CMake / build (4, windows-2022) (push) Has been cancelled
Update README to remove logo and Twitter link
Removed logo image and personal Twitter link from README.
2026-07-27 06:06:06 +02:00
.github/workflows add ci build parallelism & cross platform intrinsics 2026-04-01 17:46:21 +02:00
Dependencies possible fix tracer stack overflow vulnerabilities (#52 , #78 ), cap/keystone version bump, #79 and #81 2026-04-01 16:57:42 +02: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 Improve CMake and add instructions to README 2022-01-14 16:32:31 +01:00
VTIL-Architecture updated pe parsing, split operators, update docs 2026-04-05 00:02:58 +02:00
VTIL-Common temp: replace raw unreachable ub hints with own handler 2026-04-05 22:51:33 +02:00
VTIL-Compiler fix(optimizer): prevent unsafe thunk folding from deleting valid blocks ( #80 ) 2026-04-04 20:31:21 +02:00
VTIL-SymEx unique_ptr ownership, safer virtual interfaces, and pch/unity speedups and more 2026-04-04 20:13:26 +02:00
VTIL-Tests fix(optimizer): prevent unsafe thunk folding from deleting valid blocks ( #80 ) 2026-04-04 20:31:21 +02:00
.gitignore Switch to GitHub Actions 2022-01-10 22:08:42 +01:00
CMakeLists.txt unique_ptr ownership, safer virtual interfaces, and pch/unity speedups and more 2026-04-04 20:13:26 +02:00
LICENSE.md -- Completed converting into monorepo setup. 2020-05-02 09:35:56 +02:00
README.md Update README to remove logo and Twitter link 2026-07-27 06:06:06 +02: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.

Building (Windows)

cmake -B build

Then open build\VTIL-Core.sln. You can also open this folder in a CMake-compatible IDE (Visual Studio, CLion, Qt Creator, VS Code).

Building (Linux/Mac)

cmake -G Ninja -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build

Note: To build on Apple Silicon one needs to use -DCMAKE_OSX_ARCHITECTURES=x86_64.