Generates deserializers for the VTIL file format using Kaitai.
Make sure your language is supported by checking out the langs/
folder. If it's there copy and paste all files in that subfolder into your project. For more information please refer to Kaitai's official documentation.
You can find an example that dumps all instructions from a VTIL file here. Here's a short outline of how to access the VTIL information:
from vtil import Vtil
vtil = Vtil.from_file("./patch/to/file.vtil")
entrypoint = vtil.entrypoint.entry_vip
print(f"===> Entrypoint: {entrypoint}")
You can build the source files by executing one of the scripts.
# Windows
.\compile.bat
# Any other OS
./compile
This will update all source files in the langs/
folder.