Return a mapping of CVE IDs to ordered, de-duplicated PoC URLs.
(path: Path)
| 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 |
| 100 | class 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 |