Redteam Cve Lookup logo

Redteam Cve Lookup

OrganizationPopular
Netw0rkNoob
redteam-cve-lookup

CVE lookup and applicability assessment domain card. Use after reconnaissance has identified products, versions, services, or fingerprints and red-team mode needs evidence-based CVE matching before deeper testing.

Overview

PublisherNetw0rkNoob
RepositoryVulnClaw
Skill nameredteam-cve-lookup
Stars
3.4K
Forks
454
Bundled files
1
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 1 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by Netw0rkNoob on GitHub. Read the source before you install it.

Installation

Install the Redteam Cve Lookup AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/Netw0rkNoob/VulnClaw.git /tmp/VulnClaw
mkdir -p .claude/skills
cp -r /tmp/VulnClaw/vulnclaw/skills/specialized/redteam-cve-lookup .claude/skills/redteam-cve-lookup
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Redteam Cve Lookup in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Redteam Cve Lookup on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Redteam Cve Lookup is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

CVE Lookup

Domain

Recon Profile 完成后的 CVE 匹配与适用性评估阶段。 根据已收集的产品名、版本号、服务指纹,查询已知 CVE,评估其对目标的适用性。

阶段顺序:

  1. 从 recon_profile 提取产品/版本/服务清单
  2. 按产品+版本查询 CVE 数据库(NVD/CVE MCP/本地库)
  3. 初筛:排除明确不匹配的 CVE(产品不符/版本范围外)
  4. 适用性评估:结合目标指纹判断 candidate/possibly_applicable/not_applicable/patched
  5. 补丁状态确认:检查已部署版本是否包含修复

Trigger

text
recon_profile_ready

Feedback Gates

  • Product Gate:recon_profile 中是否存在可识别的组件/产品名。无产品名则证据不足,回退 recon 补证。
  • Version Gate:是否有版本号或可比对的指纹信息。无版本信息降低 confidence 但不阻断。
  • Source Gate:CVE 来源是否可追溯(NVD/MITRE/厂商公告)。不可追溯标记 low confidence。
  • Applicability Gate:是否有证据证明目标适用该 CVE。无证据标记 candidate 待验证。
  • Patch Gate:是否有证据表明已修复(版本号高于修复版本/补丁已部署)。已修复标记 patched。

Boundaries

  • 不执行任何漏洞利用或 PoC
  • 不发送攻击性 payload 验证 CVE
  • 仅查询当前目标,不自动扩展到任务中未出现的关联目标
  • CVE 查询阶段只做信息匹配,不做主动验证
  • 对低置信度候选不做过度推断
  • 遵循最小请求原则,避免批量爬取 CVE 数据源

Pivot Hints

  • 产品名不明确 → 回退 recon,尝试更精确的指纹识别(Wappalyzer/httpx tech detect)
  • 版本号缺失 → 尝试从 HTTP header/error page/changelog 推断版本范围
  • CVE 数据源不可用 → 降级到离线 CVE 字典或已知漏洞列表
  • 候选过多(>20) → 按 CVSS 评分+影响范围排序,优先评估高危+RCE类
  • 全部标记 patched → 输出 cve_patch_status artifact,退出到 evidence-based router
  • 无任何候选 → 输出空 cve_candidate_list,退出到 evidence-based router

Exit Conditions

  • 存在 possibly_applicable 或 candidate CVE(confidence >= medium)→ 进入 cve-validation path
  • 全部 CVE 标记 not_applicable 或 patched → 退出到 evidence-based router
  • 产品/版本证据不足,无法生成有效候选 → 回退 recon-intake 补证
  • 无 CVE 候选(产品无已知漏洞)→ 退出到 evidence-based router

Exit Evidence

  • Required: cve_candidate_list
  • Optional: cve_applicability_matrix, cve_patch_status
  • min_attempts: 2

Capabilities

text
cve_lookup            -> cve_candidate_list
cve_applicability     -> cve_applicability_matrix
patch_status_check    -> cve_patch_status

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Redteam Cve Lookup AI skill do?

CVE lookup and applicability assessment domain card. Use after reconnaissance has identified products, versions, services, or fingerprints and red-team mode needs evidence-based CVE matching before deeper testing.

Why use Redteam Cve Lookup on TypingMind?

Because you install it once and use it with any model. Redteam Cve Lookup is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Redteam Cve Lookup in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/Netw0rkNoob/VulnClaw/tree/main/vulnclaw/skills/specialized/redteam-cve-lookup. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Redteam Cve Lookup?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Redteam Cve Lookup?

As many as you like. As long as a model supports skills, you can use Redteam Cve Lookup with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Redteam Cve Lookup AI skill free?

Yes. It is published on GitHub by Netw0rkNoob under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇