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
wslink-vm-analyzer — WslinkVMAnalyzer is a tool to facilitate analysis of code protected by a virtual machine featured in Wslink malware | Kitploit
Tools/GitHubGitHub/eset/wslink-vm-analyzer
Code AnalysisReverse EngineeringMalware AnalysisBinary Analysis
GitHubeset/wslink-vm-analyzer

wslink-vm-analyzer

WslinkVMAnalyzer is a tool to facilitate analysis of code protected by a virtual machine featured in Wslink malware

View Repository
4844 years 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

WslinkVMAnalyzer

WslinkVMAnalyzer is a tool primarily developed to facilitate analysis of Wslink, which is a unique loader running as a server and executing received modules in-memory. This tool uses Miasm, an open source framework that provides us with a symbolic execution engine.

The tool and structure of the virtual machine is described in our blogpost.

Install

root@kitploit:~
% pip3 install https://github.com/eset/wslink-vm-analyzer/archive/refs/heads/master.tar.gz

Example usage

In the examples directory, you will find a dump of the virtual machine and two Python scripts. The scripts output Graphviz DOT files (vma.dot) which can by converted to SVG or any other format supported by Graphviz.

root@kitploit:~
(./examples) % python3 VM1.py
(./examples) % dot -Tsvg vma.dot -o vma.svg
Download Tool