Volatility 3 Memory Forensics

by bornpresident

13 stars
437 downloads
Not rated
GitHub

About

Integrates the Volatility 3 memory forensics framework with Claude and other MCP-compatible LLMs.

Details

Author
bornpresident
Repository
bornpresident/Volatility-MCP-Server
GitHub stars
13
Downloads
437
License
MIT License
Categories
AI, Project Management, Other, Developer Tools, Security
Tags
#integration

- Natural Language Memory Forensics: Ask Claude to analyze memory dumps using natural language
- Process Analysis: Examine running processes, parent-child relationships, and hidden processes
- Network Forensics: Identify network connections in memory dumps
- Malware Detection: Find potential code injection and other malicious artifacts
- DLL Analysis: Examine loaded DLLs and modules
- File Objects: Scan for file objects in memory
- Custom Plugins: Run any Volatility plugin with custom arguments
- Memory Dump Discovery: Automatically find memory dumps in a directory

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Volatility 3 Memory Forensics
    Command (node, npx, python, etc.) python
    Arguments
    • Argument 1 /path/to/volatility_mcp_server.py
    Environment
    • PYTHONPATH /path/to/volatility3

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

After setup, you can simply ask Claude natural language questions about your memory dumps:

- "List all processes in the memory dump at C:\path\to\dump.vmem"
- "Show me the network connections in C:\path\to\dump.vmem"
- "Run malfind to check for code injection in the memory dump"
- "What DLLs are loaded in process ID 4328?"
- "Check for hidden processes in C:\path\to\dump.vmem"

list_available_plugins

Shows all Volatility plugins you can use

get_image_info

Provides information about a memory dump file

run_pstree

Shows the process hierarchy

run_pslist

Lists processes from the process list

run_psscan

Scans for processes including ones that might be hidden

run_netscan

Shows network connections in the memory dump

run_malfind

Detects potential code injection

run_cmdline

Shows command line arguments for processes

run_dlllist

Lists loaded DLLs for processes

run_handles

Shows file handles and other system handles

run_filescan

Scans for file objects in memory

run_memmap

Shows the memory map for a specific process

run_custom_plugin

Run any Volatility plugin with custom arguments

list_memory_dumps

Find memory dumps in a directory

The server exposes the following Volatility plugins as MCP tools:

1. list_available_plugins - Shows all Volatility plugins you can use
2. get_image_info - Provides information about a memory dump file
3. run_pstree - Shows the process hierarchy
4. run_pslist - Lists processes from the process list
5. run_psscan - Scans for processes including ones that might be hidden
6. run_netscan - Shows network connections in the memory dump
7. run_malfind - Detects potential code injection
8. run_cmdline - Shows command line arguments for processes
9. run_dlllist - Lists loaded DLLs for processes
10. run_handles - Shows file handles and other system handles
11. run_filescan - Scans for file objects in memory
12. run_memmap - Shows the memory map for a specific process
13. run_custom_plugin - Run any Volatility plugin with custom arguments
14. list_memory_dumps - Find memory dumps in a directory

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "volatility 3 memory forensics": {
            "env": {
                "PYTHONPATH": "/path/to/volatility3"
            },
            "args": [
                "/path/to/volatility_mcp_server.py"
            ],
            "command": "python"
        }
    }
}

Linux

{
    "env": {
        "PYTHONPATH": "/path/to/volatility3"
    },
    "args": [
        "/path/to/volatility_mcp_server.py"
    ],
    "command": "python"
}

Macos

{
    "env": {
        "PYTHONPATH": "/path/to/volatility3"
    },
    "args": [
        "/path/to/volatility_mcp_server.py"
    ],
    "command": "python"
}

Windows

{
    "env": {
        "PYTHONPATH": "/path/to/volatility3"
    },
    "args": [
        "/path/to/volatility_mcp_server.py"
    ],
    "command": "python"
}

An MCP server for memory forensics using the Volatility 3 framework.

A Model Context Protocol (MCP) server that integrates Volatility 3 memory forensics framework with Claude and other MCP-compatible LLMs.

In India, digital forensic investigators face a massive backlog of cases due to the country's large population and rising cybercrime rates. This tool helps address this challenge by:

- Allowing investigators to analyze memory dumps using simple natural language instead of complex commands
- Reducing the technical expertise needed to perform memory forensics
- Accelerating the analysis process through automation
- Helping clear case backlogs and deliver faster results to the judicial system

By making memory forensics more accessible, this tool can significantly reduce the burden on forensic experts and improve cybersecurity response across India.

This project bridges the powerful memory forensics capabilities of the Volatility 3 Framework with Large Language Models (LLMs) through the Model Context Protocol (MCP). It allows you to perform memory forensics analysis using natural language by exposing Volatility plugins as MCP tools that can be invoked directly by Claude or other MCP-compatible LLMs.

- Natural Language Memory Forensics: Ask Claude to analyze memory dumps using natural language
- Process Analysis: Examine running processes, parent-child relationships, and hidden processes
- Network Forensics: Identify network connections in memory dumps
- Malware Detection: Find potential code injection and other malicious artifacts
- DLL Analysis: Examine loaded DLLs and modules
- File Objects: Scan for file objects in memory
- Custom Plugins: Run any Volatility plugin with custom arguments
- Memory Dump Discovery: Automatically find memory dumps in a directory

- Python 3.10 or higher
- Volatility 3 Framework
- Claude Desktop or other MCP-compatible client
- MCP Python SDK (mcppackage)

git clone https://github.com/yourusername/volatility-mcp-server.git

Configure the Volatility path in the script:

- Openvolatility_mcp_server.pyand update theVOLATILITY_DIRvariable to point to your Volatility 3 installation path.

- Open your Claude Desktop configuration file located at:

- Windows:%APPDATA%\Claude\claude_desktop_config.json
- macOS:~/Library/Application Support/Claude/claude_desktop_config.json

{ "mcpServers": { "volatility": { "command": "python", "args": [ "/path/to/volatility_mcp_server.py" ], "env": { "PYTHONPATH": "/path/to/volatility3" } } } }

- Replace/path/to/with the actual path to your files.

Restart Claude Desktop to apply the changes.

After setup, you can simply ask Claude natural language questions about your memory dumps:

- "List all processes in the memory dump at C:\path\to\dump.vmem"
- "Show me the network connections in C:\path\to\dump.vmem"
- "Run malfind to check for code injection in the memory dump"
- "What DLLs are loaded in process ID 4328?"
- "Check for hidden processes in C:\path\to\dump.vmem"

The server exposes the following Volatility plugins as MCP tools:
- list_available_plugins- Shows all Volatility plugins you can use
- get_image_info- Provides information about a memory dump file
- run_pstree- Shows the process hierarchy
- run_pslist- Lists processes from the process list
- run_psscan- Scans for processes including ones that might be hidden
- run_netscan- Shows network connections in the memory dump
- run_malfind- Detects potential code injection
- run_cmdline- Shows command line arguments for processes
- run_dlllist- Lists loaded DLLs for processes
- run_handles- Shows file handles and other system handles
- run_filescan- Scans for file objects in memory
- run_memmap- Shows the memory map for a specific process
- run_custom_plugin- Run any Volatility plugin with custom arguments
- list_memory_dumps- Find memory dumps in a directory

This MCP server enables a streamlined memory forensics workflow:

- "Show me the process tree in memory.vmem"
- "List all network connections in memory.vmem"

- "What command line was used to start process 1234?"
- "Show me all the DLLs loaded by process 1234"
- "What file handles are open in process 1234?"

- "Run malfind on memory.vmem to check for code injection"
- "Show me processes with unusual parent-child relationships"
- "Find hidden processes in memory.vmem"

- Make sure all paths are absolute and use double backslashes in Windows paths
- Check that the memory dump file exists and is readable

- Run Claude Desktop as Administrator
- Check that Python and the Volatility directory have proper permissions

- Make sure Volatility 3 works correctly on its own
- Try running the same command directly in your command line

- Check Claude Desktop logs for MCP errors
- Make sure the MCP Python package is installed correctly
- Adding more Volatility plugins
- Creating custom analysis workflows
- Integrating with other forensic tools
- Adding report generation capabilities

This is a web browser that enables your coding agent, such as Claude Code, to visit websites on your behalf and assist you in identifying bugs or creating UI test cases.

Performs data enrichment on observables using third-party services via the security-cli Python package.

Open-source, self-hostable MCP server for WhisperGraph — a graph of 7.39B nodes / 39B edges mapping DNS, BGP, GeoIP, WHOIS, and threat intelligence. Six read-only tools (Cypher query + schema introspection + threat assessment), six resources, eight investigation prompts. stdio and Streamable HTTP transports.

Extracts Indicators of Compromise (IoCs) from text and checks their reputation using multiple threat intelligence services.

MCP-native OSINT framework for AI agents. Exposes 9 intelligence tools (email enumeration, username search, breach check, WHOIS, IP intel, subdomain enum, dorks, paste search, phone intel) via Model Context Protocol. Also works as a standalone Python CLI.

Real-time OSINT intelligence platform for global security monitoring.

Paid remote MCP for agent data-access boundary reviews, permission scope evidence, sensitive data notes, and governance receipts.

EXIF for AI. AKF embeds trust scores, source provenance, and compliance metadata into every file your AI touches — DOCX, PDF, images, code, and 20+ formats. 9 MCP tools: stamp, inspect, trust, audit, scan, embed, extract, detect. Audit against EU AI Act, SOX, HIPAA, NIST in one command.

Discover mobile app attack surfaces via BeVigil OSINT — hosts, subdomains, URLs, and more.

Interact with Binalyze AIR's digital forensics and incident response capabilities using natural language.

Manage threat models, components, and security data on the Devici platform.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.