Skip to main content

Multi-language security scanner with 46+ specialized analyzers for all platforms

Project description

๐Ÿ MEDUSA v2025.7 - Multi-Language Security Scanner

PyPI Downloads Python License Windows macOS Linux

Universal security scanner with 48+ specialized analyzers for all languages and platforms. ๐Ÿค– NEW: Industry-leading AI Agent Security with 50+ detection rules for the agentic era. One look from Medusa stops vulnerabilities dead.


๐ŸŽฏ What is MEDUSA?

MEDUSA is a comprehensive Static Application Security Testing (SAST) tool that scans your codebase for security vulnerabilities, code quality issues, and best practice violations across 46+ different languages and file types.

โœจ Key Features

  • ๐Ÿ” 48+ Specialized Scanners - Most comprehensive coverage available with intelligent selection
  • ๐Ÿค– AI Agent Security - 50+ rules for MCP, RAG, prompt injection, tool poisoning & more
  • โšก Parallel Processing - Multi-core scanning (10-40ร— faster than sequential)
  • ๐ŸŽจ Beautiful CLI - Rich terminal output with progress bars
  • ๐Ÿง  IDE Integration - Claude Code, Cursor, VS Code, Gemini CLI support
  • ๐Ÿ“ฆ Auto-Installer - One-command installation of all security tools (Windows, macOS, Linux)
  • ๐Ÿ”„ Smart Caching - Skip unchanged files for lightning-fast rescans
  • โš™๏ธ Configurable - .medusa.yml for project-specific settings
  • ๐ŸŒ Cross-Platform - Native Windows, macOS, and Linux support
  • ๐Ÿ“Š Multiple Reports - JSON, HTML, Markdown exports for any workflow
  • ๐ŸŽฏ Zero Config - Works out of the box with sensible defaults

๐Ÿš€ Quick Start

Installation

Windows (Recommended - Virtual Environment):

# Create and activate virtual environment (security best practice)
py -m venv medusa-env
medusa-env\Scripts\activate

# Install MEDUSA
pip install medusa-security

# Verify installation
medusa --version

Windows (System-wide - Not Recommended):

# Install MEDUSA system-wide (not recommended)
py -m pip install medusa-security --no-warn-script-location

# Verify installation
py -m medusa --version

Note for Windows users: Virtual environments provide better isolation and avoid PATH warnings. If using system-wide install, use py -m medusa for all commands.

macOS/Linux (Recommended - Virtual Environment):

# Create and activate virtual environment (security best practice)
python3 -m venv medusa-env
source medusa-env/bin/activate

# Install MEDUSA
pip install medusa-security

# Verify installation
medusa --version

macOS/Linux (System-wide - Not Recommended):

# Only use if you understand the implications
pip install medusa-security --user

# Verify installation
medusa --version

Install from source (all platforms):

git clone https://github.com/Pantheon-Security/medusa.git
cd medusa

# Use virtual environment (recommended)
python3 -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate

pip install -e .

Platform-Specific Notes:

  • Windows: Use py -m medusa instead of medusa if the command is not found
  • macOS: If medusa command is not found, run python3 -m medusa setup_path or use python3 -m medusa
  • Linux: Should work out of the box with medusa command

โœ… Windows Support: MEDUSA now has full native Windows support with automatic tool installation via winget, chocolatey, and npm!

5-Minute Setup

Windows:

# 1. Initialize in your project
cd your-project
py -m medusa init

# 2. Install security tools (auto-detected for your platform)
py -m medusa install --all

# 3. Run your first scan
py -m medusa scan .

macOS/Linux:

# 1. Initialize in your project
cd your-project
medusa init

# 2. Install security tools (auto-detected for your platform)
medusa install --all

# 3. Run your first scan
medusa scan .

Example Output

๐Ÿ MEDUSA v2025.1.9 - Security Guardian

๐ŸŽฏ Target: .
๐Ÿ”ง Mode: Full

๐Ÿ“ Found 145 scannable files

๐Ÿ“Š Scanning 145 files with 6 workers...
โœ… Scanned 145 files

============================================================
๐ŸŽฏ PARALLEL SCAN COMPLETE
============================================================
๐Ÿ“‚ Files scanned: 145
โšก Files cached: 0
๐Ÿ” Issues found: 114
โฑ๏ธ  Total time: 47.28s
๐Ÿ“ˆ Cache hit rate: 0.0%
๐Ÿ”ง Scanners used: bandit, eslint, shellcheck, yamllint
============================================================

๐Ÿ“Š Reports generated:
   JSON       โ†’ .medusa/reports/medusa-scan-20250119-083045.json
   HTML       โ†’ .medusa/reports/medusa-scan-20250119-083045.html
   Markdown   โ†’ .medusa/reports/medusa-scan-20250119-083045.md

โœ… Scan complete!

๐Ÿ“Š Report Formats

MEDUSA generates beautiful reports in multiple formats:

JSON - Machine-readable for CI/CD integration

medusa scan . --format json

HTML - Stunning glassmorphism UI with interactive charts

medusa scan . --format html

Markdown - Documentation-friendly for GitHub/wikis

medusa scan . --format markdown

All Formats - Generate everything at once

medusa scan . --format all

๐Ÿ“š Language Support

MEDUSA supports 42 different scanner types covering all major programming languages and file formats:

Backend Languages (9)

Language Scanner Extensions
Python Bandit .py
JavaScript/TypeScript ESLint .js, .jsx, .ts, .tsx
Go golangci-lint .go
Ruby RuboCop .rb, .rake, .gemspec
PHP PHPStan .php
Rust Clippy .rs
Java Checkstyle .java
C/C++ cppcheck .c, .cpp, .cc, .cxx, .h, .hpp
C# Roslynator .cs

JVM Languages (3)

Language Scanner Extensions
Kotlin ktlint .kt, .kts
Scala Scalastyle .scala
Groovy CodeNarc .groovy, .gradle

Functional Languages (5)

Language Scanner Extensions
Haskell HLint .hs, .lhs
Elixir Credo .ex, .exs
Erlang Elvis .erl, .hrl
F# FSharpLint .fs, .fsx
Clojure clj-kondo .clj, .cljs, .cljc

Mobile Development (2)

Language Scanner Extensions
Swift SwiftLint .swift
Objective-C OCLint .m, .mm

Frontend & Styling (3)

Language Scanner Extensions
CSS/SCSS/Sass/Less Stylelint .css, .scss, .sass, .less
HTML HTMLHint .html, .htm
Vue.js ESLint .vue

Infrastructure as Code (4)

Language Scanner Extensions
Terraform tflint .tf, .tfvars
Ansible ansible-lint .yml (playbooks)
Kubernetes kubeval .yml, .yaml (manifests)
CloudFormation cfn-lint .yml, .yaml, .json (templates)

Configuration Files (5)

Language Scanner Extensions
YAML yamllint .yml, .yaml
JSON built-in .json
TOML taplo .toml
XML xmllint .xml
Protobuf buf lint .proto

Shell & Scripts (4)

Language Scanner Extensions
Bash/Shell ShellCheck .sh, .bash
PowerShell PSScriptAnalyzer .ps1, .psm1
Lua luacheck .lua
Perl perlcritic .pl, .pm

Documentation (2)

Language Scanner Extensions
Markdown markdownlint .md
reStructuredText rst-lint .rst

Other Languages (5)

Language Scanner Extensions
SQL SQLFluff .sql
R lintr .r, .R
Dart dart analyze .dart
Solidity solhint .sol
Docker hadolint Dockerfile*

Total: 42 scanner types covering 100+ file extensions


๐Ÿค– AI Agent Security (v2025.7)

MEDUSA provides industry-leading AI security scanning with 16 specialized scanners and 150+ detection rules for the agentic AI era. Updated for OWASP Top 10 for LLM Applications 2025 and includes detection for CVE-2025-6514 (mcp-remote RCE).

Full AI Security Documentation

AI Security Scanners

Scanner Rules Detects
OWASPLLMScanner LLM01-10 OWASP Top 10 2025: Prompt injection, system prompt leakage, unbounded consumption
MCPServerScanner MCP101-118 Tool poisoning, CVE-2025-6514, confused deputy, command injection
MCPConfigScanner MCP001-013 Secrets, dangerous paths, HTTP without TLS, untrusted sources
AIContextScanner AIC001-030 Prompt injection, memory manipulation, HITL bypass
RAGSecurityScanner RAG001-010 Vector injection, document poisoning, tenant isolation
VectorDBScanner VD001-010 Unencrypted storage, PII in embeddings, exposed endpoints
LLMOpsScanner LO001-010 Insecure model loading, checkpoint exposure, drift detection
+ 9 more 60+ rules Multi-agent, planning, reflection, A2A, model attacks

AI Attack Coverage

Context & Input Attacks

  • Prompt injection patterns
  • Role/persona manipulation
  • Hidden instructions
  • Obfuscation tricks

Memory & State Attacks

  • Memory poisoning
  • Context manipulation
  • Checkpoint tampering
  • Cross-session exposure

Tool & Action Attacks

  • Tool poisoning (CVE-2025-6514)
  • Command injection
  • Tool name spoofing
  • Confused deputy patterns

Workflow & Routing Attacks

  • Router manipulation
  • Agent impersonation
  • Workflow hijacking
  • Delegation abuse

RAG & Knowledge Attacks

  • Knowledge base poisoning
  • Embedding pipeline attacks
  • Source confusion
  • Retrieval manipulation

Advanced Attacks

  • HITL bypass techniques
  • Semantic manipulation
  • Evaluation poisoning
  • Training data attacks

Supported AI Files

.cursorrules          # Cursor AI instructions
CLAUDE.md             # Claude Code context
.claude/              # Claude configuration directory
copilot-instructions.md  # GitHub Copilot
AGENTS.md             # Multi-agent definitions
mcp.json / mcp-config.json  # MCP server configs
*.mcp.ts / *.mcp.py   # MCP server code
rag.json / knowledge.json   # RAG configurations
memory.json           # Agent memory configs

Quick AI Security Scan

# Scan AI configuration files
medusa scan . --ai-only

# Example output:
# ๐Ÿ” AI Security Scan Results
# โ”œโ”€โ”€ .cursorrules: 3 issues (1 CRITICAL, 2 HIGH)
# โ”‚   โ””โ”€โ”€ AIC001: Prompt injection - ignore previous instructions (line 15)
# โ”‚   โ””โ”€โ”€ AIC011: Tool shadowing - override default tools (line 23)
# โ”œโ”€โ”€ mcp-config.json: 2 issues (2 HIGH)
# โ”‚   โ””โ”€โ”€ MCP003: Dangerous path - home directory access (line 8)
# โ””โ”€โ”€ rag_config.json: 1 issue (1 CRITICAL)
#     โ””โ”€โ”€ AIR010: Knowledge base injection pattern detected (line 45)

๐ŸŽฎ Usage

Basic Commands

# Initialize configuration
medusa init

# Scan current directory
medusa scan .

# Scan specific directory
medusa scan /path/to/project

# Quick scan (changed files only)
medusa scan . --quick

# Force full scan (ignore cache)
medusa scan . --force

# Use specific number of workers
medusa scan . --workers 4

# Fail on HIGH severity or above
medusa scan . --fail-on high

# Custom output directory
medusa scan . -o /tmp/reports

Install Commands

# Check which tools are installed
medusa install --check

# Install all missing tools (interactive)
medusa install --all

# Install specific tool
medusa install bandit

# Auto-yes to all prompts (non-interactive)
medusa install --all --yes

# Auto-yes to first prompt, then auto-yes all remaining
# When prompted: type 'a' for auto-yes-all
medusa install --all
Install all 39 missing tools? [Y/n/a]: a

# Show detailed installation output
medusa install --all --debug

# Use latest versions (bypass version pinning)
medusa install --all --use-latest

Init Commands

# Interactive initialization wizard
medusa init

# Initialize with specific IDE
medusa init --ide claude-code

# Initialize with multiple IDEs
medusa init --ide claude-code --ide gemini-cli --ide cursor

# Initialize with all supported IDEs
medusa init --ide all

# Force overwrite existing config
medusa init --force

# Initialize and install tools
medusa init --install

Additional Commands

# Uninstall specific tool
medusa uninstall bandit

# Uninstall all MEDUSA tools
medusa uninstall --all --yes

# Check for updates
medusa version --check-updates

# Show current configuration
medusa config

# Override scanner for specific file
medusa override path/to/file.yaml YAMLScanner

# List available scanners
medusa override --list

# Show current overrides
medusa override --show

# Remove override
medusa override path/to/file.yaml --remove

Scan Options Reference

Option Description
TARGET Directory or file to scan (default: .)
-w, --workers N Number of parallel workers (default: auto-detect)
--quick Quick scan (changed files only, requires git)
--force Force full scan (ignore cache)
--no-cache Disable result caching
--fail-on LEVEL Exit with error on severity: critical, high, medium, low
-o, --output PATH Custom output directory for reports
--format FORMAT Output format: json, html, sarif, junit, text (can specify multiple)
--no-report Skip generating HTML report
--install-mode MODE Tool installation: batch, progressive, never
--auto-install Automatically install missing tools without prompting
--no-install Never attempt to install missing tools

Install Options Reference

Option Description
TOOL Specific tool to install (e.g., bandit, eslint)
--check Check which tools are installed
--all Install all missing tools
-y, --yes Skip all confirmation prompts (auto-yes)
--debug Show detailed debug output
--use-latest Install latest versions instead of pinned versions

Interactive Prompts:

  • [Y/n/a] - Type Y for yes, n for no, a for auto-yes-all remaining prompts

Windows Auto-Installation

โœ… Fully Supported! MEDUSA automatically installs tools on Windows using winget/Chocolatey.

# One-command installation (auto-installs everything)
medusa install --all

# When prompted, type 'a' for auto-yes-all:
Install all 39 missing tools? [Y/n/a]: a
Auto-yes enabled for all remaining prompts

# MEDUSA will automatically:
# - Install Chocolatey (if needed)
# - Install Node.js (if needed)
# - Install Ruby (if needed)
# - Install PHP (if needed)
# - Install all 36+ scanner tools
# - No terminal restart required!

What Gets Installed:

  • 86% of tools install automatically (36/42 scanners)
  • Winget (priority), Chocolatey, npm, pip, gem installers
  • PowerShell scripts for specialized tools (phpstan, ktlint, checkstyle, taplo, clj-kondo)
  • Runtime dependencies (Node.js, Ruby, PHP) auto-installed

Manual Installation (Optional): Only 3 tools require manual installation:

  • swiftlint - macOS only
  • checkmake - Requires Go: go install github.com/mrtazz/checkmake/cmd/checkmake@latest
  • cppcheck - Download from https://cppcheck.sourceforge.io/

โš™๏ธ Configuration

.medusa.yml

MEDUSA uses a YAML configuration file for project-specific settings:

# MEDUSA Configuration File
version: 0.9.0

# Scanner control
scanners:
  enabled: []      # Empty = all scanners enabled
  disabled: []     # List scanners to disable
  # Example: disabled: ['bandit', 'eslint']

# Build failure settings
fail_on: high      # critical | high | medium | low

# Exclusion patterns
exclude:
  paths:
    - node_modules/
    - venv/
    - .venv/
    - env/
    - .git/
    - .svn/
    - __pycache__/
    - "*.egg-info/"
    - dist/
    - build/
    - .tox/
    - .pytest_cache/
    - .mypy_cache/
  files:
    - "*.min.js"
    - "*.min.css"
    - "*.bundle.js"
    - "*.map"

# IDE integration
ide:
  claude_code:
    enabled: true
    auto_scan: true          # Scan on file save
    inline_annotations: true # Show issues inline
  cursor:
    enabled: false
  vscode:
    enabled: false
  gemini_cli:
    enabled: false

# Scan settings
workers: null        # null = auto-detect (cpu_count - 2)
cache_enabled: true  # Enable file caching for speed

Generate Default Config

medusa init

This creates .medusa.yml with sensible defaults and auto-detects your IDE.


๐Ÿค– IDE Integration

MEDUSA supports 5 major AI coding assistants with native integrations. Initialize with medusa init --ide all or select specific platforms.

Supported Platforms

IDE Context File Commands Status
Claude Code CLAUDE.md /medusa-scan, /medusa-install โœ… Full Support
Gemini CLI GEMINI.md /scan, /install โœ… Full Support
OpenAI Codex AGENTS.md Native slash commands โœ… Full Support
GitHub Copilot .github/copilot-instructions.md Code suggestions โœ… Full Support
Cursor Reuses CLAUDE.md MCP + Claude commands โœ… Full Support

Quick Setup

# Setup for all IDEs (recommended)
medusa init --ide all

# Or select specific platforms
medusa init --ide claude-code --ide gemini-cli

Claude Code

What it creates:

  • CLAUDE.md - Project context file
  • .claude/agents/medusa/agent.json - Agent configuration
  • .claude/commands/medusa-scan.md - Scan slash command
  • .claude/commands/medusa-install.md - Install slash command

Usage:

Type: /medusa-scan
Claude: *runs security scan*
Results: Displayed in terminal + chat

Gemini CLI

What it creates:

  • GEMINI.md - Project context file
  • .gemini/commands/scan.toml - Scan command config
  • .gemini/commands/install.toml - Install command config

Usage:

gemini /scan              # Full scan
gemini /scan --quick      # Quick scan
gemini /install --check   # Check tools

OpenAI Codex

What it creates:

  • AGENTS.md - Project context (root level)

Usage:

Ask: "Run a security scan"
Codex: *executes medusa scan .*

GitHub Copilot

What it creates:

  • .github/copilot-instructions.md - Security standards and best practices

How it helps:

  • Knows project security standards
  • Suggests secure code patterns
  • Recommends running scans after changes
  • Helps fix security issues

Cursor

What it creates:

  • .cursor/mcp-config.json - MCP server configuration
  • Reuses .claude/ structure (Cursor is VS Code fork)

Usage:

  • Works like Claude Code integration
  • MCP-native for future deeper integration

๐Ÿ”ง Advanced Features

System Load Monitoring

MEDUSA automatically monitors system load and adjusts worker count:

# Auto-detects optimal workers based on:
# - CPU usage
# - Memory usage
# - Load average
# - Available cores

# Warns when system is overloaded:
โš ๏ธ  High CPU usage: 85.3%
Using 2 workers (reduced due to system load)

Smart Caching

Hash-based caching skips unchanged files:

# First scan
๐Ÿ“‚ Files scanned: 145
โฑ๏ธ  Total time: 47.28s

# Second scan (no changes)
๐Ÿ“‚ Files scanned: 0
โšก Files cached: 145
โฑ๏ธ  Total time: 2.15s  # 22ร— faster!

Parallel Processing

Multi-core scanning for massive speedups:

Single-threaded:  417.5 seconds
6 workers:         47.3 seconds  # 8.8ร— faster
24 workers:        ~18 seconds   # 23ร— faster

๐Ÿ“Š Example Workflow

New Project Setup

# 1. Initialize
cd my-awesome-project
medusa init

๐Ÿ MEDUSA Initialization Wizard

โœ… Step 1: Project Analysis
   Found 15 language types
   Primary: PythonScanner (44 files)

โœ… Step 2: Scanner Availability
   Available: 6/42 scanners
   Missing: 36 tools

โœ… Step 3: Configuration
   Created .medusa.yml
   Auto-detected IDE: Claude Code

โœ… Step 4: IDE Integration
   Created .claude/agents/medusa/agent.json
   Created .claude/commands/medusa-scan.md

โœ… MEDUSA Initialized Successfully!

# 2. Install tools
medusa install --all

๐Ÿ“ฆ Installing 36 missing tools...
โœ… bandit installed (pip)
โœ… eslint installed (npm)
โœ… shellcheck installed (apt)
...
โœ… All tools installed!

# 3. First scan
medusa scan .

๐Ÿ” Issues found: 23
   CRITICAL: 0
   HIGH: 2
   MEDIUM: 18
   LOW: 3

# 4. Fix issues and rescan
medusa scan . --quick

โšก Files cached: 142
๐Ÿ” Issues found: 12  # Progress!

CI/CD Integration

# .github/workflows/security.yml
name: Security Scan

on: [push, pull_request]

jobs:
  medusa:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3

      - name: Set up Python
        uses: actions/setup-python@v4
        with:
          python-version: '3.11'

      - name: Install MEDUSA
        run: pip install medusa-security

      - name: Install security tools
        run: medusa install --all --yes

      - name: Run security scan
        run: medusa scan . --fail-on high

๐Ÿ—๏ธ Architecture

Scanner Pattern

All scanners follow a consistent pattern:

class PythonScanner(BaseScanner):
    """Scanner for Python files using Bandit"""

    def get_tool_name(self) -> str:
        return "bandit"

    def get_file_extensions(self) -> List[str]:
        return [".py"]

    def scan_file(self, file_path: Path) -> ScannerResult:
        # Run bandit on file
        # Parse JSON output
        # Map severity levels
        # Return structured issues
        return ScannerResult(...)

Auto-Registration

Scanners automatically register themselves:

# medusa/scanners/__init__.py
registry = ScannerRegistry()
registry.register(PythonScanner())
registry.register(JavaScriptScanner())
# ... all 42 scanners

Severity Mapping

Unified severity levels across all tools:

  • CRITICAL - Security vulnerabilities, fatal errors
  • HIGH - Errors, security warnings
  • MEDIUM - Warnings, code quality issues
  • LOW - Style issues, conventions
  • INFO - Suggestions, refactoring opportunities

๐Ÿงช Testing & Quality

Dogfooding Results

MEDUSA scans itself daily:

โœ… Files scanned: 85
โœ… CRITICAL issues: 0
โœ… HIGH issues: 0
โœ… MEDIUM issues: 113
โœ… LOW issues: 1

Status: Production Ready โœ…

Performance Benchmarks

Project Size Files Time (6 workers) Speed
Small 50 ~15s 3.3 files/s
Medium 145 ~47s 3.1 files/s
Large 500+ ~3min 2.8 files/s

๐Ÿ—บ๏ธ Roadmap

โœ… Completed Phases

  • Phase 1 โœ… - Package restructuring, CLI framework
  • Phase 2 โœ… - 42 scanners, auto-installer, platform support
  • Phase 3 โœ… - Configuration system, IDE integration (Claude Code)
  • Phase 4 โœ… - Testing & QA, dogfooding (0 HIGH/CRITICAL issues)
  • Phase 5 ๐Ÿšง - Documentation (current)

๐Ÿ“‹ Upcoming

  • Phase 6 - Alpha testing (private repo, Test PyPI)
  • Phase 7 - Beta release (public repo, community feedback)
  • Phase 8 - Public launch (PyPI v0.7.0.0, marketing)

๐Ÿ”ฎ Future Versions

v0.8.0 - Enhanced Features

  • Complete VS Code extension
  • Full Cursor integration
  • SARIF output format
  • HTML report UI
  • Baseline/ignore functionality

v1.0.0 - Production Release

  • GitHub Actions integration
  • Pre-commit hooks
  • Performance dashboard
  • Web UI
  • Multi-project support

๐Ÿค Contributing

We welcome contributions! Here's how to get started:

# 1. Fork and clone
git clone https://github.com/yourusername/medusa.git
cd medusa

# 2. Create virtual environment
python -m venv .venv
source .venv/bin/activate  # or `.venv\Scripts\activate` on Windows

# 3. Install in editable mode
pip install -e ".[dev]"

# 4. Run tests
pytest

# 5. Create feature branch
git checkout -b feature/my-awesome-feature

# 6. Make changes and test
medusa scan .  # Dogfood your changes!

# 7. Submit PR
git push origin feature/my-awesome-feature

Adding New Scanners

See docs/development/adding-scanners.md for a guide on adding new language support.


๐Ÿ“œ License

AGPL-3.0-or-later - See LICENSE file

MEDUSA is free and open source software. You can use, modify, and distribute it freely, but any modifications or derivative works (including SaaS deployments) must also be released under AGPL-3.0.

For commercial licensing options, contact: support@pantheonsecurity.io


๐Ÿ™ Credits

Development:

  • Pantheon Security
  • Claude AI (Anthropic) - AI-assisted development

Built With:

  • Python 3.10+
  • Click - CLI framework
  • Rich - Terminal formatting
  • Bandit, ESLint, ShellCheck, and 39+ other open-source security tools

Inspired By:

  • Bandit (Python security)
  • SonarQube (multi-language analysis)
  • Semgrep (pattern-based security)
  • Mega-Linter (comprehensive linting)

๐Ÿ“– Guides


๐Ÿ“ž Support


๐Ÿ“ˆ Statistics

Version: 2025.7.0 Release Date: 2025-11-28 Total Scanners: 60 (16 AI security scanners) Detection Rules: 150+ AI-specific rules Language Coverage: 46+ file types Platform Support: Linux, macOS, Windows AI Integration: Claude Code, Gemini CLI, GitHub Copilot, Cursor Standards: OWASP Top 10 for LLM 2025, MITRE ATLAS


๐ŸŒŸ Why MEDUSA?

vs. Bandit

  • โœ… Supports 42 languages (not just Python)
  • โœ… Parallel processing (10-40ร— faster)
  • โœ… Auto-installer for all tools
  • โœ… IDE integration

vs. SonarQube

  • โœ… Simpler setup (one command)
  • โœ… No server required
  • โœ… Faster scans (local processing)
  • โœ… Free and open source

vs. Semgrep

  • โœ… More language support (42 vs ~30)
  • โœ… Uses established tools (Bandit, ESLint, etc.)
  • โœ… Better IDE integration
  • โœ… Easier configuration

vs. Mega-Linter

  • โœ… Faster (parallel processing)
  • โœ… Smarter caching
  • โœ… Better error handling
  • โœ… More focused on security

๐Ÿ๐Ÿ๐Ÿ MEDUSA - Multi-Language Security Scanner ๐Ÿ๐Ÿ๐Ÿ

One look from Medusa stops vulnerabilities dead.

One Command. Complete Security.

medusa init && medusa scan .

Last Updated: 2025-11-28 Status: Production Ready Current Phase: Public Release (v2025.7 - AI Agent Security)

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

medusa_security-2025.8.5.0.tar.gz (200.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

medusa_security-2025.8.5.0-py3-none-any.whl (252.5 kB view details)

Uploaded Python 3

File details

Details for the file medusa_security-2025.8.5.0.tar.gz.

File metadata

  • Download URL: medusa_security-2025.8.5.0.tar.gz
  • Upload date:
  • Size: 200.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for medusa_security-2025.8.5.0.tar.gz
Algorithm Hash digest
SHA256 b8e7b36cc1143ed417a12c53603d2029ac3b2fc7f58faafa729b7fa0d23d930e
MD5 f836482705cf836d6d92761d645413a8
BLAKE2b-256 30021e71108ba31026d95893b66b37a8b327e33877f55742f4954f652c6162cd

See more details on using hashes here.

File details

Details for the file medusa_security-2025.8.5.0-py3-none-any.whl.

File metadata

File hashes

Hashes for medusa_security-2025.8.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 55906a1645f9a630a4b9aef44982b8ffbccd6ffc359a192bf08c2b52b39cc925
MD5 41b5edfa37ab385c5db399d49c7cffb2
BLAKE2b-256 a222c36d3e52fcc7630c6f4044422358458f6478b0722217b3e840d4b4409389

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page