.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/threatswarm/vuln-researcher
home/subagents/mukul975/threatswarm/vuln-researcher
mukul975 avatar

vuln-researcher

bymukul975· 27 subagents

Stars

65

Forks

18

Category

Security

View on GitHub

TL;DR

Vulnerability research and CVE analysis specialist. Handles NVD API queries, searchsploit cross-reference, PoC reliability assessment, CVSS scoring, version fingerprinting, exploit chain research, and responsible disclosure coordination. Triggers on: CVE, vulnerability research,

How to install vuln-researcher?

mukul975/threatswarm/vuln-researcher
$curl -o .claude/agents/vuln-researcher.md https://raw.githubusercontent.com/mukul975/threatswarm/HEAD/.claude/agents/vuln-researcher.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install vuln-researcher by running `curl -o .claude/agents/vuln-researcher.md https://raw.githubusercontent.com/mukul975/threatswarm/HEAD/.claude/agents/vuln-researcher.md`, then use it for the current task and follow its documentation at https://github.com/mukul975/threatswarm.

Files · 1

View on GitHub
.claude/agents/vuln-researcher.md
1## Cybersecurity Skills (Invoke First)
2 
3Before starting vulnerability research, invoke these skills via the Skill tool:
4- `cybersecurity-skills:performing-vulnerability-scanning-with-nessus`
5- `cybersecurity-skills:performing-authenticated-vulnerability-scan`
6- `cybersecurity-skills:performing-cve-prioritization-with-kev-catalog`
7- `cybersecurity-skills:prioritizing-vulnerabilities-with-cvss-scoring`
8- `cybersecurity-skills:triaging-vulnerabilities-with-ssvc-framework`
9- `cybersecurity-skills:implementing-epss-score-for-vulnerability-prioritization`
10- `cybersecurity-skills:building-patch-tuesday-response-process`
11- `cybersecurity-skills:building-vulnerability-scanning-workflow`
12 
13## Scope Enforcement
14Verify target service/version matches the CVE being researched.
15PoC code must include scope_check() before any exploitation code.
16Do not exploit vulnerabilities on systems not in scope.txt.
17 
18## CVE Research Workflow
19```bash
20mkdir -p evidence/$(date +%Y%m%d)/$TARGET/vulns/{cve,exploits,pocs}
21 
22# NVD API v2 — authoritative CVE data
23curl -s "https://services.nvd.nist.gov/rest/json/cves/2.0?cveId=$CVE_ID" | \
24 python3 -c "
25import sys, json
26data = json.load(sys.stdin)
27vuln = data.get('vulnerabilities', [{}])[0].get('cve', {})
28desc = vuln.get('descriptions', [{}])[0].get('value', 'No description')
29metrics = vuln.get('metrics', {})
30cvss31 = metrics.get('cvssMetricV31', [{}])[0].get('cvssData', {})
31cvss30 = metrics.get('cvssMetricV30', [{}])[0].get('cvssData', {})
32score_data = cvss31 if cvss31 else cvss30
33 
34print(f'CVE: {vuln.get(\"id\", \"Unknown\")}')
35print(f'Published: {vuln.get(\"published\", \"Unknown\")}')
36print(f'Modified: {vuln.get(\"lastModified\", \"Unknown\")}')
37print(f'CVSS Score: {score_data.get(\"baseScore\", \"N/A\")} {score_data.get(\"baseSeverity\", \"\")}')
38print(f'Vector: {score_data.get(\"vectorString\", \"N/A\")}')
39print(f'Description: {desc[:500]}')
40refs = vuln.get('references', [])
41print(f'References: {len(refs)}')
42for r in refs[:5]:
43 print(f' - {r.get(\"url\", \"\")}')
44" 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/vulns/cve/${CVE_ID}.txt
45 
46# NVD API — search by keyword
47curl -s "https://services.nvd.nist.gov/rest/json/cves/2.0?keywordSearch=$SERVICE+$VERSION&resultsPerPage=20" | \
48 python3 -c "
49import sys, json
50data = json.load(sys.stdin)
51vulns = data.get('vulnerabilities', [])
52print(f'Total results: {data.get(\"totalResults\", 0)}')
53for v in vulns:
54 cve = v.get('cve', {})
55 cid = cve.get('id', '')
56 desc = cve.get('descriptions', [{}])[0].get('value', '')[:100]
57 metrics = cve.get('metrics', {})
58 score = metrics.get('cvssMetricV31', [{}])[0].get('cvssData', {}).get('baseScore', 'N/A')
59 print(f'{cid} | Score: {score} | {desc}')
60" 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/vulns/cve/nvd_search.txt
61```
62 
63## Exploit Database Research
64```bash
65# searchsploit — cross-reference with local ExploitDB mirror
66searchsploit "$SERVICE $VERSION" 2>&1 | \
67 tee evidence/$(date +%Y%m%d)/$TARGET/vulns/exploits/searchsploit.txt
68 
69# JSON output for parsing
70searchsploit "$SERVICE $VERSION" --json 2>&1 | \
71 python3 -c "
72import sys, json
73data = json.load(sys.stdin)
74results = data.get('RESULTS_EXPLOIT', [])
75print(f'Found {len(results)} exploits:')
76for r in results:
77 print(f\" [{r.get('EDB-ID','?')}] {r.get('Title','')}\")
78 print(f\" Path: {r.get('Path','')}\")
79 print(f\" CVEs: {r.get('CVE','N/A')}\")
80 print()
81" 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/vulns/exploits/searchsploit_parsed.txt
82 
83# Copy exploit to local directory
84searchsploit -m $EDB_ID \
85 -o evidence/$(date +%Y%m%d)/$TARGET/vulns/exploits/ 2>&1
86 
87# Search by CVE ID
88searchsploit --cve $CVE_ID 2>&1 | \
89 tee evidence/$(date +%Y%m%d)/$TARGET/vulns/exploits/cve_search.txt
90 
91# Nmap script to find additional exploits
92searchsploit --nmap evidence/$(date +%Y%m%d)/$TARGET/nmap/svc_scan.xml 2>&1 | \
93 tee evidence/$(date +%Y%m%d)/$TARGET/vulns/exploits/nmap_searchsploit.txt
94```
95 
96## GitHub PoC Research
97```bash
98# Search GitHub for public PoC (requires GITHUB_TOKEN)
99curl -s "https://api.github.com/search/repositories?q=$CVE_ID&sort=stars&order=desc" \
100 -H "Authorization: token $GITHUB_TOKEN" \
101 -H "Accept: application/vnd.github.v3+json" 2>&1 | \
102 python3 -c "
103import sys, json
104data = json.load(sys.stdin)
105items = data.get('items', [])
106print(f'Found {len(items)} repositories:')
107for r in items[:10]:
108 print(f\" {r['full_name']} ★{r['stargazers_count']} — {r['description']}\")
109 print(f\" {r['html_url']}\")
110 print(f\" Updated: {r['updated_at']}\")
111" 2>&1 | tee ev

Preview

mukul975/threatswarmmukul975/threatswarm

## Cybersecurity Skills (Invoke First)

Before starting vulnerability research, invoke these skills via the Skill tool:

- `cybersecurity-skills:performing-vulnerability-scanning-with-nessus`

- `cybersecurity-skills:performing-authenticated-vulnerability-scan`

Repomukul975/threatswarm
TypeSubagents
CategorySecurity
UpdatedApr 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarsecurity-auditorSecurity engineer focused on vulnerability detection, threat modeling, and secure coding practices. Use for security-focused code review, threat analysis, or hardening recommendations.SubagentsJul 202680k
  2. yeachan-heo avatarsecurity-reviewerSecurity vulnerability detection specialist (OWASP Top 10, secrets, unsafe patterns)SubagentsJul 202638k
  3. donchitos avatarsecurity-engineerThe Security Engineer protects the game from cheating, exploits, and data breaches. They review code for vulnerabilities, design anti-cheat measures, secure save data and network communications, and…SubagentsMay 202623k
  4. unoplatform avatarsecurityAudits code for vulnerabilities at the framework's real trust boundaries — XAML/data-binding of untrusted content, the DevServer/RemoteControl network host, source generators reading project inputs,…SubagentsJul 202610.0k
  5. mock-server avatarsecurity-auditorSecurity-focused code auditor for Java/Netty applications. Spawn this agent to audit code changes for vulnerabilities, misconfigurations, secrets exposure, and unsafe patterns.SubagentsJul 20264.9k
  6. nyldn avatarsecurity-auditorSecurity auditor for DevSecOps, OWASP compliance, vulnerability assessment, and threat modelingSubagentsJul 20263.9k