MCPcopy Create free account
hub / github.com/0xMarcio/cve / parse_github_sources

Function parse_github_sources

scripts/update_cves.py:85–105  ·  view source on GitHub ↗

Return a mapping of CVE IDs to ordered, de-duplicated PoC URLs.

(path: Path)

Source from the content-addressed store, hash-verified

83 ... on Repository {
84 nameWithOwner
85 url
86 description
87 isArchived
88 isFork
89 pushedAt
90 repositoryTopics(first: 20) { nodes { topic { name } } }
91 }
92 }
93 }
94 rateLimit { cost remaining resetAt }
95}
96"""
97
98
99@dataclass
100class CVEDetails:
101 description: str
102 products: list[str]
103 versions: list[str]
104 vulnerabilities: list[str]
105 title: str = ""
106 vendors: list[str] = field(default_factory=list)
107
108

Callers 1

mainFunction · 0.85

Calls 1

is_valid_cveFunction · 0.70

Tested by

no test coverage detected