├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── actions │ └── python-setup │ │ └── action.yml ├── dependabot.yml ├── pull_request_template.md ├── release.yml └── workflows │ ├── auto-pr-review.yml │ ├── github-pages.yml │ ├── python-ci.yml │ ├── python-publish.yml │ └── scorecards.yml ├── .gitignore ├── .openapi-generator-ignore ├── .openapi-generator ├── FILES └── VERSION ├── .vscode ├── cspell.json ├── extensions.json └── settings.json ├── LICENSE ├── README.rst ├── SECURITY.md ├── config.toml ├── docs ├── Makefile ├── _static │ ├── .gitignore │ └── openapi.html ├── authors.rst ├── conf.py ├── index.rst ├── license.rst ├── make.bat └── openapi.rst ├── openapitools.json ├── package.json ├── poetry.lock ├── pyproject.toml ├── schemas ├── cpe.match.oas.yml ├── cpe.oas.yml ├── cve.history.oas.yml ├── cve.oas.yml └── nvd.oas.yml ├── src └── nvd_api │ ├── __init__.py │ ├── client.py │ └── low_api │ ├── __init__.py │ ├── api │ ├── __init__.py │ ├── products_api.py │ └── vulnerabilities_api.py │ ├── api_client.py │ ├── apis │ └── __init__.py │ ├── configuration.py │ ├── exceptions.py │ ├── model │ ├── __init__.py │ ├── cpe_match_oas.py │ ├── cpe_match_oas_match_strings_inner.py │ ├── cpe_match_oas_match_strings_inner_match_string.py │ ├── cpe_match_oas_match_strings_inner_match_string_matches_inner.py │ ├── cpe_oas.py │ ├── cpe_oas_products_inner.py │ ├── cpe_oas_products_inner_cpe.py │ ├── cpe_oas_products_inner_cpe_deprecated_by_inner.py │ ├── cpe_oas_products_inner_cpe_refs_inner.py │ ├── cpe_oas_products_inner_cpe_titles_inner.py │ ├── cve_history_oas.py │ ├── cve_history_oas_cve_changes_inner.py │ ├── cve_history_oas_cve_changes_inner_change.py │ ├── cve_history_oas_cve_changes_inner_change_details_inner.py │ ├── cve_oas.py │ ├── cve_oas_vulnerabilities_inner.py │ ├── cve_oas_vulnerabilities_inner_cve.py │ ├── cve_oas_vulnerabilities_inner_cve_configurations_inner.py │ ├── cve_oas_vulnerabilities_inner_cve_configurations_inner_nodes_inner.py │ ├── cve_oas_vulnerabilities_inner_cve_configurations_inner_nodes_inner_cpe_match_inner.py │ ├── cve_oas_vulnerabilities_inner_cve_descriptions_inner.py │ ├── cve_oas_vulnerabilities_inner_cve_metrics.py │ ├── cve_oas_vulnerabilities_inner_cve_metrics_cvss_metric_v2_inner.py │ ├── cve_oas_vulnerabilities_inner_cve_metrics_cvss_metric_v30_inner.py │ ├── cve_oas_vulnerabilities_inner_cve_metrics_cvss_metric_v31_inner.py │ ├── cve_oas_vulnerabilities_inner_cve_references_inner.py │ ├── cve_oas_vulnerabilities_inner_cve_vendor_comments_inner.py │ ├── cve_oas_vulnerabilities_inner_cve_weaknesses_inner.py │ ├── json_schema_for_common_vulnerability_scoring_system_version20.py │ ├── json_schema_for_common_vulnerability_scoring_system_version30.py │ └── json_schema_for_common_vulnerability_scoring_system_version31.py │ ├── model_utils.py │ ├── models │ └── __init__.py │ └── rest.py ├── tests ├── __init__.py ├── low_api │ ├── test_cpe_match_oas.py │ ├── test_cpe_oas.py │ ├── test_cve_history_oas.py │ ├── test_cve_oas.py │ ├── test_products_api.py │ └── test_vulnerabilities_api.py ├── test_get_cpe_match.py ├── test_get_cpes.py ├── test_get_cve_history.py ├── test_get_cves.py └── test_sleep.py ├── tools ├── push.py ├── release.py ├── sbom.py └── sphinx.py └── usage └── lowlevel-api ├── CpeMatchOas.md ├── CpeMatchOasMatchStringsInner.md ├── CpeMatchOasMatchStringsInnerMatchString.md ├── CpeMatchOasMatchStringsInnerMatchStringMatchesInner.md ├── CpeOas.md ├── CpeOasProductsInner.md ├── CpeOasProductsInnerCpe.md ├── CpeOasProductsInnerCpeDeprecatedByInner.md ├── CpeOasProductsInnerCpeRefsInner.md ├── CpeOasProductsInnerCpeTitlesInner.md ├── CveHistoryOas.md ├── CveHistoryOasCveChangesInner.md ├── CveHistoryOasCveChangesInnerChange.md ├── CveHistoryOasCveChangesInnerChangeDetailsInner.md ├── CveOas.md ├── CveOasVulnerabilitiesInner.md ├── CveOasVulnerabilitiesInnerCve.md ├── CveOasVulnerabilitiesInnerCveConfigurationsInner.md ├── CveOasVulnerabilitiesInnerCveConfigurationsInnerNodesInner.md ├── CveOasVulnerabilitiesInnerCveConfigurationsInnerNodesInnerCpeMatchInner.md ├── CveOasVulnerabilitiesInnerCveDescriptionsInner.md ├── CveOasVulnerabilitiesInnerCveMetrics.md ├── CveOasVulnerabilitiesInnerCveMetricsCvssMetricV2Inner.md ├── CveOasVulnerabilitiesInnerCveMetricsCvssMetricV30Inner.md ├── CveOasVulnerabilitiesInnerCveMetricsCvssMetricV31Inner.md ├── CveOasVulnerabilitiesInnerCveReferencesInner.md ├── CveOasVulnerabilitiesInnerCveVendorCommentsInner.md ├── CveOasVulnerabilitiesInnerCveWeaknessesInner.md ├── JSONSchemaForCommonVulnerabilityScoringSystemVersion20.md ├── JSONSchemaForCommonVulnerabilityScoringSystemVersion30.md ├── JSONSchemaForCommonVulnerabilityScoringSystemVersion31.md ├── ProductsApi.md └── VulnerabilitiesApi.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/actions/python-setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/.github/actions/python-setup/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/auto-pr-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/.github/workflows/auto-pr-review.yml -------------------------------------------------------------------------------- /.github/workflows/github-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/.github/workflows/github-pages.yml -------------------------------------------------------------------------------- /.github/workflows/python-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/.github/workflows/python-ci.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/scorecards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/.github/workflows/scorecards.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.openapi-generator-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/.openapi-generator-ignore -------------------------------------------------------------------------------- /.openapi-generator/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/.openapi-generator/FILES -------------------------------------------------------------------------------- /.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.2.1 -------------------------------------------------------------------------------- /.vscode/cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/.vscode/cspell.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/SECURITY.md -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- 1 | virtualenvs.in-project = true 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.gitignore: -------------------------------------------------------------------------------- 1 | # Empty directory 2 | -------------------------------------------------------------------------------- /docs/_static/openapi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/docs/_static/openapi.html -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/docs/authors.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/openapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/docs/openapi.rst -------------------------------------------------------------------------------- /openapitools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/openapitools.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/package.json -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/pyproject.toml -------------------------------------------------------------------------------- /schemas/cpe.match.oas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/schemas/cpe.match.oas.yml -------------------------------------------------------------------------------- /schemas/cpe.oas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/schemas/cpe.oas.yml -------------------------------------------------------------------------------- /schemas/cve.history.oas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/schemas/cve.history.oas.yml -------------------------------------------------------------------------------- /schemas/cve.oas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/schemas/cve.oas.yml -------------------------------------------------------------------------------- /schemas/nvd.oas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/schemas/nvd.oas.yml -------------------------------------------------------------------------------- /src/nvd_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/__init__.py -------------------------------------------------------------------------------- /src/nvd_api/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/client.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/__init__.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/api/__init__.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/api/products_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/api/products_api.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/api/vulnerabilities_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/api/vulnerabilities_api.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/api_client.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/apis/__init__.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/configuration.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/exceptions.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/__init__.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cpe_match_oas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cpe_match_oas.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cpe_match_oas_match_strings_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cpe_match_oas_match_strings_inner.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cpe_match_oas_match_strings_inner_match_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cpe_match_oas_match_strings_inner_match_string.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cpe_match_oas_match_strings_inner_match_string_matches_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cpe_match_oas_match_strings_inner_match_string_matches_inner.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cpe_oas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cpe_oas.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cpe_oas_products_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cpe_oas_products_inner.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cpe_oas_products_inner_cpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cpe_oas_products_inner_cpe.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cpe_oas_products_inner_cpe_deprecated_by_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cpe_oas_products_inner_cpe_deprecated_by_inner.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cpe_oas_products_inner_cpe_refs_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cpe_oas_products_inner_cpe_refs_inner.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cpe_oas_products_inner_cpe_titles_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cpe_oas_products_inner_cpe_titles_inner.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cve_history_oas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cve_history_oas.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cve_history_oas_cve_changes_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cve_history_oas_cve_changes_inner.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cve_history_oas_cve_changes_inner_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cve_history_oas_cve_changes_inner_change.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cve_history_oas_cve_changes_inner_change_details_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cve_history_oas_cve_changes_inner_change_details_inner.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cve_oas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cve_oas.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve_configurations_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve_configurations_inner.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve_configurations_inner_nodes_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve_configurations_inner_nodes_inner.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve_configurations_inner_nodes_inner_cpe_match_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve_configurations_inner_nodes_inner_cpe_match_inner.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve_descriptions_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve_descriptions_inner.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve_metrics.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve_metrics_cvss_metric_v2_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve_metrics_cvss_metric_v2_inner.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve_metrics_cvss_metric_v30_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve_metrics_cvss_metric_v30_inner.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve_metrics_cvss_metric_v31_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve_metrics_cvss_metric_v31_inner.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve_references_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve_references_inner.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve_vendor_comments_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve_vendor_comments_inner.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve_weaknesses_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/cve_oas_vulnerabilities_inner_cve_weaknesses_inner.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/json_schema_for_common_vulnerability_scoring_system_version20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/json_schema_for_common_vulnerability_scoring_system_version20.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/json_schema_for_common_vulnerability_scoring_system_version30.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/json_schema_for_common_vulnerability_scoring_system_version30.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model/json_schema_for_common_vulnerability_scoring_system_version31.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model/json_schema_for_common_vulnerability_scoring_system_version31.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/model_utils.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/models/__init__.py -------------------------------------------------------------------------------- /src/nvd_api/low_api/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/src/nvd_api/low_api/rest.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/low_api/test_cpe_match_oas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/tests/low_api/test_cpe_match_oas.py -------------------------------------------------------------------------------- /tests/low_api/test_cpe_oas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/tests/low_api/test_cpe_oas.py -------------------------------------------------------------------------------- /tests/low_api/test_cve_history_oas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/tests/low_api/test_cve_history_oas.py -------------------------------------------------------------------------------- /tests/low_api/test_cve_oas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/tests/low_api/test_cve_oas.py -------------------------------------------------------------------------------- /tests/low_api/test_products_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/tests/low_api/test_products_api.py -------------------------------------------------------------------------------- /tests/low_api/test_vulnerabilities_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/tests/low_api/test_vulnerabilities_api.py -------------------------------------------------------------------------------- /tests/test_get_cpe_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/tests/test_get_cpe_match.py -------------------------------------------------------------------------------- /tests/test_get_cpes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/tests/test_get_cpes.py -------------------------------------------------------------------------------- /tests/test_get_cve_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/tests/test_get_cve_history.py -------------------------------------------------------------------------------- /tests/test_get_cves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/tests/test_get_cves.py -------------------------------------------------------------------------------- /tests/test_sleep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/tests/test_sleep.py -------------------------------------------------------------------------------- /tools/push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/tools/push.py -------------------------------------------------------------------------------- /tools/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/tools/release.py -------------------------------------------------------------------------------- /tools/sbom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/tools/sbom.py -------------------------------------------------------------------------------- /tools/sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/tools/sphinx.py -------------------------------------------------------------------------------- /usage/lowlevel-api/CpeMatchOas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CpeMatchOas.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CpeMatchOasMatchStringsInner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CpeMatchOasMatchStringsInner.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CpeMatchOasMatchStringsInnerMatchString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CpeMatchOasMatchStringsInnerMatchString.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CpeMatchOasMatchStringsInnerMatchStringMatchesInner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CpeMatchOasMatchStringsInnerMatchStringMatchesInner.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CpeOas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CpeOas.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CpeOasProductsInner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CpeOasProductsInner.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CpeOasProductsInnerCpe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CpeOasProductsInnerCpe.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CpeOasProductsInnerCpeDeprecatedByInner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CpeOasProductsInnerCpeDeprecatedByInner.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CpeOasProductsInnerCpeRefsInner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CpeOasProductsInnerCpeRefsInner.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CpeOasProductsInnerCpeTitlesInner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CpeOasProductsInnerCpeTitlesInner.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CveHistoryOas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CveHistoryOas.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CveHistoryOasCveChangesInner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CveHistoryOasCveChangesInner.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CveHistoryOasCveChangesInnerChange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CveHistoryOasCveChangesInnerChange.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CveHistoryOasCveChangesInnerChangeDetailsInner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CveHistoryOasCveChangesInnerChangeDetailsInner.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CveOas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CveOas.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CveOasVulnerabilitiesInner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CveOasVulnerabilitiesInner.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CveOasVulnerabilitiesInnerCve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CveOasVulnerabilitiesInnerCve.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CveOasVulnerabilitiesInnerCveConfigurationsInner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CveOasVulnerabilitiesInnerCveConfigurationsInner.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CveOasVulnerabilitiesInnerCveConfigurationsInnerNodesInner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CveOasVulnerabilitiesInnerCveConfigurationsInnerNodesInner.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CveOasVulnerabilitiesInnerCveConfigurationsInnerNodesInnerCpeMatchInner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CveOasVulnerabilitiesInnerCveConfigurationsInnerNodesInnerCpeMatchInner.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CveOasVulnerabilitiesInnerCveDescriptionsInner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CveOasVulnerabilitiesInnerCveDescriptionsInner.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CveOasVulnerabilitiesInnerCveMetrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CveOasVulnerabilitiesInnerCveMetrics.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CveOasVulnerabilitiesInnerCveMetricsCvssMetricV2Inner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CveOasVulnerabilitiesInnerCveMetricsCvssMetricV2Inner.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CveOasVulnerabilitiesInnerCveMetricsCvssMetricV30Inner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CveOasVulnerabilitiesInnerCveMetricsCvssMetricV30Inner.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CveOasVulnerabilitiesInnerCveMetricsCvssMetricV31Inner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CveOasVulnerabilitiesInnerCveMetricsCvssMetricV31Inner.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CveOasVulnerabilitiesInnerCveReferencesInner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CveOasVulnerabilitiesInnerCveReferencesInner.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CveOasVulnerabilitiesInnerCveVendorCommentsInner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CveOasVulnerabilitiesInnerCveVendorCommentsInner.md -------------------------------------------------------------------------------- /usage/lowlevel-api/CveOasVulnerabilitiesInnerCveWeaknessesInner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/CveOasVulnerabilitiesInnerCveWeaknessesInner.md -------------------------------------------------------------------------------- /usage/lowlevel-api/JSONSchemaForCommonVulnerabilityScoringSystemVersion20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/JSONSchemaForCommonVulnerabilityScoringSystemVersion20.md -------------------------------------------------------------------------------- /usage/lowlevel-api/JSONSchemaForCommonVulnerabilityScoringSystemVersion30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/JSONSchemaForCommonVulnerabilityScoringSystemVersion30.md -------------------------------------------------------------------------------- /usage/lowlevel-api/JSONSchemaForCommonVulnerabilityScoringSystemVersion31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/JSONSchemaForCommonVulnerabilityScoringSystemVersion31.md -------------------------------------------------------------------------------- /usage/lowlevel-api/ProductsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/ProductsApi.md -------------------------------------------------------------------------------- /usage/lowlevel-api/VulnerabilitiesApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannkyo/nvd-api/HEAD/usage/lowlevel-api/VulnerabilitiesApi.md --------------------------------------------------------------------------------