
Dalfox Xss
- 23 installs
- 1.6k repo stars
- Updated July 19, 2026
- wgpsec/aboutsecurity
Helps with ai & agent building tasks during AI-assisted development.
About
dalfox-xss is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- dalfox-xss
- AI & Agent Building
- AI-coding skill
Dalfox Xss by the numbers
- 23 all-time installs (skills.sh)
- +2 installs in the week ending Jul 27, 2026 (Skillselion tracking)
- Ranked #9,994 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/wgpsec/aboutsecurity --skill dalfox-xssAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 23 |
|---|---|
| repo stars | ★ 1.6k |
| Last updated | July 19, 2026 |
| Repository | wgpsec/aboutsecurity ↗ |
What it does
Helps with ai & agent building tasks during AI-assisted development.
Files
DalFox XSS 漏洞扫描方法论
DalFox 是专业的 XSS 漏洞扫描器。核心优势:智能参数分析(自动识别可注入参数)+ DOM 挖掘 + WAF 绕过 + Blind XSS 支持。
项目地址:https://github.com/hahwul/dalfox
Phase 1: 基本扫描
# 扫描单个 URL(含参数)
dalfox url "http://target.com/search?q=test"
# 从文件批量扫描
dalfox file urls.txt
# 从 stdin 管道
cat urls.txt | dalfox pipe
# 静默输出(只显示发现)
dalfox url "http://target.com/search?q=test" --silencePhase 2: 高级扫描
# Blind XSS(指定回调地址)
dalfox url "http://target.com/form?input=test" \
--blind "https://your-callback.xss.ht"
# 启用 WAF 绕过
dalfox url "http://target.com/search?q=test" --waf-evasion
# 启用 DOM 分析
dalfox url "http://target.com/page" --mining-dom
# 自定义 Payload 文件
dalfox url "http://target.com/search?q=test" \
--custom-payload payloads.txt
# POST 请求
dalfox url "http://target.com/submit" \
--data "name=test&comment=hello" --method POSTPhase 3: 认证和自定义
# 带 Cookie
dalfox url "http://target.com/search?q=test" \
--cookie "session=abc123"
# 自定义 Header
dalfox url "http://target.com/search?q=test" \
--header "Authorization: Bearer token"
# 使用代理
dalfox url "http://target.com/search?q=test" \
--proxy http://127.0.0.1:8080
# 控制并发和延迟
dalfox url "http://target.com/search?q=test" \
--worker 10 --delay 100Phase 4: 管道集成
# 爬虫 → XSS 扫描
katana -u http://target.com -jc -silent | dalfox pipe --silence
# 参数发现 → XSS 扫描
cat urls.txt | gau | grep "=" | dalfox pipe --silence
# URL 收集 → 去重 → XSS 扫描
gau target.com | grep "=" | sort -u | dalfox pipe --silence
# JSON 输出
dalfox url "http://target.com/search?q=test" --format json -o results.json常用场景速查
| 场景 | 命令 |
|---|---|
| 单 URL 快扫 | dalfox url "http://target/search?q=test" |
| 批量扫描 | dalfox file urls.txt --silence |
| Blind XSS | dalfox url "URL" --blind "https://callback.xss.ht" |
| WAF 绕过 | dalfox url "URL" --waf-evasion |
| 管道扫描 | `cat urls.txt \ |
Related skills
AI & Agent Buildingagents