IDA-ZVM-Disassembler

May 13, 2026 · View on GitHub

IDA Pro processor module and loader for the Zeus VM custom bytecode instruction set, ported from the OALabs Binary Ninja plugin.

Installation

Copy the two files into your IDA Pro installation:

  • zvm_ida_loader.py<IDA_DIR>/loaders/
  • zvm_ida_proc.py<IDA_DIR>/procs/

Then open any .zvm bytecode file — IDA will auto-detect the format and use the Zeus VM processor.

You can try the disassembly on this sample f792997cb36a477fa55102ad6b680c97e3517b2e63c83c802bf8d57ae9ed525e. Or on the dumped shellcode in the repository !

Features

  • 69 instructions fully decoded (arithmetic, bitwise, memory, control flow, RC4, shuffle)
  • XOR key chain decryption handled transparently during analysis
  • Cross-references for loop branch targets
  • Auto-comments describing instruction semantics
  • Register display with size suffixes (.b, .w)

References

OALabs - Zeus VM

IDA Pro Plugin Development