feat(tools): get_poc_freshness — PoC freshness checker + CLI subcommand (+69 tests) - #60
Open
manus-use wants to merge 1 commit into
Open
feat(tools): get_poc_freshness — PoC freshness checker + CLI subcommand (+69 tests)#60manus-use wants to merge 1 commit into
manus-use wants to merge 1 commit into
Conversation
manus-use
pushed a commit
that referenced
this pull request
Jun 29, 2026
…n PRs roadmap, and changelog section - poc-search subcommand (PR #62): multi-source PoC aggregator (trickest, VulnCheck KEV, Exploit-DB, GitHub, NVD) - changelog subcommand (PR #66): conventional-commit release automation - VulnCheck enrichment section: VULNCHECK_API_KEY optional, vulncheck-kev + nist-nvd2 indexes - Updated 8-step VI pipeline description to include VulnCheck KEV in step 2, patch diff/exploit complexity/version range in step 6 - Coming Soon table: 9 open PRs (#51 silent-patches, #53 cve-timeline, #54 version-range, #58 vendor-response, #60 poc-freshness, #63 blast-radius, #64 sbom-scan, #65 temporal-priority, #67 cluster-variants) - Updated built-in tools list to mention VulnCheck KEV and new VI tools - Added Changelog section linking to CHANGELOG.md - Updated Table of Contents with Changelog entry - Expanded Security examples to include poc-search and changelog
This was referenced Jun 29, 2026
This was referenced Jul 5, 2026
This was referenced Jul 7, 2026
This was referenced Jul 11, 2026
Open
manus-use
force-pushed
the
feat/poc-freshness
branch
from
July 19, 2026 00:13
2597390 to
c1f8a19
Compare
manus-use
force-pushed
the
feat/poc-freshness
branch
from
August 11, 2026 08:09
c1f8a19 to
882badd
Compare
manus-use
force-pushed
the
feat/poc-freshness
branch
from
August 14, 2026 00:08
882badd to
2cbc1a1
Compare
manus-use
force-pushed
the
feat/poc-freshness
branch
from
August 16, 2026 08:07
2cbc1a1 to
e4a67a2
Compare
manus-use
force-pushed
the
feat/poc-freshness
branch
from
August 20, 2026 08:13
e4a67a2 to
ffee8f5
Compare
manus-use
force-pushed
the
feat/poc-freshness
branch
from
August 25, 2026 00:08
ffee8f5 to
830ede0
Compare
manus-use
force-pushed
the
feat/poc-freshness
branch
from
August 26, 2026 08:08
830ede0 to
9e8ed39
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Implements the
poc-freshnessCLI subcommand andget_poc_freshnessStrands tool — both documented in the README but previously unimplemented (zero code, zero tests).What it does: Measures how recently PoC (Proof-of-Concept) activity occurred for a given CVE by querying multiple sources and producing a freshness score (0–100) indicating ongoing attacker interest.
Sources Checked
Freshness Score Classification
very_freshfreshagingstaleUsage
manus-agent poc-freshness CVE-2024-3094 manus-agent poc-freshness CVE-2024-3094 --output json | jq .freshness_scoreFiles Changed
src/manus_agent/tools/get_poc_freshness.py— new tool implementationsrc/manus_agent/cli.py— CLI dispatch + parser +_SUBCOMMANDSentrytests/test_get_poc_freshness.py— 69 new tests (100% mocked, no real HTTP)Design Decisions
requestsalready in the project)GITHUB_TOKEN/GH_TOKENsupport for higher rate limitsNVD_API_KEYsupport for NVD requestsTOOL_SPECinterface for agent integrationTest Results
1227 passed (baseline 1158 + 69 new), 0 failures.
Duplicate Check
Checked all 50 open PRs (#145–#194) and 30 most recent merged PRs. No existing open or merged PR covers PoC freshness measurement. Closest related work:
search_poc_sources— aggregates PoC links but does not score freshness/recencypoc-freshnesssubcommand was documented in README with usage examples but had zero implementation