Install
$ agentstack add skill-rifteo-skills-check-exploit ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Check Exploit
Given a service name, version, CVE ID, or technology stack, systematically search every major exploit source in priority order and return a triage table of findings.
When NOT to use
Do NOT apply this skill — respond normally without the exploit triage format — when:
- The user is asking how to fix or remediate a vulnerability (use remediation-planner instead)
- The user is asking about compliance, framework controls, or audit findings
- The user is asking general security questions not related to finding exploits for a specific target
Input Expected
Provide at least one of:
- Service + version — e.g.
Apache 2.4.49,OpenSSH 7.2,vsftpd 2.3.4 - CVE ID — e.g.
CVE-2021-41773 - Technology keyword — e.g.
Drupal,log4j,mod_ssl - Nmap XML output — pass the file path; run
searchsploit --nmapautomatically
If the input is ambiguous (no version, only a product name), ask ONE clarifying question: "Do you have a specific version number or CVE?" — then proceed.
Phase 1 — Build the Search Query
Before querying any source, normalize the target into a consistent search string:
- Extract: product name, version, OS/platform (if known)
- Construct queries:
- Exact:
"Apache 2.4.49" - Broad:
"Apache" "2.4" - CVE:
CVE-YYYY-NNNNN(if known)
- Identify the vulnerability class if inferable (RCE, LFI, auth bypass, privesc, DoS)
Phase 2 — Systematic Source Search
Start by running the automation script:
# Search by product/version
python3 scripts/multi-search.py "apache 2.4.49"
# Search by CVE
python3 scripts/multi-search.py --cve CVE-2021-41773
# Search from nmap XML output
python3 scripts/multi-search.py --nmap scan.xml
The script runs searchsploit locally, prints Metasploit commands to copy-paste, and generates direct URLs for all online sources. Use it as the starting point, then drill into each source manually for results that need further investigation.
Work through every source in references/sources.md in order. For each source, note:
- Whether results were found (yes / no / N/A)
- Exploit ID, title, and type for any match
- Whether a working PoC or weaponized exploit exists
2.1 Searchsploit (Exploit-DB — offline, fastest)
# Basic search
searchsploit " "
searchsploit apache 2.4.49
# Broader search (drop minor version)
searchsploit apache 2.4
# From nmap XML
searchsploit --nmap scan.xml
# Copy exploit to current directory
searchsploit -m
# Inspect without copying
searchsploit -x
# Show full path
searchsploit -p
2.2 Metasploit Search
msf> search type:exploit name:
msf> search platform:linux port:22 type:exploit
msf> search cve:
msf> search platform:windows port:135 target:XP type:exploit
For each result note: module path, rank (excellent / great / good / normal / average / low), and whether it requires authentication.
2.3 Shodan CVEDB
Search by product name (sorted by EPSS — exploitation probability):
https://cvedb.shodan.io/cves?product=&sort_by_epss=true
Look up a specific CVE directly (shows CVSS, EPSS, CISA KEV status, affected CPEs):
https://cvedb.shodan.io/cve/
Filter to CISA KEV entries only:
https://cvedb.shodan.io/cves?product=&is_kev=true
Note: exploits.shodan.io is the legacy URL — cvedb.shodan.io is the current platform.
2.4 Vulners
Query: https://vulners.com/search?query=+
Vulners aggregates NVD, Exploit-DB, packetstorm, and vendor advisories. Note CVSS score, exploit availability flag, and any linked PoC.
2.5 Sploitus
Query: https://sploitus.com/?query=+
Sploitus searches across Exploit-DB, GitHub PoCs, and Packet Storm simultaneously. Flag any GitHub PoC links.
2.6 search_vulns
Query: https://search-vulns.com/ — search by product/version.
Aggregates NVD, Exploit-DB, PoC-in-GitHub, GitHub Security Advisory, and endoflife.date. Note if the version is end-of-life.
2.7 Sploitify
Query: https://sploitify.haxx.it — filter by vulnerability type and service type.
Use when looking for categorized exploits (LPE, RCE, Web, SMB, SSH, RDP). Note if practice lab links are available.
2.8 PacketStorm
Query: https://packetstormsecurity.com/search/?q=+
Use as fallback when no results found in steps 2.1–2.7. Also check for advisories and papers that may contain PoC code.
2.9 Pompem
# Install: git clone https://github.com/rfunix/Pompem
python3 pompem.py --search " "
Searches Exploit-DB, Packet Storm, and NVD in one pass.
2.10 Google Dork (last resort)
"" "" exploit site:exploit-db.com
"" "" exploit site:github.com
"CVE-YYYY-NNNNN" poc OR exploit OR "proof of concept"
> Google Dork results are unstructured — any findings should be recorded manually in the Exploit Triage Table above rather than the Sources Checked tracker.
Phase 3 — Triage and Classify Results
For each exploit found, classify it:
| Field | Options | |---|---| | Type | Remote / Local / DoS / WebApp / Privilege Escalation / Info Disclosure | | Auth required | None / Low-privilege / Admin | | Reliability | Weaponized (Metasploit module) / PoC published / Theoretical | | Complexity | Low (works out of the box) / Medium (needs tuning) / High (partial/incomplete) | | Active exploitation | Check CISA KEV: https://www.cisa.gov/known-exploited-vulnerabilities-catalog |
Priority order for reporting:
- Weaponized + no auth + remote → Critical
- PoC published + no auth + remote → High
- Auth required or local only → Medium
- DoS or info-only → Low/Info
Phase 4 — Output Format
Produce exactly this structure:
Target: (OS/platform if known)
Search Query Used: ``
Exploit Triage Table:
| Source | ID / Module | Title | Type | Auth | Reliability | Notes | |---|---|---|---|---|---|---| | Exploit-DB | EDB-XXXXX | [title] | Remote RCE | None | PoC | CVE-YYYY-NNNNN | | Metasploit | exploit/unix/ftp/vsftpd234backdoor | [title] | Remote | None | Weaponized | Rank: excellent | | GitHub | [url] | [title] | RCE | None | PoC | Actively maintained | | — | — | No results | — | — | — | — |
Highest-Severity Finding:
CVE: [CVE ID or N/A] Type: [Remote RCE / LPE / Auth Bypass / etc.] Auth Required: [Yes / No] Reliability: [Weaponized / PoC / Theoretical] CISA KEV: [Listed / Not listed] Summary: One sentence describing what the exploit does and its impact. Exploit Reference: [EDB-ID, Metasploit module path, or GitHub URL]
Recommended Next Steps:
- If weaponized exploit exists → list the exact Metasploit module and usage command
- If PoC only → describe what adaptation is needed to weaponize
- If no exploit found → suggest version upgrade, vendor advisory, or manual testing approach
- If CISA KEV listed → flag for immediate escalation (run
python3 scripts/cisa-kev-check.pyto confirm)
Sources Checked:
| Source | Searched | Results | |---|---|---| | Searchsploit | Yes / No | Found N / No results | | Metasploit | Yes / No | Found N / No results | | Shodan CVEDB | Yes / No | Found N / No results | | Vulners | Yes / No | Found N / No results | | Sploitus | Yes / No | Found N / No results | | search_vulns | Yes / No | Found N / No results | | Sploitify | Yes / No | Found N / No results | | PacketStorm | Yes / No | Found N / No results | | Pompem | Yes / No | Found N / No results |
Rules
- Never invent exploit IDs, CVE numbers, or GitHub URLs — if a source is not accessible, mark it as "Not checked" and explain why
- Always report the most severe finding first, even if found in a secondary source
- If the version is end-of-life (check search_vulns / endoflife.date), flag it explicitly — EOL status elevates risk regardless of known exploits
- CISA KEV listing overrides all other severity assessments — always escalate
- Do not run exploits — this skill is for discovery and triage only
- For nmap XML input, always run
searchsploit --nmapfirst before any other source - Ask at most one clarifying question; never stall the search waiting for optional information
Scripts
scripts/multi-search.py— Runs searchsploit locally and generates ready-to-open URLs for all online sources in one pass. Accepts product/version,--cve, or--nmapflags.scripts/cisa-kev-check.py— Fetches the CISA KEV JSON feed and checks if a CVE is listed. Caches the feed for 24 h. Supports--list-recent Nto show the latest additions.
Reference Files
references/sources.md— Full database index with direct search URLs and query syntax for each source
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Rifteo
- Source: Rifteo/skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.