Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
YaraVM — This repository contains an IDA processor for loading and disassembling compiled yara rules. | Kitploit
Tools/GitHubGitHub/milankovo/yaravm
Static AnalysisReverse EngineeringDebuggersMalware AnalysisBinary Analysis
GitHubmilankovo/yaravm

YaraVM

This repository contains an IDA processor for loading and disassembling compiled yara rules.

View Repository
5361 year agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

YaraVM

Yara is a tool for matching patterns in files, commonly used for malware analysis. Yara rules can be compiled into a binary format that can later be loaded and executed. This repository contains a processor module and a loader for IDA Pro, enabling you to load and analyze compiled Yara rules.

Installation

To install the YaraVM into IDA, follow these steps:

  1. Copy the yara_loader.py file to the IDA loaders folder.
  2. Copy the yara_proc.py file to the IDA proc folder.
  3. Copy the libyara.til file to the IDA til folder.
  4. Now you can open the compiled yara rules in IDA.

For convenience, you can use the following commands to create the necessary symlinks:

root@kitploit:~
mkdir -p ~/.idapro/loaders
mkdir -p ~/.idapro/procs
mkdir -p ~/.idapro/til

ln -s $PWD/src/yara_loader.py ~/.idapro/loaders/yara_loader.py
ln -s $PWD/src/yara_proc.py ~/.idapro/procs/yara_proc.py
ln -s $PWD/src/libyara.til ~/.idapro/til/libyara.til

Demonstration

You can load the file test.yar.bin into IDA Pro to see the Yara bytecode and the regex bytecode.

loader in action yara bytecode regex bytecode

Download Tool