Skip to content

Commit

Permalink
Fix: CVE api MAX_CVES_PER_PAGE to 2k; As per docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrinkhoff authored and greenbonebot committed Nov 13, 2023
1 parent fd0e4cb commit 74e0fa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pontos/nvd/cve/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
__all__ = ("CVEApi",)

DEFAULT_NIST_NVD_CVES_URL = "https://services.nvd.nist.gov/rest/json/cves/2.0"
MAX_CVES_PER_PAGE = 10000
MAX_CVES_PER_PAGE = 2000


class CVEApi(NVDApi):
Expand Down

0 comments on commit 74e0fa4

Please sign in to comment.