Skip to main content
ClaudeWave
Skill282 estrellas del repoactualizado yesterday

pentest-vuln-verify-test

This Claude Code skill automates the verification of common web vulnerabilities, specifically open redirects and XSS attacks, by parsing and manipulating raw HTTP requests with strict validation criteria. Use it during penetration testing workflows to confirm vulnerability exploitability through payload injection, session cookie manipulation, and response pattern matching for meta refresh tags or HTTP 3xx redirects.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/jd-opensource/JoySafeter /tmp/pentest-vuln-verify-test && cp -r /tmp/pentest-vuln-verify-test/skills/pentest-vuln-verify ~/.claude/skills/pentest-vuln-verify-test
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# 漏洞验证自动化

## 描述
此技能专注于通过操作原始 HTTP 请求来自动验证 Web 漏洞(特别是开放重定向和 XSS)。它处理会话上下文切换(Cookie 替换)和严格的成功标准验证。

## 核心能力
- 原始 HTTP 请求解析与重构
- 认证会话操作(Cookie 交换)
- 自动 Payload 投递
- 响应模式匹配(Meta Refresh / HTTP 30x)

## 参考工作流
- [验证逻辑与流程](references/workflows.md#verification-logic)
- [成功标准定义](references/workflows.md#success-criteria)
- [工具使用指南](references/tools.md)

## 工具
- Curl (HTTP 客户端)
- Bash (脚本编写)
- Grep (响应解析)
- Burp Suite (用于生成原始请求)