{"id":13480879,"url":"https://github.com/vtil-project/VTIL-Core","last_synced_at":"2025-03-27T11:31:05.601Z","repository":{"id":39792706,"uuid":"252052557","full_name":"vtil-project/VTIL-Core","owner":"vtil-project","description":"Virtual-machine Translation Intermediate Language","archived":false,"fork":false,"pushed_at":"2023-11-05T23:16:37.000Z","size":4025,"stargazers_count":1340,"open_issues_count":10,"forks_count":165,"subscribers_count":58,"default_branch":"master","last_synced_at":"2024-10-30T14:42:40.802Z","etag":null,"topics":["compiler","deobfuscation","devirtualizer","intermediate-language","optimizer","optimizing-compilers","virtual-machine-translation"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vtil-project.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-04-01T02:36:54.000Z","updated_at":"2024-10-29T08:29:57.000Z","dependencies_parsed_at":"2022-08-20T10:30:27.870Z","dependency_job_id":"d5dc0bab-976d-4d6d-b5bb-ff7b27e6dd8c","html_url":"https://github.com/vtil-project/VTIL-Core","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vtil-project%2FVTIL-Core","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vtil-project%2FVTIL-Core/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vtil-project%2FVTIL-Core/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vtil-project%2FVTIL-Core/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vtil-project","download_url":"https://codeload.github.com/vtil-project/VTIL-Core/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245836040,"owners_count":20680309,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["compiler","deobfuscation","devirtualizer","intermediate-language","optimizer","optimizing-compilers","virtual-machine-translation"],"created_at":"2024-07-31T17:00:46.192Z","updated_at":"2025-03-27T11:31:05.113Z","avatar_url":"https://github.com/vtil-project.png","language":"C++","funding_links":[],"categories":["C++","Project"],"sub_categories":["Program Analysis"],"readme":"\u003cp align=\"center\"\u003e\n\n  \u003ca href=\"https://www.vtil.org/\"\u003e\n    \u003cimg width=\"256\" heigth=\"256\" src=\"https://vtil.org/logo.png\"\u003e\n  \u003c/a\u003e  \n\n  \u003ch1 align=\"center\"\u003eVTIL\u003c/h1\u003e\n\n  \u003cp align=\"center\"\u003e\n    \u003ca href=\"https://github.com/vtil-project/VTIL-Core/actions/workflows/build.yml\"\u003e\n      \u003cimg alt=\"github-actions\" src=\"https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2Fvtil-project%2FVTIL-Core%2Fbadge\u0026style=flat-square\"/\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://github.com/vtil-project/vtil-core/blob/master/LICENSE.md\"\u003e\n      \u003cimg alt=\"license\" src=\"https://img.shields.io/github/license/vtil-project/vtil-core.svg?style=flat-square\"/\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://discord.gg/VdMdkze\"\u003e\n      \u003cimg alt=\"discord\" src=\"https://img.shields.io/discord/724300992023232533?label=chat\u0026logo=Discord\u0026style=flat-square\"\u003e\n    \u003c/a\u003e\n  \u003c/p\u003e\n\n  \u003cp align=\"center\"\u003e\n    Virtual-machine Translation Intermediate Language\n  \u003c/p\u003e\n\u003c/p\u003e\n\n# Introduction\n\n## 1) What is VTIL?\n\nVTIL 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.\n\nThe 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.\n\nVTIL 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.\n\n## 2) What is this repository?\n\nThis repository contains the core components of the VTIL Project used across the toolchain.\n\nIt 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.\n\nUntil the initial release, you can keep up to date with the VTIL project by checking my [personal twitter account](https://twitter.com/_can1357) or the VTIL website [vtil.org](https://vtil.org/).\n\n## Building (Windows)\n\n```\ncmake -B build\n```\n\nThen open `build\\VTIL-Core.sln`. You can also open this folder in a CMake-compatible IDE (Visual Studio, CLion, Qt Creator, VS Code).\n\n## Building (Linux/Mac)\n\n```\ncmake -G Ninja -B build -DCMAKE_BUILD_TYPE=Release\ncmake --build build\n```\n\n**Note:**\nTo build on Apple Silicon one needs to use `-DCMAKE_OSX_ARCHITECTURES=x86_64`.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvtil-project%2FVTIL-Core","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvtil-project%2FVTIL-Core","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvtil-project%2FVTIL-Core/lists"}