← Back to search
40
Partial
Agentic Readiness Score
security llms-txtmcpautomation

Agentic Signals

📄
Found
🤖
ai-plugin.json
Not found
📖
OpenAPI Spec
Not found
🔗
Structured API
Not found
🛡
Not specified
🏷
Schema.org Markup
Found
MCP Server
Found

Embed this badge

Show off your agentic readiness — the badge auto-updates when your score changes.

Agentic Ready 40/100

            

llms.txt Content

# Dalfox > Dalfox is a fast, powerful open-source XSS scanning tool written in Go. It focuses on automation to streamline the process of detecting and verifying cross-site scripting vulnerabilities. Dalfox (where "Dal" is the Korean word for "moon" and "Fox" stands for "Finder Of XSS") is a comprehensive command-line tool designed for security professionals. It excels at finding XSS vulnerabilities through various modes including URL scanning, file-based inputs, pipeline processing, and REST API server capabilities. The tool offers advanced parameter analysis, DOM mining, and headless browser verification for thorough security testing. ## Basic Usage ```bash # Basic command structure dalfox [mode] [target] [flags] # e.g., dalfox url https://example.com --worker=50 # Scan a single URL dalfox url https://example.com # Use blind XSS with callback URL dalfox url https://example.com -b https://your-callback-url.com # Scan multiple URLs from a file dalfox file urls.txt # Process URLs from pipe cat urls.txt | dalfox pipe # Start as a REST API server dalfox server --host 0.0.0.0 --port 8080 # Start as a MCP server dalfox server --type=mcp # Use with custom payloads dalfox url https://example.com --custom-payload payloads.txt # Output in JSON format dalfox url https://example.com --format json -o results.json ``` ## Docs - [Installation Guide](https://dalfox.hahwul.com/page/installation/) - Complete instructions for installing Dalfox on various platforms including Homebrew, Snapcraft, Go, and Docker. - [Quick Start](https://dalfox.hahwul.com/page/overview/) - Introduction to Dalfox with key features and basic usage examples. - [Usage Guide](https://dalfox.hahwul.com/page/usage/) - Detailed documentation on all available modes, options, and flags for customizing scans. - [Running Dalfox](https://dalfox.hahwul.com/page/running/) - Specific guides for different scanning scenarios (single URL, multiple URLs, raw requests). - [Advanced Features](https://dalfox.hahwu