├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── annotation_format_examples ├── CVE-2020-9493.toml ├── CVE-2023-22081.toml ├── CVE-2023-38545.toml ├── CVE-2024-20925.toml ├── CVE-2024-2126.toml ├── CVE-2024-24783.toml └── README.md ├── cve-text-analyzer ├── go.mod ├── go.sum ├── internal │ ├── reader │ │ ├── cpe │ │ │ └── id.go │ │ ├── cve │ │ │ ├── cve.go │ │ │ ├── cve_test.go │ │ │ ├── normalize_cve.go │ │ │ ├── reader.go │ │ │ └── rec.go │ │ └── nvd │ │ │ └── nvd_result_reader.go │ ├── search │ │ ├── build_indexes.go │ │ ├── build_indexes_test.go │ │ ├── indexes.go │ │ ├── indexes_serialization_test.go │ │ ├── product.go │ │ ├── remove_high_frequency_terms.go │ │ ├── remove_low_weight_terms.go │ │ ├── remove_terms_unrelated_cpes.go │ │ ├── weight_by_frequency.go │ │ ├── weight_by_id_terms.go │ │ └── weight_by_year.go │ ├── termset │ │ ├── term_set.go │ │ └── term_set_test.go │ └── util │ │ ├── set.go │ │ ├── text_split.go │ │ ├── text_split_test.go │ │ ├── timer.go │ │ ├── util.go │ │ └── util_test.go ├── main.go ├── print_cves_without_cpes.go ├── process.go ├── process_test.go ├── testdata │ ├── cves │ │ ├── 2022 │ │ │ └── 4xxx │ │ │ │ └── CVE-2022-4172.json │ │ └── 2023 │ │ │ └── 25xxx │ │ │ ├── CVE-2023-25012.json │ │ │ ├── CVE-2023-25021.json │ │ │ ├── CVE-2023-25072.json │ │ │ ├── CVE-2023-25078.json │ │ │ ├── CVE-2023-25130.json │ │ │ └── CVE-2023-25429.json │ └── results.db └── util.go └── nvd ├── .gitignore ├── README.md ├── check.py ├── data ├── cpe │ ├── curated │ │ └── lookup │ │ │ ├── by_collection_url_and_package_name │ │ │ ├── application.json │ │ │ ├── hardware.json │ │ │ └── os.json │ │ │ ├── by_product │ │ │ ├── application.json │ │ │ ├── hardware.json │ │ │ └── os.json │ │ │ └── by_vendor_and_product │ │ │ ├── application.json │ │ │ ├── hardware.json │ │ │ └── os.json │ └── generated │ │ └── lookup │ │ ├── by_collection_url_and_package_name │ │ ├── application.json │ │ ├── hardware.json │ │ └── os.json │ │ ├── by_product │ │ ├── application.json │ │ ├── hardware.json │ │ └── os.json │ │ └── by_vendor_and_product │ │ ├── application.json │ │ ├── hardware.json │ │ └── os.json ├── cves_with_no_mapping.json ├── no_collection_url_and_package_to_cpes.json ├── no_vendor_and_product_cpe_mapping.json └── wordpress │ ├── plugins │ └── by_name.json │ └── themes │ └── by_name.json ├── pyproject.toml ├── scripts ├── __init__.py ├── compare_to_distros.py ├── compare_to_github.py ├── convert_dates.py ├── cpe_lookups_from_cve5.py ├── cpe_lookups_from_syft_index.py ├── cpe_match.py ├── enrich_package_metadata.py ├── linux_kernel.py ├── normalization.py ├── reconcile_nvd.py ├── update.sh ├── update_match_criteria_ids.py ├── vulnerability_data_spec_from_upstream_cve5.py ├── wordpress_name_to_slug.py └── wordpress_update.py └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/README.md -------------------------------------------------------------------------------- /annotation_format_examples/CVE-2020-9493.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/annotation_format_examples/CVE-2020-9493.toml -------------------------------------------------------------------------------- /annotation_format_examples/CVE-2023-22081.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/annotation_format_examples/CVE-2023-22081.toml -------------------------------------------------------------------------------- /annotation_format_examples/CVE-2023-38545.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/annotation_format_examples/CVE-2023-38545.toml -------------------------------------------------------------------------------- /annotation_format_examples/CVE-2024-20925.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/annotation_format_examples/CVE-2024-20925.toml -------------------------------------------------------------------------------- /annotation_format_examples/CVE-2024-2126.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/annotation_format_examples/CVE-2024-2126.toml -------------------------------------------------------------------------------- /annotation_format_examples/CVE-2024-24783.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/annotation_format_examples/CVE-2024-24783.toml -------------------------------------------------------------------------------- /annotation_format_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/annotation_format_examples/README.md -------------------------------------------------------------------------------- /cve-text-analyzer/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/go.mod -------------------------------------------------------------------------------- /cve-text-analyzer/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/go.sum -------------------------------------------------------------------------------- /cve-text-analyzer/internal/reader/cpe/id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/reader/cpe/id.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/reader/cve/cve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/reader/cve/cve.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/reader/cve/cve_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/reader/cve/cve_test.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/reader/cve/normalize_cve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/reader/cve/normalize_cve.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/reader/cve/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/reader/cve/reader.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/reader/cve/rec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/reader/cve/rec.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/reader/nvd/nvd_result_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/reader/nvd/nvd_result_reader.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/search/build_indexes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/search/build_indexes.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/search/build_indexes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/search/build_indexes_test.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/search/indexes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/search/indexes.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/search/indexes_serialization_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/search/indexes_serialization_test.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/search/product.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/search/product.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/search/remove_high_frequency_terms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/search/remove_high_frequency_terms.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/search/remove_low_weight_terms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/search/remove_low_weight_terms.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/search/remove_terms_unrelated_cpes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/search/remove_terms_unrelated_cpes.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/search/weight_by_frequency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/search/weight_by_frequency.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/search/weight_by_id_terms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/search/weight_by_id_terms.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/search/weight_by_year.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/search/weight_by_year.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/termset/term_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/termset/term_set.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/termset/term_set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/termset/term_set_test.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/util/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/util/set.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/util/text_split.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/util/text_split.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/util/text_split_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/util/text_split_test.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/util/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/util/timer.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/util/util.go -------------------------------------------------------------------------------- /cve-text-analyzer/internal/util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/internal/util/util_test.go -------------------------------------------------------------------------------- /cve-text-analyzer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/main.go -------------------------------------------------------------------------------- /cve-text-analyzer/print_cves_without_cpes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/print_cves_without_cpes.go -------------------------------------------------------------------------------- /cve-text-analyzer/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/process.go -------------------------------------------------------------------------------- /cve-text-analyzer/process_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/process_test.go -------------------------------------------------------------------------------- /cve-text-analyzer/testdata/cves/2022/4xxx/CVE-2022-4172.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/testdata/cves/2022/4xxx/CVE-2022-4172.json -------------------------------------------------------------------------------- /cve-text-analyzer/testdata/cves/2023/25xxx/CVE-2023-25012.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/testdata/cves/2023/25xxx/CVE-2023-25012.json -------------------------------------------------------------------------------- /cve-text-analyzer/testdata/cves/2023/25xxx/CVE-2023-25021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/testdata/cves/2023/25xxx/CVE-2023-25021.json -------------------------------------------------------------------------------- /cve-text-analyzer/testdata/cves/2023/25xxx/CVE-2023-25072.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/testdata/cves/2023/25xxx/CVE-2023-25072.json -------------------------------------------------------------------------------- /cve-text-analyzer/testdata/cves/2023/25xxx/CVE-2023-25078.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/testdata/cves/2023/25xxx/CVE-2023-25078.json -------------------------------------------------------------------------------- /cve-text-analyzer/testdata/cves/2023/25xxx/CVE-2023-25130.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/testdata/cves/2023/25xxx/CVE-2023-25130.json -------------------------------------------------------------------------------- /cve-text-analyzer/testdata/cves/2023/25xxx/CVE-2023-25429.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/testdata/cves/2023/25xxx/CVE-2023-25429.json -------------------------------------------------------------------------------- /cve-text-analyzer/testdata/results.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/testdata/results.db -------------------------------------------------------------------------------- /cve-text-analyzer/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/cve-text-analyzer/util.go -------------------------------------------------------------------------------- /nvd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/.gitignore -------------------------------------------------------------------------------- /nvd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/README.md -------------------------------------------------------------------------------- /nvd/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/check.py -------------------------------------------------------------------------------- /nvd/data/cpe/curated/lookup/by_collection_url_and_package_name/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/data/cpe/curated/lookup/by_collection_url_and_package_name/application.json -------------------------------------------------------------------------------- /nvd/data/cpe/curated/lookup/by_collection_url_and_package_name/hardware.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /nvd/data/cpe/curated/lookup/by_collection_url_and_package_name/os.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/data/cpe/curated/lookup/by_collection_url_and_package_name/os.json -------------------------------------------------------------------------------- /nvd/data/cpe/curated/lookup/by_product/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/data/cpe/curated/lookup/by_product/application.json -------------------------------------------------------------------------------- /nvd/data/cpe/curated/lookup/by_product/hardware.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /nvd/data/cpe/curated/lookup/by_product/os.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /nvd/data/cpe/curated/lookup/by_vendor_and_product/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/data/cpe/curated/lookup/by_vendor_and_product/application.json -------------------------------------------------------------------------------- /nvd/data/cpe/curated/lookup/by_vendor_and_product/hardware.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/data/cpe/curated/lookup/by_vendor_and_product/hardware.json -------------------------------------------------------------------------------- /nvd/data/cpe/curated/lookup/by_vendor_and_product/os.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/data/cpe/curated/lookup/by_vendor_and_product/os.json -------------------------------------------------------------------------------- /nvd/data/cpe/generated/lookup/by_collection_url_and_package_name/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/data/cpe/generated/lookup/by_collection_url_and_package_name/application.json -------------------------------------------------------------------------------- /nvd/data/cpe/generated/lookup/by_collection_url_and_package_name/hardware.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /nvd/data/cpe/generated/lookup/by_collection_url_and_package_name/os.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /nvd/data/cpe/generated/lookup/by_product/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/data/cpe/generated/lookup/by_product/application.json -------------------------------------------------------------------------------- /nvd/data/cpe/generated/lookup/by_product/hardware.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /nvd/data/cpe/generated/lookup/by_product/os.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /nvd/data/cpe/generated/lookup/by_vendor_and_product/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/data/cpe/generated/lookup/by_vendor_and_product/application.json -------------------------------------------------------------------------------- /nvd/data/cpe/generated/lookup/by_vendor_and_product/hardware.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /nvd/data/cpe/generated/lookup/by_vendor_and_product/os.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /nvd/data/cves_with_no_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/data/cves_with_no_mapping.json -------------------------------------------------------------------------------- /nvd/data/no_collection_url_and_package_to_cpes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/data/no_collection_url_and_package_to_cpes.json -------------------------------------------------------------------------------- /nvd/data/no_vendor_and_product_cpe_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/data/no_vendor_and_product_cpe_mapping.json -------------------------------------------------------------------------------- /nvd/data/wordpress/plugins/by_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/data/wordpress/plugins/by_name.json -------------------------------------------------------------------------------- /nvd/data/wordpress/themes/by_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/data/wordpress/themes/by_name.json -------------------------------------------------------------------------------- /nvd/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/pyproject.toml -------------------------------------------------------------------------------- /nvd/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nvd/scripts/compare_to_distros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/scripts/compare_to_distros.py -------------------------------------------------------------------------------- /nvd/scripts/compare_to_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/scripts/compare_to_github.py -------------------------------------------------------------------------------- /nvd/scripts/convert_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/scripts/convert_dates.py -------------------------------------------------------------------------------- /nvd/scripts/cpe_lookups_from_cve5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/scripts/cpe_lookups_from_cve5.py -------------------------------------------------------------------------------- /nvd/scripts/cpe_lookups_from_syft_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/scripts/cpe_lookups_from_syft_index.py -------------------------------------------------------------------------------- /nvd/scripts/cpe_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/scripts/cpe_match.py -------------------------------------------------------------------------------- /nvd/scripts/enrich_package_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/scripts/enrich_package_metadata.py -------------------------------------------------------------------------------- /nvd/scripts/linux_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/scripts/linux_kernel.py -------------------------------------------------------------------------------- /nvd/scripts/normalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/scripts/normalization.py -------------------------------------------------------------------------------- /nvd/scripts/reconcile_nvd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/scripts/reconcile_nvd.py -------------------------------------------------------------------------------- /nvd/scripts/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/scripts/update.sh -------------------------------------------------------------------------------- /nvd/scripts/update_match_criteria_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/scripts/update_match_criteria_ids.py -------------------------------------------------------------------------------- /nvd/scripts/vulnerability_data_spec_from_upstream_cve5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/scripts/vulnerability_data_spec_from_upstream_cve5.py -------------------------------------------------------------------------------- /nvd/scripts/wordpress_name_to_slug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/scripts/wordpress_name_to_slug.py -------------------------------------------------------------------------------- /nvd/scripts/wordpress_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/scripts/wordpress_update.py -------------------------------------------------------------------------------- /nvd/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vulnerability-data-tools/HEAD/nvd/uv.lock --------------------------------------------------------------------------------