├── .binny.yaml ├── .dockerignore ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md ├── actions │ ├── bootstrap │ │ └── action.yaml │ └── quality-gate │ │ └── action.yaml ├── dependabot.yml ├── runs-on.yml ├── scripts │ ├── dev-shell.sh │ ├── trigger-release.sh │ └── update-dev-db.sh ├── workflows │ ├── dependabot-automation.yaml │ ├── nightly-quality-gate.yaml │ ├── oss-project-board-add.yaml │ ├── pr-quality-gate.yaml │ ├── release.yaml │ ├── remove-awaiting-response-label.yaml │ ├── validate-github-actions.yaml │ └── validations.yaml └── zizmor.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEVELOPING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── RELEASE.md ├── Taskfile.yaml ├── docs ├── grype-db-actions.drawio ├── vunnel+grype-db-workflow.drawio └── vunnel-run-workflow.drawio ├── example ├── .gitignore ├── README.md ├── awesome │ ├── __init__.py │ └── parser.py └── run.py ├── llms.txt ├── pyproject.toml ├── pytest.ini ├── schema ├── match-exclusion │ ├── README.md │ └── schema-1.0.0.json ├── provider-archive-listing │ ├── README.md │ └── schema-1.0.0.json ├── provider-workspace-state │ ├── README.md │ ├── schema-1.0.0.json │ ├── schema-1.0.1.json │ ├── schema-1.0.2.json │ └── schema-1.0.3.json └── vulnerability │ ├── annotated-openvex │ ├── README.md │ └── schema-1.0.0.json │ ├── epss │ ├── README.md │ └── schema-1.0.0.json │ ├── github-security-advisory │ ├── README.md │ ├── schema-1.0.0.json │ ├── schema-1.0.1.json │ └── schema-1.0.2.json │ ├── known-exploited │ ├── README.md │ └── schema-1.0.0.json │ ├── msrc │ ├── README.md │ ├── schema-1.0.0.json │ └── schema-1.0.1.json │ ├── nvd │ ├── README.md │ ├── cvss │ │ ├── README.md │ │ ├── schema-v2.0.json │ │ ├── schema-v3.0.json │ │ └── schema-v3.1.json │ ├── schema-1.0.0.json │ └── schema-1.0.1.json │ ├── os │ ├── README.md │ ├── schema-1.0.0.json │ ├── schema-1.0.1.json │ ├── schema-1.0.2.json │ └── schema-1.1.0.json │ └── osv │ ├── README.md │ ├── schema-1.3.1.json │ ├── schema-1.5.0.json │ ├── schema-1.6.1.json │ └── schema-1.7.0.json ├── scripts ├── __init__.py └── format-json-snapshots.py ├── src └── vunnel │ ├── __init__.py │ ├── __main__.py │ ├── cli │ ├── __init__.py │ ├── cli.py │ └── config.py │ ├── distribution.py │ ├── provider.py │ ├── providers │ ├── __init__.py │ ├── alma │ │ ├── __init__.py │ │ ├── git.py │ │ └── parser.py │ ├── alpine │ │ ├── __init__.py │ │ └── parser.py │ ├── amazon │ │ ├── __init__.py │ │ └── parser.py │ ├── bitnami │ │ ├── __init__.py │ │ ├── git.py │ │ └── parser.py │ ├── chainguard │ │ └── __init__.py │ ├── chainguard_libraries │ │ ├── __init__.py │ │ └── openvex_parser.py │ ├── debian │ │ ├── __init__.py │ │ └── parser.py │ ├── echo │ │ ├── __init__.py │ │ └── parser.py │ ├── epss │ │ ├── __init__.py │ │ └── manager.py │ ├── github │ │ ├── __init__.py │ │ └── parser.py │ ├── kev │ │ ├── __init__.py │ │ └── manager.py │ ├── mariner │ │ ├── DEVELOPING.md │ │ ├── __init__.py │ │ ├── generate_models.py │ │ ├── model │ │ │ ├── __init__.py │ │ │ └── generated.py │ │ └── parser.py │ ├── minimos │ │ ├── __init__.py │ │ └── parser.py │ ├── nvd │ │ ├── __init__.py │ │ ├── api.py │ │ ├── manager.py │ │ └── overrides.py │ ├── oracle │ │ ├── __init__.py │ │ └── parser.py │ ├── rhel │ │ ├── __init__.py │ │ ├── csaf_client.py │ │ ├── csaf_parser.py │ │ ├── oval_parser.py │ │ ├── parser.py │ │ └── rhsa_provider.py │ ├── rocky │ │ ├── __init__.py │ │ ├── client.py │ │ └── parser.py │ ├── sles │ │ ├── __init__.py │ │ └── parser.py │ ├── ubuntu │ │ ├── __init__.py │ │ ├── git.py │ │ └── parser.py │ └── wolfi │ │ ├── __init__.py │ │ └── parser.py │ ├── result.py │ ├── schema.py │ ├── tool │ ├── __init__.py │ └── fixdate │ │ ├── __init__.py │ │ ├── ecosystem.py │ │ ├── finder.py │ │ ├── first_observed.py │ │ ├── grype_db_first_observed.py │ │ └── vunnel_first_observed.py │ ├── utils │ ├── __init__.py │ ├── archive.py │ ├── csaf_types.py │ ├── date.py │ ├── fdb.py │ ├── hasher.py │ ├── http_wrapper.py │ ├── osv.py │ ├── oval_parser.py │ ├── oval_v2.py │ ├── rpm.py │ └── vulnerability.py │ └── workspace.py ├── tests ├── __init__.py ├── conftest.py ├── quality │ ├── .gitignore │ ├── .yardstick │ │ └── labels │ ├── Makefile │ ├── README.md │ ├── config.yaml │ └── configure.py └── unit │ ├── cli │ ├── __init__.py │ ├── test-fixtures │ │ ├── data-1 │ │ │ └── wolfi │ │ │ │ ├── checksums │ │ │ │ ├── input │ │ │ │ └── secdb │ │ │ │ │ └── os │ │ │ │ │ └── security.json │ │ │ │ ├── metadata.json │ │ │ │ └── results │ │ │ │ └── wolfi:rolling │ │ │ │ ├── CVE-2016-2781.json │ │ │ │ ├── CVE-2017-8806.json │ │ │ │ ├── CVE-2018-1000156.json │ │ │ │ ├── CVE-2018-20969.json │ │ │ │ ├── CVE-2018-25032.json │ │ │ │ ├── CVE-2018-6951.json │ │ │ │ ├── CVE-2018-6952.json │ │ │ │ ├── CVE-2019-13636.json │ │ │ │ ├── CVE-2019-13638.json │ │ │ │ ├── CVE-2019-20633.json │ │ │ │ ├── CVE-2019-6293.json │ │ │ │ ├── CVE-2020-10735.json │ │ │ │ ├── CVE-2020-8927.json │ │ │ │ ├── CVE-2021-30218.json │ │ │ │ ├── CVE-2021-30219.json │ │ │ │ ├── CVE-2021-43618.json │ │ │ │ ├── CVE-2022-0543.json │ │ │ │ ├── CVE-2022-1586.json │ │ │ │ ├── CVE-2022-1587.json │ │ │ │ ├── CVE-2022-26691.json │ │ │ │ ├── CVE-2022-27404.json │ │ │ │ ├── CVE-2022-27405.json │ │ │ │ ├── CVE-2022-27406.json │ │ │ │ ├── CVE-2022-28391.json │ │ │ │ ├── CVE-2022-28506.json │ │ │ │ ├── CVE-2022-29458.json │ │ │ │ ├── CVE-2022-30065.json │ │ │ │ ├── CVE-2022-32221.json │ │ │ │ ├── CVE-2022-3358.json │ │ │ │ ├── CVE-2022-3602.json │ │ │ │ ├── CVE-2022-36227.json │ │ │ │ ├── CVE-2022-3647.json │ │ │ │ ├── CVE-2022-3734.json │ │ │ │ ├── CVE-2022-37434.json │ │ │ │ ├── CVE-2022-3786.json │ │ │ │ ├── CVE-2022-38126.json │ │ │ │ ├── CVE-2022-38128.json │ │ │ │ ├── CVE-2022-38533.json │ │ │ │ ├── CVE-2022-39046.json │ │ │ │ ├── CVE-2022-39253.json │ │ │ │ ├── CVE-2022-39260.json │ │ │ │ ├── CVE-2022-3996.json │ │ │ │ ├── CVE-2022-40303.json │ │ │ │ ├── CVE-2022-40304.json │ │ │ │ ├── CVE-2022-40674.json │ │ │ │ ├── CVE-2022-41716.json │ │ │ │ ├── CVE-2022-41717.json │ │ │ │ ├── CVE-2022-41720.json │ │ │ │ ├── CVE-2022-42010.json │ │ │ │ ├── CVE-2022-42011.json │ │ │ │ ├── CVE-2022-42012.json │ │ │ │ ├── CVE-2022-42916.json │ │ │ │ ├── CVE-2022-43551.json │ │ │ │ ├── CVE-2022-43552.json │ │ │ │ ├── CVE-2022-43680.json │ │ │ │ └── CVE-2022-46908.json │ │ ├── full.yaml │ │ └── minimal.yaml │ ├── test_cli.py │ └── test_config.py │ ├── providers │ ├── alma │ │ ├── test-fixtures │ │ │ └── osv-database │ │ │ │ └── advisories │ │ │ │ ├── almalinux8 │ │ │ │ ├── ALBA-2021:4378.json │ │ │ │ ├── ALSA-2023:4520.json │ │ │ │ └── ALSA-2023:5259.json │ │ │ │ └── almalinux9 │ │ │ │ ├── ALSA-2022:8194.json │ │ │ │ └── ALSA-2024:2433.json │ │ └── test_alma.py │ ├── alpine │ │ ├── test-fixtures │ │ │ ├── input │ │ │ │ └── secdb │ │ │ │ │ └── v3.15 │ │ │ │ │ ├── community.yaml │ │ │ │ │ └── main.yaml │ │ │ └── snapshots │ │ │ │ └── 3.15 │ │ │ │ ├── cve-2018-1071.json │ │ │ │ ├── cve-2018-1083.json │ │ │ │ ├── cve-2018-25032.json │ │ │ │ ├── cve-2019-11922.json │ │ │ │ ├── cve-2019-13132.json │ │ │ │ ├── cve-2019-20044.json │ │ │ │ ├── cve-2019-6250.json │ │ │ │ ├── cve-2019-9210.json │ │ │ │ ├── cve-2020-14929.json │ │ │ │ ├── cve-2020-15166.json │ │ │ │ ├── cve-2021-24031.json │ │ │ │ ├── cve-2021-24032.json │ │ │ │ ├── cve-2021-38370.json │ │ │ │ ├── cve-2021-45444.json │ │ │ │ ├── cve-2022-1271.json │ │ │ │ └── cve-2022-37434.json │ │ └── test_alpine.py │ ├── amazon │ │ ├── __init__.py │ │ ├── test-fixtures │ │ │ ├── input │ │ │ │ ├── 2022_html │ │ │ │ │ └── ALAS-2021-001 │ │ │ │ ├── 2022_rss.xml │ │ │ │ ├── 2023_html │ │ │ │ │ └── ALAS-2023-126 │ │ │ │ ├── 2023_rss.xml │ │ │ │ ├── 2_html │ │ │ │ │ └── ALAS-2018-939 │ │ │ │ └── 2_rss.xml │ │ │ ├── mock_html │ │ │ ├── mock_rss │ │ │ └── snapshots │ │ │ │ ├── amzn:2 │ │ │ │ └── alas-2018-939.json │ │ │ │ ├── amzn:2022 │ │ │ │ └── alas-2021-001.json │ │ │ │ └── amzn:2023 │ │ │ │ └── alas-2023-126.json │ │ └── test_amazon.py │ ├── bitnami │ │ ├── test-fixtures │ │ │ ├── snapshots │ │ │ │ ├── bit-brotli-2020-8927.json │ │ │ │ └── bit-consul-2021-37219.json │ │ │ └── vulndb │ │ │ │ └── data │ │ │ │ ├── brotli │ │ │ │ └── BIT-brotli-2020-8927.json │ │ │ │ └── consul │ │ │ │ └── BIT-consul-2021-37219.json │ │ └── test_bitnami.py │ ├── chainguard │ │ ├── __init__.py │ │ ├── test-fixtures │ │ │ ├── input │ │ │ │ └── secdb │ │ │ │ │ └── security.json │ │ │ └── snapshots │ │ │ │ └── chainguard:rolling │ │ │ │ ├── CVE-2007-2728.json │ │ │ │ ├── CVE-2007-3205.json │ │ │ │ ├── CVE-2007-4559.json │ │ │ │ ├── CVE-2007-4596.json │ │ │ │ ├── CVE-2010-4756.json │ │ │ │ ├── CVE-2016-2102.json │ │ │ │ ├── CVE-2016-2781.json │ │ │ │ ├── CVE-2016-9131.json │ │ │ │ ├── CVE-2016-9147.json │ │ │ │ ├── CVE-2016-9444.json │ │ │ │ ├── CVE-2017-3136.json │ │ │ │ ├── CVE-2017-3137.json │ │ │ │ ├── CVE-2017-3138.json │ │ │ │ ├── CVE-2017-3145.json │ │ │ │ ├── CVE-2017-7507.json │ │ │ │ ├── CVE-2017-8806.json │ │ │ │ ├── CVE-2018-1000156.json │ │ │ │ ├── CVE-2018-12020.json │ │ │ │ ├── CVE-2018-20969.json │ │ │ │ ├── CVE-2018-25032.json │ │ │ │ ├── CVE-2018-5736.json │ │ │ │ ├── CVE-2018-5737.json │ │ │ │ ├── CVE-2018-5738.json │ │ │ │ ├── CVE-2018-5740.json │ │ │ │ ├── CVE-2018-5743.json │ │ │ │ ├── CVE-2018-5744.json │ │ │ │ ├── CVE-2018-5745.json │ │ │ │ ├── CVE-2018-6951.json │ │ │ │ ├── CVE-2018-6952.json │ │ │ │ ├── CVE-2019-1010022.json │ │ │ │ ├── CVE-2019-1010023.json │ │ │ │ ├── CVE-2019-1010024.json │ │ │ │ ├── CVE-2019-1010025.json │ │ │ │ ├── CVE-2019-12290.json │ │ │ │ ├── CVE-2019-13636.json │ │ │ │ ├── CVE-2019-13638.json │ │ │ │ ├── CVE-2019-14855.json │ │ │ │ ├── CVE-2019-18224.json │ │ │ │ ├── CVE-2019-20633.json │ │ │ │ ├── CVE-2019-3829.json │ │ │ │ ├── CVE-2019-3836.json │ │ │ │ ├── CVE-2019-6293.json │ │ │ │ ├── CVE-2019-6465.json │ │ │ │ ├── CVE-2019-6467.json │ │ │ │ ├── CVE-2019-6470.json │ │ │ │ ├── CVE-2019-6471.json │ │ │ │ ├── CVE-2019-6475.json │ │ │ │ ├── CVE-2019-6476.json │ │ │ │ ├── CVE-2019-6477.json │ │ │ │ ├── CVE-2019-6706.json │ │ │ │ ├── CVE-2020-10735.json │ │ │ │ ├── CVE-2020-11501.json │ │ │ │ ├── CVE-2020-13777.json │ │ │ │ ├── CVE-2020-24659.json │ │ │ │ ├── CVE-2020-25125.json │ │ │ │ ├── CVE-2020-29509.json │ │ │ │ ├── CVE-2020-29511.json │ │ │ │ ├── CVE-2020-8616.json │ │ │ │ ├── CVE-2020-8617.json │ │ │ │ ├── CVE-2020-8618.json │ │ │ │ ├── CVE-2020-8619.json │ │ │ │ ├── CVE-2020-8620.json │ │ │ │ ├── CVE-2020-8621.json │ │ │ │ ├── CVE-2020-8622.json │ │ │ │ ├── CVE-2020-8623.json │ │ │ │ ├── CVE-2020-8624.json │ │ │ │ ├── CVE-2020-8625.json │ │ │ │ ├── CVE-2020-8927.json │ │ │ │ ├── CVE-2021-20231.json │ │ │ │ ├── CVE-2021-20232.json │ │ │ │ ├── CVE-2021-20305.json │ │ │ │ ├── CVE-2021-25214.json │ │ │ │ ├── CVE-2021-25215.json │ │ │ │ ├── CVE-2021-25216.json │ │ │ │ ├── CVE-2021-25218.json │ │ │ │ ├── CVE-2021-25219.json │ │ │ │ ├── CVE-2021-25220.json │ │ │ │ ├── CVE-2021-30218.json │ │ │ │ ├── CVE-2021-30219.json │ │ │ │ ├── CVE-2021-3121.json │ │ │ │ ├── CVE-2021-33621.json │ │ │ │ ├── CVE-2021-3580.json │ │ │ │ ├── CVE-2021-36156.json │ │ │ │ ├── CVE-2021-41803.json │ │ │ │ ├── CVE-2021-43618.json │ │ │ │ ├── CVE-2021-46848.json │ │ │ │ ├── CVE-2022-0396.json │ │ │ │ ├── CVE-2022-0543.json │ │ │ │ ├── CVE-2022-1586.json │ │ │ │ ├── CVE-2022-1587.json │ │ │ │ ├── CVE-2022-23469.json │ │ │ │ ├── CVE-2022-23521.json │ │ │ │ ├── CVE-2022-2509.json │ │ │ │ ├── CVE-2022-26691.json │ │ │ │ ├── CVE-2022-27404.json │ │ │ │ ├── CVE-2022-27405.json │ │ │ │ ├── CVE-2022-27406.json │ │ │ │ ├── CVE-2022-2795.json │ │ │ │ ├── CVE-2022-28391.json │ │ │ │ ├── CVE-2022-28506.json │ │ │ │ ├── CVE-2022-28805.json │ │ │ │ ├── CVE-2022-2881.json │ │ │ │ ├── CVE-2022-2906.json │ │ │ │ ├── CVE-2022-29458.json │ │ │ │ ├── CVE-2022-30065.json │ │ │ │ ├── CVE-2022-3080.json │ │ │ │ ├── CVE-2022-3094.json │ │ │ │ ├── CVE-2022-31107.json │ │ │ │ ├── CVE-2022-31123.json │ │ │ │ ├── CVE-2022-31130.json │ │ │ │ ├── CVE-2022-31630.json │ │ │ │ ├── CVE-2022-32221.json │ │ │ │ ├── CVE-2022-33070.json │ │ │ │ ├── CVE-2022-3358.json │ │ │ │ ├── CVE-2022-34903.json │ │ │ │ ├── CVE-2022-3515.json │ │ │ │ ├── CVE-2022-35977.json │ │ │ │ ├── CVE-2022-3602.json │ │ │ │ ├── CVE-2022-36021.json │ │ │ │ ├── CVE-2022-36227.json │ │ │ │ ├── CVE-2022-3647.json │ │ │ │ ├── CVE-2022-3734.json │ │ │ │ ├── CVE-2022-3736.json │ │ │ │ ├── CVE-2022-37434.json │ │ │ │ ├── CVE-2022-3786.json │ │ │ │ ├── CVE-2022-38126.json │ │ │ │ ├── CVE-2022-38128.json │ │ │ │ ├── CVE-2022-38177.json │ │ │ │ ├── CVE-2022-38178.json │ │ │ │ ├── CVE-2022-38533.json │ │ │ │ ├── CVE-2022-39046.json │ │ │ │ ├── CVE-2022-39201.json │ │ │ │ ├── CVE-2022-3924.json │ │ │ │ ├── CVE-2022-39253.json │ │ │ │ ├── CVE-2022-39260.json │ │ │ │ ├── CVE-2022-39379.json │ │ │ │ ├── CVE-2022-3996.json │ │ │ │ ├── CVE-2022-40303.json │ │ │ │ ├── CVE-2022-40304.json │ │ │ │ ├── CVE-2022-40674.json │ │ │ │ ├── CVE-2022-40716.json │ │ │ │ ├── CVE-2022-41716.json │ │ │ │ ├── CVE-2022-41717.json │ │ │ │ ├── CVE-2022-41720.json │ │ │ │ ├── CVE-2022-41723.json │ │ │ │ ├── CVE-2022-41862.json │ │ │ │ ├── CVE-2022-41903.json │ │ │ │ ├── CVE-2022-42010.json │ │ │ │ ├── CVE-2022-42011.json │ │ │ │ ├── CVE-2022-42012.json │ │ │ │ ├── CVE-2022-4203.json │ │ │ │ ├── CVE-2022-42916.json │ │ │ │ ├── CVE-2022-4304.json │ │ │ │ ├── CVE-2022-43551.json │ │ │ │ ├── CVE-2022-43552.json │ │ │ │ ├── CVE-2022-43680.json │ │ │ │ ├── CVE-2022-4450.json │ │ │ │ ├── CVE-2022-44617.json │ │ │ │ ├── CVE-2022-45142.json │ │ │ │ ├── CVE-2022-46153.json │ │ │ │ ├── CVE-2022-46908.json │ │ │ │ ├── CVE-2022-47015.json │ │ │ │ ├── CVE-2022-47629.json │ │ │ │ ├── CVE-2023-0215.json │ │ │ │ ├── CVE-2023-0216.json │ │ │ │ ├── CVE-2023-0217.json │ │ │ │ ├── CVE-2023-0286.json │ │ │ │ ├── CVE-2023-0401.json │ │ │ │ ├── CVE-2023-0464.json │ │ │ │ ├── CVE-2023-1127.json │ │ │ │ ├── CVE-2023-1175.json │ │ │ │ ├── CVE-2023-1264.json │ │ │ │ ├── CVE-2023-1355.json │ │ │ │ ├── CVE-2023-22458.json │ │ │ │ ├── CVE-2023-22490.json │ │ │ │ ├── CVE-2023-22499.json │ │ │ │ ├── CVE-2023-22743.json │ │ │ │ ├── CVE-2023-23946.json │ │ │ │ ├── CVE-2023-24056.json │ │ │ │ ├── CVE-2023-24532.json │ │ │ │ ├── CVE-2023-24999.json │ │ │ │ ├── CVE-2023-25136.json │ │ │ │ ├── CVE-2023-25139.json │ │ │ │ ├── CVE-2023-25155.json │ │ │ │ ├── CVE-2023-25165.json │ │ │ │ ├── CVE-2023-25725.json │ │ │ │ ├── CVE-2023-26489.json │ │ │ │ ├── CVE-2023-27477.json │ │ │ │ └── CVE-2023-27898.json │ │ └── test_chainguard.py │ ├── chainguard_libraries │ │ ├── __init__.py │ │ ├── test-fixtures │ │ │ ├── input │ │ │ │ └── openvex │ │ │ │ │ ├── all.json │ │ │ │ │ └── pypi │ │ │ │ │ ├── joblib.openvex.json │ │ │ │ │ └── urllib3.openvex.json │ │ │ └── snapshots │ │ │ │ └── openvex │ │ │ │ └── chainguard-libraries:pypi │ │ │ │ ├── CGA-48gh-376r-gw73.json │ │ │ │ └── CGA-7qjw-ggh3-pp9f.json │ │ ├── test_openvex_parser.py │ │ └── test_provider.py │ ├── debian │ │ ├── __init__.py │ │ ├── test-fixtures │ │ │ ├── input │ │ │ │ ├── DSA │ │ │ │ ├── debian.json │ │ │ │ └── legacy │ │ │ │ │ ├── debian-7 │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── results.db │ │ │ │ │ └── vulnerabilities-debian:7-0.json │ │ │ └── snapshots │ │ │ │ ├── debian:10 │ │ │ │ ├── cve-2005-3111.json │ │ │ │ ├── cve-2007-2383.json │ │ │ │ ├── cve-2008-7220.json │ │ │ │ ├── cve-2012-0833.json │ │ │ │ ├── cve-2013-1444.json │ │ │ │ └── cve-2022-0456.json │ │ │ │ ├── debian:11 │ │ │ │ ├── cve-2022-0456.json │ │ │ │ └── cve-2025-53603.json │ │ │ │ ├── debian:12 │ │ │ │ ├── cve-2022-0456.json │ │ │ │ └── cve-2025-53603.json │ │ │ │ ├── debian:13 │ │ │ │ └── cve-2025-53603.json │ │ │ │ ├── debian:7 │ │ │ │ ├── cve-2004-1653.json │ │ │ │ ├── cve-2005-3330.json │ │ │ │ ├── cve-2007-3072.json │ │ │ │ ├── cve-2011-1758.json │ │ │ │ ├── cve-2013-2188.json │ │ │ │ ├── cve-2013-7171.json │ │ │ │ ├── cve-2013-7353.json │ │ │ │ ├── cve-2014-3230.json │ │ │ │ ├── cve-2015-4170.json │ │ │ │ ├── cve-2015-4176.json │ │ │ │ ├── cve-2015-4177.json │ │ │ │ ├── cve-2016-4450.json │ │ │ │ ├── cve-2016-5105.json │ │ │ │ ├── cve-2016-5106.json │ │ │ │ ├── cve-2016-5107.json │ │ │ │ ├── cve-2016-9812.json │ │ │ │ └── cve-2016-9816.json │ │ │ │ ├── debian:8 │ │ │ │ ├── cve-2005-3111.json │ │ │ │ ├── cve-2007-2383.json │ │ │ │ ├── cve-2008-7220.json │ │ │ │ └── cve-2013-1444.json │ │ │ │ ├── debian:9 │ │ │ │ ├── cve-2005-3111.json │ │ │ │ ├── cve-2007-2383.json │ │ │ │ ├── cve-2008-7220.json │ │ │ │ ├── cve-2013-1444.json │ │ │ │ └── cve-2022-0456.json │ │ │ │ └── debian:unstable │ │ │ │ ├── cve-2005-3111.json │ │ │ │ ├── cve-2007-2383.json │ │ │ │ ├── cve-2008-7220.json │ │ │ │ ├── cve-2013-1444.json │ │ │ │ ├── cve-2022-0456.json │ │ │ │ └── cve-2025-53603.json │ │ └── test_debian.py │ ├── echo │ │ ├── __init__.py │ │ ├── test-fixtures │ │ │ ├── input │ │ │ │ └── echo-advisories │ │ │ │ │ └── data.json │ │ │ └── snapshots │ │ │ │ └── echo:rolling │ │ │ │ ├── CVE-2007-4559.json │ │ │ │ ├── CVE-2009-2940.json │ │ │ │ ├── CVE-2009-3720.json │ │ │ │ ├── CVE-2013-0340.json │ │ │ │ ├── CVE-2015-20107.json │ │ │ │ ├── CVE-2016-3189.json │ │ │ │ ├── CVE-2018-25032.json │ │ │ │ ├── CVE-2019-12900.json │ │ │ │ ├── CVE-2020-10735.json │ │ │ │ ├── CVE-2020-29396.json │ │ │ │ ├── CVE-2021-28861.json │ │ │ │ ├── CVE-2021-32052.json │ │ │ │ ├── CVE-2021-3618.json │ │ │ │ ├── CVE-2022-26488.json │ │ │ │ ├── CVE-2022-37454.json │ │ │ │ ├── CVE-2022-42919.json │ │ │ │ ├── CVE-2022-45061.json │ │ │ │ ├── CVE-2023-24329.json │ │ │ │ ├── CVE-2023-27043.json │ │ │ │ ├── CVE-2023-36632.json │ │ │ │ ├── CVE-2023-40217.json │ │ │ │ ├── CVE-2023-44487.json │ │ │ │ ├── CVE-2024-6232.json │ │ │ │ ├── CVE-2024-7592.json │ │ │ │ └── CVE-2024-9287.json │ │ └── test_echo.py │ ├── epss │ │ ├── __init__.py │ │ ├── epss_test.py │ │ └── test-fixtures │ │ │ ├── example-1.csv │ │ │ ├── invalid-header.csv │ │ │ ├── missing-date.csv │ │ │ └── snapshots │ │ │ └── example-1 │ │ │ ├── cve-1999-0001.json │ │ │ ├── cve-1999-0002.json │ │ │ ├── cve-1999-0003.json │ │ │ ├── cve-1999-0004.json │ │ │ └── cve-1999-0005.json │ ├── github │ │ ├── __init__.py │ │ ├── test-fixtures │ │ │ └── snapshots │ │ │ │ ├── github:java │ │ │ │ └── ghsa-mh6f-8j2x-4483.json │ │ │ │ └── github:npm │ │ │ │ └── ghsa-mh6f-8j2x-4483.json │ │ └── test_github.py │ ├── kev │ │ ├── __init__.py │ │ ├── test-fixtures │ │ │ ├── single-entry │ │ │ │ └── example1.json │ │ │ ├── snapshots │ │ │ │ └── valid-catalog-1 │ │ │ │ │ ├── kev:cve-2024-53704.json │ │ │ │ │ ├── kev:cve-2024-57727.json │ │ │ │ │ └── kev:cve-2025-0108.json │ │ │ └── valid-catalog-1.json │ │ └── test_kev.py │ ├── mariner │ │ ├── __init__.py │ │ ├── test-fixtures │ │ │ ├── azure-linux-truncated-3.0-oval.xml │ │ │ ├── mariner-truncated-2.0-oval.xml │ │ │ └── snapshots │ │ │ │ └── mariner:2.0 │ │ │ │ ├── CVE-2022-3736.json │ │ │ │ ├── CVE-2023-21977.json │ │ │ │ ├── CVE-2023-21980.json │ │ │ │ └── CVE-2023-29404.json │ │ └── test_mariner.py │ ├── minimos │ │ ├── __init__.py │ │ ├── test-fixtures │ │ │ ├── input │ │ │ │ └── secdb │ │ │ │ │ └── security.json │ │ │ └── snapshots │ │ │ │ └── minimos:rolling │ │ │ │ ├── CVE-2016-2781.json │ │ │ │ ├── CVE-2017-8806.json │ │ │ │ ├── CVE-2018-1000156.json │ │ │ │ ├── CVE-2018-20969.json │ │ │ │ ├── CVE-2018-25032.json │ │ │ │ ├── CVE-2018-6951.json │ │ │ │ ├── CVE-2018-6952.json │ │ │ │ ├── CVE-2019-13636.json │ │ │ │ ├── CVE-2019-13638.json │ │ │ │ ├── CVE-2019-20633.json │ │ │ │ ├── CVE-2019-6293.json │ │ │ │ ├── CVE-2020-10735.json │ │ │ │ ├── CVE-2020-8927.json │ │ │ │ ├── CVE-2021-30218.json │ │ │ │ ├── CVE-2021-30219.json │ │ │ │ ├── CVE-2021-43618.json │ │ │ │ ├── CVE-2022-1586.json │ │ │ │ ├── CVE-2022-1587.json │ │ │ │ ├── CVE-2022-26691.json │ │ │ │ ├── CVE-2022-27404.json │ │ │ │ ├── CVE-2022-27405.json │ │ │ │ ├── CVE-2022-27406.json │ │ │ │ ├── CVE-2022-28391.json │ │ │ │ ├── CVE-2022-28506.json │ │ │ │ ├── CVE-2022-29458.json │ │ │ │ ├── CVE-2022-30065.json │ │ │ │ ├── CVE-2022-32221.json │ │ │ │ ├── CVE-2022-3358.json │ │ │ │ ├── CVE-2022-3602.json │ │ │ │ ├── CVE-2022-36227.json │ │ │ │ ├── CVE-2022-37434.json │ │ │ │ ├── CVE-2022-3786.json │ │ │ │ ├── CVE-2022-38126.json │ │ │ │ ├── CVE-2022-38128.json │ │ │ │ ├── CVE-2022-38533.json │ │ │ │ ├── CVE-2022-39046.json │ │ │ │ ├── CVE-2022-39253.json │ │ │ │ ├── CVE-2022-39260.json │ │ │ │ ├── CVE-2022-40303.json │ │ │ │ ├── CVE-2022-40304.json │ │ │ │ ├── CVE-2022-40674.json │ │ │ │ ├── CVE-2022-41716.json │ │ │ │ ├── CVE-2022-41717.json │ │ │ │ ├── CVE-2022-41720.json │ │ │ │ ├── CVE-2022-42010.json │ │ │ │ ├── CVE-2022-42011.json │ │ │ │ ├── CVE-2022-42012.json │ │ │ │ ├── CVE-2022-42916.json │ │ │ │ ├── CVE-2022-43680.json │ │ │ │ ├── CVE-2022-46908.json │ │ │ │ ├── CVE-2023-28840.json │ │ │ │ ├── CVE-2023-28841.json │ │ │ │ ├── CVE-2023-28842.json │ │ │ │ ├── CVE-2023-30551.json │ │ │ │ ├── CVE-2023-39325.json │ │ │ │ ├── CVE-2023-3978.json │ │ │ │ ├── CVE-2023-45283.json │ │ │ │ ├── CVE-2023-45284.json │ │ │ │ └── GHSA-jq35-85cj-fj4p.json │ │ └── test_minimos.py │ ├── nvd │ │ ├── __init__.py │ │ ├── test-fixtures │ │ │ ├── full-page.json │ │ │ ├── single-entry.json │ │ │ └── snapshots │ │ │ │ ├── full-page │ │ │ │ ├── 2021 │ │ │ │ │ ├── cve-2021-20581.json │ │ │ │ │ ├── cve-2021-29913.json │ │ │ │ │ └── cve-2021-38859.json │ │ │ │ ├── 2022 │ │ │ │ │ ├── cve-2022-22375.json │ │ │ │ │ ├── cve-2022-22377.json │ │ │ │ │ ├── cve-2022-22380.json │ │ │ │ │ ├── cve-2022-22384.json │ │ │ │ │ ├── cve-2022-22385.json │ │ │ │ │ ├── cve-2022-43889.json │ │ │ │ │ ├── cve-2022-43891.json │ │ │ │ │ └── cve-2022-43893.json │ │ │ │ └── 2023 │ │ │ │ │ ├── cve-2023-20261.json │ │ │ │ │ ├── cve-2023-22068.json │ │ │ │ │ ├── cve-2023-27314.json │ │ │ │ │ ├── cve-2023-30781.json │ │ │ │ │ ├── cve-2023-3706.json │ │ │ │ │ ├── cve-2023-3707.json │ │ │ │ │ ├── cve-2023-3746.json │ │ │ │ │ ├── cve-2023-43250.json │ │ │ │ │ ├── cve-2023-45109.json │ │ │ │ │ ├── cve-2023-45383.json │ │ │ │ │ ├── cve-2023-45391.json │ │ │ │ │ ├── cve-2023-45602.json │ │ │ │ │ ├── cve-2023-45604.json │ │ │ │ │ ├── cve-2023-45607.json │ │ │ │ │ ├── cve-2023-45628.json │ │ │ │ │ ├── cve-2023-45630.json │ │ │ │ │ ├── cve-2023-45632.json │ │ │ │ │ ├── cve-2023-45901.json │ │ │ │ │ ├── cve-2023-45902.json │ │ │ │ │ ├── cve-2023-45903.json │ │ │ │ │ ├── cve-2023-45904.json │ │ │ │ │ ├── cve-2023-45905.json │ │ │ │ │ ├── cve-2023-45906.json │ │ │ │ │ ├── cve-2023-45907.json │ │ │ │ │ ├── cve-2023-46009.json │ │ │ │ │ ├── cve-2023-5631.json │ │ │ │ │ └── cve-2023-5642.json │ │ │ │ └── single-entry │ │ │ │ └── 2022 │ │ │ │ └── cve-2022-1576.json │ │ ├── test_api.py │ │ ├── test_manager.py │ │ ├── test_nvd.py │ │ └── test_overrides.py │ ├── oracle │ │ ├── __init__.py │ │ ├── test-fixtures │ │ │ ├── mock_data │ │ │ ├── mock_ksplice_data │ │ │ └── snapshots │ │ │ │ ├── ol:5 │ │ │ │ └── elsa-2007-0057.json │ │ │ │ └── ol:6 │ │ │ │ └── elsa-2018-4250.json │ │ └── test_oracle.py │ ├── rhel │ │ ├── __init__.py │ │ ├── test-fixtures │ │ │ ├── csaf │ │ │ │ ├── advisories │ │ │ │ │ ├── rhsa-2023_3821.json │ │ │ │ │ ├── rhsa-2023_7025.json │ │ │ │ │ ├── rhsa-2024_0811.json │ │ │ │ │ └── rhsa-2024_1431.json │ │ │ │ ├── input │ │ │ │ │ └── cve │ │ │ │ │ │ ├── full │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ ├── min │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ └── min_pages │ │ │ │ │ │ └── 1.json │ │ │ │ └── server │ │ │ │ │ ├── 2024 │ │ │ │ │ └── rhsa-2024_0010.json │ │ │ │ │ ├── README.md │ │ │ │ │ ├── archive_latest.txt │ │ │ │ │ ├── changes.csv │ │ │ │ │ ├── csaf_advisories_2025-02-15.tar.zst │ │ │ │ │ └── deletions.csv │ │ │ ├── oval │ │ │ │ └── input │ │ │ │ │ ├── cve │ │ │ │ │ ├── full │ │ │ │ │ │ ├── CVE-2017-3509 │ │ │ │ │ │ ├── CVE-2017-3511 │ │ │ │ │ │ ├── CVE-2017-3526 │ │ │ │ │ │ ├── CVE-2017-3533 │ │ │ │ │ │ ├── CVE-2017-3539 │ │ │ │ │ │ ├── CVE-2017-3544 │ │ │ │ │ │ ├── CVE-2019-25059 │ │ │ │ │ │ ├── CVE-2020-16587 │ │ │ │ │ │ ├── CVE-2020-16588 │ │ │ │ │ │ ├── CVE-2021-20298 │ │ │ │ │ │ ├── CVE-2021-20299 │ │ │ │ │ │ ├── CVE-2022-1921 │ │ │ │ │ │ ├── CVE-2022-1922 │ │ │ │ │ │ ├── CVE-2022-1923 │ │ │ │ │ │ ├── CVE-2022-1924 │ │ │ │ │ │ ├── CVE-2022-1925 │ │ │ │ │ │ ├── CVE-2022-2309 │ │ │ │ │ │ ├── CVE-2023-4863 │ │ │ │ │ │ ├── CVE-2023-5129 │ │ │ │ │ │ └── CVE-2023-5217 │ │ │ │ │ └── min │ │ │ │ │ │ ├── CVE-2017-3509 │ │ │ │ │ │ ├── CVE-2017-3511 │ │ │ │ │ │ ├── CVE-2017-3526 │ │ │ │ │ │ ├── CVE-2017-3533 │ │ │ │ │ │ ├── CVE-2017-3539 │ │ │ │ │ │ ├── CVE-2017-3544 │ │ │ │ │ │ ├── CVE-2019-25059 │ │ │ │ │ │ ├── CVE-2020-16587 │ │ │ │ │ │ ├── CVE-2020-16588 │ │ │ │ │ │ ├── CVE-2021-20298 │ │ │ │ │ │ ├── CVE-2021-20299 │ │ │ │ │ │ ├── CVE-2022-1921 │ │ │ │ │ │ ├── CVE-2022-1922 │ │ │ │ │ │ ├── CVE-2022-1923 │ │ │ │ │ │ ├── CVE-2022-1924 │ │ │ │ │ │ ├── CVE-2022-1925 │ │ │ │ │ │ ├── CVE-2022-2309 │ │ │ │ │ │ ├── CVE-2023-4863 │ │ │ │ │ │ ├── CVE-2023-5129 │ │ │ │ │ │ └── CVE-2023-5217 │ │ │ │ │ └── rhsa │ │ │ │ │ ├── com.redhat.rhsa-all.xml │ │ │ │ │ └── com.redhat.rhsa-all.xml.sha256sum │ │ │ └── snapshots │ │ │ │ ├── rhel:5 │ │ │ │ ├── cve-2017-3509.json │ │ │ │ ├── cve-2017-3511.json │ │ │ │ ├── cve-2017-3526.json │ │ │ │ ├── cve-2017-3533.json │ │ │ │ ├── cve-2017-3539.json │ │ │ │ └── cve-2017-3544.json │ │ │ │ ├── rhel:6 │ │ │ │ ├── cve-2017-3509.json │ │ │ │ ├── cve-2017-3511.json │ │ │ │ ├── cve-2017-3526.json │ │ │ │ ├── cve-2017-3533.json │ │ │ │ ├── cve-2017-3539.json │ │ │ │ ├── cve-2017-3544.json │ │ │ │ ├── cve-2020-16587.json │ │ │ │ ├── cve-2020-16588.json │ │ │ │ ├── cve-2021-20298.json │ │ │ │ ├── cve-2021-20299.json │ │ │ │ ├── cve-2022-1921.json │ │ │ │ ├── cve-2022-1922.json │ │ │ │ ├── cve-2022-1923.json │ │ │ │ ├── cve-2022-1924.json │ │ │ │ ├── cve-2022-1925.json │ │ │ │ ├── cve-2023-4863.json │ │ │ │ ├── cve-2023-5129.json │ │ │ │ └── cve-2023-5217.json │ │ │ │ ├── rhel:7 │ │ │ │ ├── cve-2017-3509.json │ │ │ │ ├── cve-2017-3511.json │ │ │ │ ├── cve-2017-3526.json │ │ │ │ ├── cve-2017-3533.json │ │ │ │ ├── cve-2017-3539.json │ │ │ │ ├── cve-2017-3544.json │ │ │ │ ├── cve-2020-16587.json │ │ │ │ ├── cve-2020-16588.json │ │ │ │ ├── cve-2021-20298.json │ │ │ │ ├── cve-2021-20299.json │ │ │ │ ├── cve-2022-1921.json │ │ │ │ ├── cve-2022-1922.json │ │ │ │ ├── cve-2022-1923.json │ │ │ │ ├── cve-2022-1924.json │ │ │ │ ├── cve-2022-1925.json │ │ │ │ ├── cve-2023-4863.json │ │ │ │ ├── cve-2023-5129.json │ │ │ │ └── cve-2023-5217.json │ │ │ │ ├── rhel:8.6+eus │ │ │ │ ├── cve-2023-4863.json │ │ │ │ ├── cve-2023-5129.json │ │ │ │ └── cve-2023-5217.json │ │ │ │ ├── rhel:8 │ │ │ │ ├── cve-2019-25059.json │ │ │ │ ├── cve-2020-16587.json │ │ │ │ ├── cve-2021-20298.json │ │ │ │ ├── cve-2021-20299.json │ │ │ │ ├── cve-2022-1921.json │ │ │ │ ├── cve-2022-1922.json │ │ │ │ ├── cve-2022-1923.json │ │ │ │ ├── cve-2022-1924.json │ │ │ │ ├── cve-2022-1925.json │ │ │ │ ├── cve-2023-4863.json │ │ │ │ ├── cve-2023-5129.json │ │ │ │ └── cve-2023-5217.json │ │ │ │ ├── rhel:9.0+eus │ │ │ │ ├── cve-2023-4863.json │ │ │ │ ├── cve-2023-5129.json │ │ │ │ └── cve-2023-5217.json │ │ │ │ └── rhel:9 │ │ │ │ ├── cve-2019-25059.json │ │ │ │ ├── cve-2022-1921.json │ │ │ │ ├── cve-2022-1922.json │ │ │ │ ├── cve-2022-1923.json │ │ │ │ ├── cve-2022-1924.json │ │ │ │ ├── cve-2022-1925.json │ │ │ │ ├── cve-2022-2309.json │ │ │ │ ├── cve-2023-4863.json │ │ │ │ ├── cve-2023-5129.json │ │ │ │ └── cve-2023-5217.json │ │ ├── test_csaf_client.py │ │ ├── test_csaf_parser.py │ │ ├── test_parser.py │ │ └── test_rhel.py │ ├── rocky │ │ ├── test-fixtures │ │ │ └── osv │ │ │ │ ├── RLSA-2021_3891.json │ │ │ │ ├── RLSA-2023_3220.json │ │ │ │ └── RLSA-2024_3671.json │ │ └── test_rocky.py │ ├── sles │ │ ├── __init__.py │ │ ├── test-fixtures │ │ │ ├── snapshots │ │ │ │ ├── sles:15.1 │ │ │ │ │ └── cve-2021-29154.json │ │ │ │ └── sles:15 │ │ │ │ │ ├── cve-2010-1323.json │ │ │ │ │ └── cve-2021-29154.json │ │ │ └── suse_truncated.xml │ │ └── test_sles.py │ ├── ubuntu │ │ ├── __init__.py │ │ ├── test-fixtures │ │ │ ├── example_ubuntu_cve │ │ │ ├── git_cat_file_batch_response_cve_11261.txt │ │ │ ├── git_cat_file_batch_response_cve_11411.txt │ │ │ ├── git_commits_log │ │ │ ├── git_rev_log │ │ │ ├── repo-fast-export │ │ │ ├── snapshots │ │ │ │ ├── ubuntu:14.04 │ │ │ │ │ ├── cve-2019-17185.json │ │ │ │ │ ├── cve-2021-4204.json │ │ │ │ │ ├── cve-2022-20566.json │ │ │ │ │ ├── cve-2022-41859.json │ │ │ │ │ ├── cve-2022-41860.json │ │ │ │ │ └── cve-2022-41861.json │ │ │ │ ├── ubuntu:16.04 │ │ │ │ │ ├── cve-2019-17185.json │ │ │ │ │ ├── cve-2021-4204.json │ │ │ │ │ ├── cve-2022-20566.json │ │ │ │ │ ├── cve-2022-41859.json │ │ │ │ │ ├── cve-2022-41860.json │ │ │ │ │ └── cve-2022-41861.json │ │ │ │ ├── ubuntu:18.04 │ │ │ │ │ ├── cve-2019-17185.json │ │ │ │ │ ├── cve-2021-4204.json │ │ │ │ │ ├── cve-2022-20566.json │ │ │ │ │ ├── cve-2022-41859.json │ │ │ │ │ ├── cve-2022-41860.json │ │ │ │ │ └── cve-2022-41861.json │ │ │ │ ├── ubuntu:19.10 │ │ │ │ │ └── cve-2019-17185.json │ │ │ │ ├── ubuntu:20.04 │ │ │ │ │ ├── cve-2019-17185.json │ │ │ │ │ ├── cve-2021-4204.json │ │ │ │ │ ├── cve-2022-20566.json │ │ │ │ │ ├── cve-2022-41859.json │ │ │ │ │ ├── cve-2022-41860.json │ │ │ │ │ └── cve-2022-41861.json │ │ │ │ ├── ubuntu:20.10 │ │ │ │ │ └── cve-2019-17185.json │ │ │ │ ├── ubuntu:21.04 │ │ │ │ │ ├── cve-2019-17185.json │ │ │ │ │ └── cve-2021-4204.json │ │ │ │ ├── ubuntu:21.10 │ │ │ │ │ ├── cve-2019-17185.json │ │ │ │ │ └── cve-2021-4204.json │ │ │ │ ├── ubuntu:22.04 │ │ │ │ │ ├── cve-2019-17185.json │ │ │ │ │ ├── cve-2021-4204.json │ │ │ │ │ ├── cve-2022-20566.json │ │ │ │ │ ├── cve-2022-41859.json │ │ │ │ │ ├── cve-2022-41860.json │ │ │ │ │ └── cve-2022-41861.json │ │ │ │ └── ubuntu:22.10 │ │ │ │ │ ├── cve-2019-17185.json │ │ │ │ │ ├── cve-2021-4204.json │ │ │ │ │ ├── cve-2022-20566.json │ │ │ │ │ ├── cve-2022-41859.json │ │ │ │ │ ├── cve-2022-41860.json │ │ │ │ │ └── cve-2022-41861.json │ │ │ └── weird_example_cve │ │ ├── test_git_wrapper.py │ │ └── test_ubuntu.py │ └── wolfi │ │ ├── __init__.py │ │ ├── test-fixtures │ │ ├── input │ │ │ └── secdb │ │ │ │ └── security.json │ │ └── snapshots │ │ │ └── wolfi:rolling │ │ │ ├── CVE-2016-2781.json │ │ │ ├── CVE-2017-8806.json │ │ │ ├── CVE-2018-1000156.json │ │ │ ├── CVE-2018-20969.json │ │ │ ├── CVE-2018-25032.json │ │ │ ├── CVE-2018-6951.json │ │ │ ├── CVE-2018-6952.json │ │ │ ├── CVE-2019-13636.json │ │ │ ├── CVE-2019-13638.json │ │ │ ├── CVE-2019-20633.json │ │ │ ├── CVE-2019-6293.json │ │ │ ├── CVE-2020-10735.json │ │ │ ├── CVE-2020-8927.json │ │ │ ├── CVE-2021-30218.json │ │ │ ├── CVE-2021-30219.json │ │ │ ├── CVE-2021-43618.json │ │ │ ├── CVE-2022-1586.json │ │ │ ├── CVE-2022-1587.json │ │ │ ├── CVE-2022-26691.json │ │ │ ├── CVE-2022-27404.json │ │ │ ├── CVE-2022-27405.json │ │ │ ├── CVE-2022-27406.json │ │ │ ├── CVE-2022-28391.json │ │ │ ├── CVE-2022-28506.json │ │ │ ├── CVE-2022-29458.json │ │ │ ├── CVE-2022-30065.json │ │ │ ├── CVE-2022-32221.json │ │ │ ├── CVE-2022-3358.json │ │ │ ├── CVE-2022-3602.json │ │ │ ├── CVE-2022-36227.json │ │ │ ├── CVE-2022-37434.json │ │ │ ├── CVE-2022-3786.json │ │ │ ├── CVE-2022-38126.json │ │ │ ├── CVE-2022-38128.json │ │ │ ├── CVE-2022-38533.json │ │ │ ├── CVE-2022-39046.json │ │ │ ├── CVE-2022-39253.json │ │ │ ├── CVE-2022-39260.json │ │ │ ├── CVE-2022-40303.json │ │ │ ├── CVE-2022-40304.json │ │ │ ├── CVE-2022-40674.json │ │ │ ├── CVE-2022-41716.json │ │ │ ├── CVE-2022-41717.json │ │ │ ├── CVE-2022-41720.json │ │ │ ├── CVE-2022-42010.json │ │ │ ├── CVE-2022-42011.json │ │ │ ├── CVE-2022-42012.json │ │ │ ├── CVE-2022-42916.json │ │ │ ├── CVE-2022-43680.json │ │ │ ├── CVE-2022-46908.json │ │ │ ├── CVE-2023-28840.json │ │ │ ├── CVE-2023-28841.json │ │ │ ├── CVE-2023-28842.json │ │ │ ├── CVE-2023-30551.json │ │ │ ├── CVE-2023-39325.json │ │ │ ├── CVE-2023-3978.json │ │ │ ├── CVE-2023-45283.json │ │ │ ├── CVE-2023-45284.json │ │ │ └── GHSA-jq35-85cj-fj4p.json │ │ └── test_wolfi.py │ ├── test_distribution.py │ ├── test_provider.py │ ├── test_result.py │ ├── test_schema.py │ ├── test_workspace.py │ ├── tool │ ├── __init__.py │ ├── test_ecosystem.py │ ├── test_finder.py │ ├── test_first_observed.py │ ├── test_grype_db_first_observed.py │ └── test_vunnel_first_observed.py │ └── utils │ ├── __init__.py │ ├── test_archive.py │ ├── test_fdb.py │ ├── test_hasher.py │ ├── test_http_wrapper.py │ ├── test_osv.py │ ├── test_oval_v2.py │ ├── test_rpm.py │ └── test_vulnerability.py ├── tox.ini └── uv.lock /.binny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.binny.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | # Ignore everything 2 | * 3 | 4 | # Allow files and directories 5 | !/dist 6 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/actions/bootstrap/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.github/actions/bootstrap/action.yaml -------------------------------------------------------------------------------- /.github/actions/quality-gate/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.github/actions/quality-gate/action.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/runs-on.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.github/runs-on.yml -------------------------------------------------------------------------------- /.github/scripts/dev-shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.github/scripts/dev-shell.sh -------------------------------------------------------------------------------- /.github/scripts/trigger-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.github/scripts/trigger-release.sh -------------------------------------------------------------------------------- /.github/scripts/update-dev-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.github/scripts/update-dev-db.sh -------------------------------------------------------------------------------- /.github/workflows/dependabot-automation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.github/workflows/dependabot-automation.yaml -------------------------------------------------------------------------------- /.github/workflows/nightly-quality-gate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.github/workflows/nightly-quality-gate.yaml -------------------------------------------------------------------------------- /.github/workflows/oss-project-board-add.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.github/workflows/oss-project-board-add.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-quality-gate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.github/workflows/pr-quality-gate.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/remove-awaiting-response-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.github/workflows/remove-awaiting-response-label.yaml -------------------------------------------------------------------------------- /.github/workflows/validate-github-actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.github/workflows/validate-github-actions.yaml -------------------------------------------------------------------------------- /.github/workflows/validations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.github/workflows/validations.yaml -------------------------------------------------------------------------------- /.github/zizmor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.github/zizmor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/DEVELOPING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/RELEASE.md -------------------------------------------------------------------------------- /Taskfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/Taskfile.yaml -------------------------------------------------------------------------------- /docs/grype-db-actions.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/docs/grype-db-actions.drawio -------------------------------------------------------------------------------- /docs/vunnel+grype-db-workflow.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/docs/vunnel+grype-db-workflow.drawio -------------------------------------------------------------------------------- /docs/vunnel-run-workflow.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/docs/vunnel-run-workflow.drawio -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | data 2 | -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/example/README.md -------------------------------------------------------------------------------- /example/awesome/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/example/awesome/__init__.py -------------------------------------------------------------------------------- /example/awesome/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/example/awesome/parser.py -------------------------------------------------------------------------------- /example/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/example/run.py -------------------------------------------------------------------------------- /llms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/llms.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | addopts = -vv --color=yes 3 | -------------------------------------------------------------------------------- /schema/match-exclusion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/match-exclusion/README.md -------------------------------------------------------------------------------- /schema/match-exclusion/schema-1.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/match-exclusion/schema-1.0.0.json -------------------------------------------------------------------------------- /schema/provider-archive-listing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/provider-archive-listing/README.md -------------------------------------------------------------------------------- /schema/provider-archive-listing/schema-1.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/provider-archive-listing/schema-1.0.0.json -------------------------------------------------------------------------------- /schema/provider-workspace-state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/provider-workspace-state/README.md -------------------------------------------------------------------------------- /schema/provider-workspace-state/schema-1.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/provider-workspace-state/schema-1.0.0.json -------------------------------------------------------------------------------- /schema/provider-workspace-state/schema-1.0.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/provider-workspace-state/schema-1.0.1.json -------------------------------------------------------------------------------- /schema/provider-workspace-state/schema-1.0.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/provider-workspace-state/schema-1.0.2.json -------------------------------------------------------------------------------- /schema/provider-workspace-state/schema-1.0.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/provider-workspace-state/schema-1.0.3.json -------------------------------------------------------------------------------- /schema/vulnerability/annotated-openvex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/annotated-openvex/README.md -------------------------------------------------------------------------------- /schema/vulnerability/annotated-openvex/schema-1.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/annotated-openvex/schema-1.0.0.json -------------------------------------------------------------------------------- /schema/vulnerability/epss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/epss/README.md -------------------------------------------------------------------------------- /schema/vulnerability/epss/schema-1.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/epss/schema-1.0.0.json -------------------------------------------------------------------------------- /schema/vulnerability/github-security-advisory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/github-security-advisory/README.md -------------------------------------------------------------------------------- /schema/vulnerability/github-security-advisory/schema-1.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/github-security-advisory/schema-1.0.0.json -------------------------------------------------------------------------------- /schema/vulnerability/github-security-advisory/schema-1.0.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/github-security-advisory/schema-1.0.1.json -------------------------------------------------------------------------------- /schema/vulnerability/github-security-advisory/schema-1.0.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/github-security-advisory/schema-1.0.2.json -------------------------------------------------------------------------------- /schema/vulnerability/known-exploited/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/known-exploited/README.md -------------------------------------------------------------------------------- /schema/vulnerability/known-exploited/schema-1.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/known-exploited/schema-1.0.0.json -------------------------------------------------------------------------------- /schema/vulnerability/msrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/msrc/README.md -------------------------------------------------------------------------------- /schema/vulnerability/msrc/schema-1.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/msrc/schema-1.0.0.json -------------------------------------------------------------------------------- /schema/vulnerability/msrc/schema-1.0.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/msrc/schema-1.0.1.json -------------------------------------------------------------------------------- /schema/vulnerability/nvd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/nvd/README.md -------------------------------------------------------------------------------- /schema/vulnerability/nvd/cvss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/nvd/cvss/README.md -------------------------------------------------------------------------------- /schema/vulnerability/nvd/cvss/schema-v2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/nvd/cvss/schema-v2.0.json -------------------------------------------------------------------------------- /schema/vulnerability/nvd/cvss/schema-v3.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/nvd/cvss/schema-v3.0.json -------------------------------------------------------------------------------- /schema/vulnerability/nvd/cvss/schema-v3.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/nvd/cvss/schema-v3.1.json -------------------------------------------------------------------------------- /schema/vulnerability/nvd/schema-1.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/nvd/schema-1.0.0.json -------------------------------------------------------------------------------- /schema/vulnerability/nvd/schema-1.0.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/nvd/schema-1.0.1.json -------------------------------------------------------------------------------- /schema/vulnerability/os/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/os/README.md -------------------------------------------------------------------------------- /schema/vulnerability/os/schema-1.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/os/schema-1.0.0.json -------------------------------------------------------------------------------- /schema/vulnerability/os/schema-1.0.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/os/schema-1.0.1.json -------------------------------------------------------------------------------- /schema/vulnerability/os/schema-1.0.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/os/schema-1.0.2.json -------------------------------------------------------------------------------- /schema/vulnerability/os/schema-1.1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/os/schema-1.1.0.json -------------------------------------------------------------------------------- /schema/vulnerability/osv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/osv/README.md -------------------------------------------------------------------------------- /schema/vulnerability/osv/schema-1.3.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/osv/schema-1.3.1.json -------------------------------------------------------------------------------- /schema/vulnerability/osv/schema-1.5.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/osv/schema-1.5.0.json -------------------------------------------------------------------------------- /schema/vulnerability/osv/schema-1.6.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/osv/schema-1.6.1.json -------------------------------------------------------------------------------- /schema/vulnerability/osv/schema-1.7.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/schema/vulnerability/osv/schema-1.7.0.json -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/format-json-snapshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/scripts/format-json-snapshots.py -------------------------------------------------------------------------------- /src/vunnel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/__init__.py -------------------------------------------------------------------------------- /src/vunnel/__main__.py: -------------------------------------------------------------------------------- 1 | from vunnel.cli import run 2 | 3 | run() 4 | -------------------------------------------------------------------------------- /src/vunnel/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/cli/__init__.py -------------------------------------------------------------------------------- /src/vunnel/cli/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/cli/cli.py -------------------------------------------------------------------------------- /src/vunnel/cli/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/cli/config.py -------------------------------------------------------------------------------- /src/vunnel/distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/distribution.py -------------------------------------------------------------------------------- /src/vunnel/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/provider.py -------------------------------------------------------------------------------- /src/vunnel/providers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/__init__.py -------------------------------------------------------------------------------- /src/vunnel/providers/alma/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/alma/__init__.py -------------------------------------------------------------------------------- /src/vunnel/providers/alma/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/alma/git.py -------------------------------------------------------------------------------- /src/vunnel/providers/alma/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/alma/parser.py -------------------------------------------------------------------------------- /src/vunnel/providers/alpine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/alpine/__init__.py -------------------------------------------------------------------------------- /src/vunnel/providers/alpine/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/alpine/parser.py -------------------------------------------------------------------------------- /src/vunnel/providers/amazon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/amazon/__init__.py -------------------------------------------------------------------------------- /src/vunnel/providers/amazon/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/amazon/parser.py -------------------------------------------------------------------------------- /src/vunnel/providers/bitnami/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/bitnami/__init__.py -------------------------------------------------------------------------------- /src/vunnel/providers/bitnami/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/bitnami/git.py -------------------------------------------------------------------------------- /src/vunnel/providers/bitnami/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/bitnami/parser.py -------------------------------------------------------------------------------- /src/vunnel/providers/chainguard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/chainguard/__init__.py -------------------------------------------------------------------------------- /src/vunnel/providers/chainguard_libraries/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/chainguard_libraries/__init__.py -------------------------------------------------------------------------------- /src/vunnel/providers/chainguard_libraries/openvex_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/chainguard_libraries/openvex_parser.py -------------------------------------------------------------------------------- /src/vunnel/providers/debian/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/debian/__init__.py -------------------------------------------------------------------------------- /src/vunnel/providers/debian/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/debian/parser.py -------------------------------------------------------------------------------- /src/vunnel/providers/echo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/echo/__init__.py -------------------------------------------------------------------------------- /src/vunnel/providers/echo/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/echo/parser.py -------------------------------------------------------------------------------- /src/vunnel/providers/epss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/epss/__init__.py -------------------------------------------------------------------------------- /src/vunnel/providers/epss/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/epss/manager.py -------------------------------------------------------------------------------- /src/vunnel/providers/github/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/github/__init__.py -------------------------------------------------------------------------------- /src/vunnel/providers/github/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/github/parser.py -------------------------------------------------------------------------------- /src/vunnel/providers/kev/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/kev/__init__.py -------------------------------------------------------------------------------- /src/vunnel/providers/kev/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/kev/manager.py -------------------------------------------------------------------------------- /src/vunnel/providers/mariner/DEVELOPING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/mariner/DEVELOPING.md -------------------------------------------------------------------------------- /src/vunnel/providers/mariner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/mariner/__init__.py -------------------------------------------------------------------------------- /src/vunnel/providers/mariner/generate_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/mariner/generate_models.py -------------------------------------------------------------------------------- /src/vunnel/providers/mariner/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/mariner/model/__init__.py -------------------------------------------------------------------------------- /src/vunnel/providers/mariner/model/generated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/mariner/model/generated.py -------------------------------------------------------------------------------- /src/vunnel/providers/mariner/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/mariner/parser.py -------------------------------------------------------------------------------- /src/vunnel/providers/minimos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/minimos/__init__.py -------------------------------------------------------------------------------- /src/vunnel/providers/minimos/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/minimos/parser.py -------------------------------------------------------------------------------- /src/vunnel/providers/nvd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/nvd/__init__.py -------------------------------------------------------------------------------- /src/vunnel/providers/nvd/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/nvd/api.py -------------------------------------------------------------------------------- /src/vunnel/providers/nvd/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/nvd/manager.py -------------------------------------------------------------------------------- /src/vunnel/providers/nvd/overrides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/nvd/overrides.py -------------------------------------------------------------------------------- /src/vunnel/providers/oracle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/oracle/__init__.py -------------------------------------------------------------------------------- /src/vunnel/providers/oracle/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/oracle/parser.py -------------------------------------------------------------------------------- /src/vunnel/providers/rhel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/rhel/__init__.py -------------------------------------------------------------------------------- /src/vunnel/providers/rhel/csaf_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/rhel/csaf_client.py -------------------------------------------------------------------------------- /src/vunnel/providers/rhel/csaf_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/rhel/csaf_parser.py -------------------------------------------------------------------------------- /src/vunnel/providers/rhel/oval_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/rhel/oval_parser.py -------------------------------------------------------------------------------- /src/vunnel/providers/rhel/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/rhel/parser.py -------------------------------------------------------------------------------- /src/vunnel/providers/rhel/rhsa_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/rhel/rhsa_provider.py -------------------------------------------------------------------------------- /src/vunnel/providers/rocky/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/rocky/__init__.py -------------------------------------------------------------------------------- /src/vunnel/providers/rocky/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/rocky/client.py -------------------------------------------------------------------------------- /src/vunnel/providers/rocky/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/rocky/parser.py -------------------------------------------------------------------------------- /src/vunnel/providers/sles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/sles/__init__.py -------------------------------------------------------------------------------- /src/vunnel/providers/sles/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/sles/parser.py -------------------------------------------------------------------------------- /src/vunnel/providers/ubuntu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/ubuntu/__init__.py -------------------------------------------------------------------------------- /src/vunnel/providers/ubuntu/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/ubuntu/git.py -------------------------------------------------------------------------------- /src/vunnel/providers/ubuntu/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/ubuntu/parser.py -------------------------------------------------------------------------------- /src/vunnel/providers/wolfi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/wolfi/__init__.py -------------------------------------------------------------------------------- /src/vunnel/providers/wolfi/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/providers/wolfi/parser.py -------------------------------------------------------------------------------- /src/vunnel/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/result.py -------------------------------------------------------------------------------- /src/vunnel/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/schema.py -------------------------------------------------------------------------------- /src/vunnel/tool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vunnel/tool/fixdate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/tool/fixdate/__init__.py -------------------------------------------------------------------------------- /src/vunnel/tool/fixdate/ecosystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/tool/fixdate/ecosystem.py -------------------------------------------------------------------------------- /src/vunnel/tool/fixdate/finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/tool/fixdate/finder.py -------------------------------------------------------------------------------- /src/vunnel/tool/fixdate/first_observed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/tool/fixdate/first_observed.py -------------------------------------------------------------------------------- /src/vunnel/tool/fixdate/grype_db_first_observed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/tool/fixdate/grype_db_first_observed.py -------------------------------------------------------------------------------- /src/vunnel/tool/fixdate/vunnel_first_observed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/tool/fixdate/vunnel_first_observed.py -------------------------------------------------------------------------------- /src/vunnel/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/utils/__init__.py -------------------------------------------------------------------------------- /src/vunnel/utils/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/utils/archive.py -------------------------------------------------------------------------------- /src/vunnel/utils/csaf_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/utils/csaf_types.py -------------------------------------------------------------------------------- /src/vunnel/utils/date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/utils/date.py -------------------------------------------------------------------------------- /src/vunnel/utils/fdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/utils/fdb.py -------------------------------------------------------------------------------- /src/vunnel/utils/hasher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/utils/hasher.py -------------------------------------------------------------------------------- /src/vunnel/utils/http_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/utils/http_wrapper.py -------------------------------------------------------------------------------- /src/vunnel/utils/osv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/utils/osv.py -------------------------------------------------------------------------------- /src/vunnel/utils/oval_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/utils/oval_parser.py -------------------------------------------------------------------------------- /src/vunnel/utils/oval_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/utils/oval_v2.py -------------------------------------------------------------------------------- /src/vunnel/utils/rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/utils/rpm.py -------------------------------------------------------------------------------- /src/vunnel/utils/vulnerability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/utils/vulnerability.py -------------------------------------------------------------------------------- /src/vunnel/workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/src/vunnel/workspace.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/quality/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/quality/.gitignore -------------------------------------------------------------------------------- /tests/quality/.yardstick/labels: -------------------------------------------------------------------------------- 1 | ../vulnerability-match-labels/labels -------------------------------------------------------------------------------- /tests/quality/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/quality/Makefile -------------------------------------------------------------------------------- /tests/quality/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/quality/README.md -------------------------------------------------------------------------------- /tests/quality/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/quality/config.yaml -------------------------------------------------------------------------------- /tests/quality/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/quality/configure.py -------------------------------------------------------------------------------- /tests/unit/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/checksums -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/input/secdb/os/security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/input/secdb/os/security.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/metadata.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2016-2781.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2016-2781.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2017-8806.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2017-8806.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2018-1000156.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2018-1000156.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2018-20969.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2018-20969.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2018-25032.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2018-25032.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2018-6951.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2018-6951.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2018-6952.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2018-6952.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2019-13636.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2019-13636.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2019-13638.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2019-13638.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2019-20633.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2019-20633.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2019-6293.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2019-6293.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2020-10735.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2020-10735.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2020-8927.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2020-8927.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2021-30218.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2021-30218.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2021-30219.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2021-30219.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2021-43618.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2021-43618.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-0543.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-0543.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-1586.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-1586.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-1587.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-1587.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-26691.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-26691.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-27404.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-27404.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-27405.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-27405.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-27406.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-27406.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-28391.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-28391.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-28506.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-28506.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-29458.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-29458.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-30065.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-30065.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-32221.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-32221.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-3358.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-3358.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-3602.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-3602.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-36227.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-36227.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-3647.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-3647.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-3734.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-3734.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-37434.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-37434.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-3786.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-3786.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-38126.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-38126.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-38128.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-38128.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-38533.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-38533.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-39046.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-39046.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-39253.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-39253.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-39260.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-39260.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-3996.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-3996.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-40303.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-40303.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-40304.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-40304.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-40674.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-40674.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-41716.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-41716.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-41717.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-41717.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-41720.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-41720.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-42010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-42010.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-42011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-42011.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-42012.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-42012.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-42916.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-42916.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-43551.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-43551.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-43552.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-43552.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-43680.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-43680.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-46908.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/data-1/wolfi/results/wolfi:rolling/CVE-2022-46908.json -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test-fixtures/full.yaml -------------------------------------------------------------------------------- /tests/unit/cli/test-fixtures/minimal.yaml: -------------------------------------------------------------------------------- 1 | log: 2 | level: trace 3 | -------------------------------------------------------------------------------- /tests/unit/cli/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test_cli.py -------------------------------------------------------------------------------- /tests/unit/cli/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/cli/test_config.py -------------------------------------------------------------------------------- /tests/unit/providers/alma/test_alma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/alma/test_alma.py -------------------------------------------------------------------------------- /tests/unit/providers/alpine/test-fixtures/input/secdb/v3.15/community.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/alpine/test-fixtures/input/secdb/v3.15/community.yaml -------------------------------------------------------------------------------- /tests/unit/providers/alpine/test-fixtures/input/secdb/v3.15/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/alpine/test-fixtures/input/secdb/v3.15/main.yaml -------------------------------------------------------------------------------- /tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2018-1071.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2018-1071.json -------------------------------------------------------------------------------- /tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2018-1083.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2018-1083.json -------------------------------------------------------------------------------- /tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2018-25032.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2018-25032.json -------------------------------------------------------------------------------- /tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2019-11922.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2019-11922.json -------------------------------------------------------------------------------- /tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2019-13132.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2019-13132.json -------------------------------------------------------------------------------- /tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2019-20044.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2019-20044.json -------------------------------------------------------------------------------- /tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2019-6250.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2019-6250.json -------------------------------------------------------------------------------- /tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2019-9210.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2019-9210.json -------------------------------------------------------------------------------- /tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2020-14929.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2020-14929.json -------------------------------------------------------------------------------- /tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2020-15166.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2020-15166.json -------------------------------------------------------------------------------- /tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2021-24031.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2021-24031.json -------------------------------------------------------------------------------- /tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2021-24032.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2021-24032.json -------------------------------------------------------------------------------- /tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2021-38370.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2021-38370.json -------------------------------------------------------------------------------- /tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2021-45444.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2021-45444.json -------------------------------------------------------------------------------- /tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2022-1271.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2022-1271.json -------------------------------------------------------------------------------- /tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2022-37434.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/alpine/test-fixtures/snapshots/3.15/cve-2022-37434.json -------------------------------------------------------------------------------- /tests/unit/providers/alpine/test_alpine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/alpine/test_alpine.py -------------------------------------------------------------------------------- /tests/unit/providers/amazon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/providers/amazon/test-fixtures/input/2022_html/ALAS-2021-001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/amazon/test-fixtures/input/2022_html/ALAS-2021-001 -------------------------------------------------------------------------------- /tests/unit/providers/amazon/test-fixtures/input/2022_rss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/amazon/test-fixtures/input/2022_rss.xml -------------------------------------------------------------------------------- /tests/unit/providers/amazon/test-fixtures/input/2023_html/ALAS-2023-126: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/amazon/test-fixtures/input/2023_html/ALAS-2023-126 -------------------------------------------------------------------------------- /tests/unit/providers/amazon/test-fixtures/input/2023_rss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/amazon/test-fixtures/input/2023_rss.xml -------------------------------------------------------------------------------- /tests/unit/providers/amazon/test-fixtures/input/2_html/ALAS-2018-939: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/amazon/test-fixtures/input/2_html/ALAS-2018-939 -------------------------------------------------------------------------------- /tests/unit/providers/amazon/test-fixtures/input/2_rss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/amazon/test-fixtures/input/2_rss.xml -------------------------------------------------------------------------------- /tests/unit/providers/amazon/test-fixtures/mock_html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/amazon/test-fixtures/mock_html -------------------------------------------------------------------------------- /tests/unit/providers/amazon/test-fixtures/mock_rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/amazon/test-fixtures/mock_rss -------------------------------------------------------------------------------- /tests/unit/providers/amazon/test-fixtures/snapshots/amzn:2/alas-2018-939.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/amazon/test-fixtures/snapshots/amzn:2/alas-2018-939.json -------------------------------------------------------------------------------- /tests/unit/providers/amazon/test-fixtures/snapshots/amzn:2022/alas-2021-001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/amazon/test-fixtures/snapshots/amzn:2022/alas-2021-001.json -------------------------------------------------------------------------------- /tests/unit/providers/amazon/test-fixtures/snapshots/amzn:2023/alas-2023-126.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/amazon/test-fixtures/snapshots/amzn:2023/alas-2023-126.json -------------------------------------------------------------------------------- /tests/unit/providers/amazon/test_amazon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/amazon/test_amazon.py -------------------------------------------------------------------------------- /tests/unit/providers/bitnami/test-fixtures/snapshots/bit-brotli-2020-8927.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/bitnami/test-fixtures/snapshots/bit-brotli-2020-8927.json -------------------------------------------------------------------------------- /tests/unit/providers/bitnami/test-fixtures/snapshots/bit-consul-2021-37219.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/bitnami/test-fixtures/snapshots/bit-consul-2021-37219.json -------------------------------------------------------------------------------- /tests/unit/providers/bitnami/test-fixtures/vulndb/data/brotli/BIT-brotli-2020-8927.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/bitnami/test-fixtures/vulndb/data/brotli/BIT-brotli-2020-8927.json -------------------------------------------------------------------------------- /tests/unit/providers/bitnami/test-fixtures/vulndb/data/consul/BIT-consul-2021-37219.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/bitnami/test-fixtures/vulndb/data/consul/BIT-consul-2021-37219.json -------------------------------------------------------------------------------- /tests/unit/providers/bitnami/test_bitnami.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/bitnami/test_bitnami.py -------------------------------------------------------------------------------- /tests/unit/providers/chainguard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/providers/chainguard/test-fixtures/input/secdb/security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/chainguard/test-fixtures/input/secdb/security.json -------------------------------------------------------------------------------- /tests/unit/providers/chainguard/test_chainguard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/chainguard/test_chainguard.py -------------------------------------------------------------------------------- /tests/unit/providers/chainguard_libraries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/providers/chainguard_libraries/test-fixtures/input/openvex/all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/chainguard_libraries/test-fixtures/input/openvex/all.json -------------------------------------------------------------------------------- /tests/unit/providers/chainguard_libraries/test_openvex_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/chainguard_libraries/test_openvex_parser.py -------------------------------------------------------------------------------- /tests/unit/providers/chainguard_libraries/test_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/chainguard_libraries/test_provider.py -------------------------------------------------------------------------------- /tests/unit/providers/debian/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/input/DSA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/input/DSA -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/input/debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/input/debian.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/input/legacy/debian-7/.gitignore: -------------------------------------------------------------------------------- 1 | # this is not a DB -- I promise 2 | !results.db 3 | -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/input/legacy/debian-7/results.db: -------------------------------------------------------------------------------- 1 | # this is a dummy DB! 2 | -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/input/legacy/vulnerabilities-debian:7-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/input/legacy/vulnerabilities-debian:7-0.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:10/cve-2005-3111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:10/cve-2005-3111.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:10/cve-2007-2383.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:10/cve-2007-2383.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:10/cve-2008-7220.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:10/cve-2008-7220.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:10/cve-2012-0833.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:10/cve-2012-0833.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:10/cve-2013-1444.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:10/cve-2013-1444.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:10/cve-2022-0456.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:10/cve-2022-0456.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:11/cve-2022-0456.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:11/cve-2022-0456.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:11/cve-2025-53603.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:11/cve-2025-53603.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:12/cve-2022-0456.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:12/cve-2022-0456.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:12/cve-2025-53603.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:12/cve-2025-53603.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:13/cve-2025-53603.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:13/cve-2025-53603.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2004-1653.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2004-1653.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2005-3330.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2005-3330.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2007-3072.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2007-3072.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2011-1758.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2011-1758.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2013-2188.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2013-2188.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2013-7171.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2013-7171.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2013-7353.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2013-7353.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2014-3230.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2014-3230.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2015-4170.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2015-4170.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2015-4176.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2015-4176.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2015-4177.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2015-4177.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2016-4450.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2016-4450.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2016-5105.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2016-5105.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2016-5106.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2016-5106.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2016-5107.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2016-5107.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2016-9812.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2016-9812.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2016-9816.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:7/cve-2016-9816.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:8/cve-2005-3111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:8/cve-2005-3111.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:8/cve-2007-2383.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:8/cve-2007-2383.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:8/cve-2008-7220.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:8/cve-2008-7220.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:8/cve-2013-1444.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:8/cve-2013-1444.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:9/cve-2005-3111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:9/cve-2005-3111.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:9/cve-2007-2383.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:9/cve-2007-2383.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:9/cve-2008-7220.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:9/cve-2008-7220.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:9/cve-2013-1444.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:9/cve-2013-1444.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:9/cve-2022-0456.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:9/cve-2022-0456.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:unstable/cve-2005-3111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:unstable/cve-2005-3111.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:unstable/cve-2007-2383.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:unstable/cve-2007-2383.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:unstable/cve-2008-7220.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:unstable/cve-2008-7220.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:unstable/cve-2013-1444.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:unstable/cve-2013-1444.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:unstable/cve-2022-0456.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:unstable/cve-2022-0456.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test-fixtures/snapshots/debian:unstable/cve-2025-53603.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test-fixtures/snapshots/debian:unstable/cve-2025-53603.json -------------------------------------------------------------------------------- /tests/unit/providers/debian/test_debian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/debian/test_debian.py -------------------------------------------------------------------------------- /tests/unit/providers/echo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/input/echo-advisories/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/input/echo-advisories/data.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2007-4559.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2007-4559.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2009-2940.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2009-2940.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2009-3720.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2009-3720.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2013-0340.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2013-0340.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2015-20107.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2015-20107.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2016-3189.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2016-3189.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2018-25032.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2018-25032.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2019-12900.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2019-12900.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2020-10735.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2020-10735.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2020-29396.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2020-29396.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2021-28861.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2021-28861.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2021-32052.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2021-32052.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2021-3618.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2021-3618.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2022-26488.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2022-26488.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2022-37454.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2022-37454.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2022-42919.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2022-42919.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2022-45061.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2022-45061.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2023-24329.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2023-24329.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2023-27043.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2023-27043.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2023-36632.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2023-36632.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2023-40217.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2023-40217.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2023-44487.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2023-44487.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2024-6232.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2024-6232.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2024-7592.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2024-7592.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2024-9287.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test-fixtures/snapshots/echo:rolling/CVE-2024-9287.json -------------------------------------------------------------------------------- /tests/unit/providers/echo/test_echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/echo/test_echo.py -------------------------------------------------------------------------------- /tests/unit/providers/epss/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/providers/epss/epss_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/epss/epss_test.py -------------------------------------------------------------------------------- /tests/unit/providers/epss/test-fixtures/example-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/epss/test-fixtures/example-1.csv -------------------------------------------------------------------------------- /tests/unit/providers/epss/test-fixtures/invalid-header.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/epss/test-fixtures/invalid-header.csv -------------------------------------------------------------------------------- /tests/unit/providers/epss/test-fixtures/missing-date.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/epss/test-fixtures/missing-date.csv -------------------------------------------------------------------------------- /tests/unit/providers/epss/test-fixtures/snapshots/example-1/cve-1999-0001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/epss/test-fixtures/snapshots/example-1/cve-1999-0001.json -------------------------------------------------------------------------------- /tests/unit/providers/epss/test-fixtures/snapshots/example-1/cve-1999-0002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/epss/test-fixtures/snapshots/example-1/cve-1999-0002.json -------------------------------------------------------------------------------- /tests/unit/providers/epss/test-fixtures/snapshots/example-1/cve-1999-0003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/epss/test-fixtures/snapshots/example-1/cve-1999-0003.json -------------------------------------------------------------------------------- /tests/unit/providers/epss/test-fixtures/snapshots/example-1/cve-1999-0004.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/epss/test-fixtures/snapshots/example-1/cve-1999-0004.json -------------------------------------------------------------------------------- /tests/unit/providers/epss/test-fixtures/snapshots/example-1/cve-1999-0005.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/epss/test-fixtures/snapshots/example-1/cve-1999-0005.json -------------------------------------------------------------------------------- /tests/unit/providers/github/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/providers/github/test-fixtures/snapshots/github:java/ghsa-mh6f-8j2x-4483.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/github/test-fixtures/snapshots/github:java/ghsa-mh6f-8j2x-4483.json -------------------------------------------------------------------------------- /tests/unit/providers/github/test-fixtures/snapshots/github:npm/ghsa-mh6f-8j2x-4483.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/github/test-fixtures/snapshots/github:npm/ghsa-mh6f-8j2x-4483.json -------------------------------------------------------------------------------- /tests/unit/providers/github/test_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/github/test_github.py -------------------------------------------------------------------------------- /tests/unit/providers/kev/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/providers/kev/test-fixtures/single-entry/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/kev/test-fixtures/single-entry/example1.json -------------------------------------------------------------------------------- /tests/unit/providers/kev/test-fixtures/valid-catalog-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/kev/test-fixtures/valid-catalog-1.json -------------------------------------------------------------------------------- /tests/unit/providers/kev/test_kev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/kev/test_kev.py -------------------------------------------------------------------------------- /tests/unit/providers/mariner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/providers/mariner/test-fixtures/azure-linux-truncated-3.0-oval.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/mariner/test-fixtures/azure-linux-truncated-3.0-oval.xml -------------------------------------------------------------------------------- /tests/unit/providers/mariner/test-fixtures/mariner-truncated-2.0-oval.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/mariner/test-fixtures/mariner-truncated-2.0-oval.xml -------------------------------------------------------------------------------- /tests/unit/providers/mariner/test-fixtures/snapshots/mariner:2.0/CVE-2022-3736.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/mariner/test-fixtures/snapshots/mariner:2.0/CVE-2022-3736.json -------------------------------------------------------------------------------- /tests/unit/providers/mariner/test-fixtures/snapshots/mariner:2.0/CVE-2023-21977.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/mariner/test-fixtures/snapshots/mariner:2.0/CVE-2023-21977.json -------------------------------------------------------------------------------- /tests/unit/providers/mariner/test-fixtures/snapshots/mariner:2.0/CVE-2023-21980.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/mariner/test-fixtures/snapshots/mariner:2.0/CVE-2023-21980.json -------------------------------------------------------------------------------- /tests/unit/providers/mariner/test-fixtures/snapshots/mariner:2.0/CVE-2023-29404.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/mariner/test-fixtures/snapshots/mariner:2.0/CVE-2023-29404.json -------------------------------------------------------------------------------- /tests/unit/providers/mariner/test_mariner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/mariner/test_mariner.py -------------------------------------------------------------------------------- /tests/unit/providers/minimos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/providers/minimos/test-fixtures/input/secdb/security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/minimos/test-fixtures/input/secdb/security.json -------------------------------------------------------------------------------- /tests/unit/providers/minimos/test_minimos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/minimos/test_minimos.py -------------------------------------------------------------------------------- /tests/unit/providers/nvd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/full-page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/full-page.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/single-entry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/single-entry.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2021/cve-2021-20581.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2021/cve-2021-20581.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2021/cve-2021-29913.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2021/cve-2021-29913.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2021/cve-2021-38859.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2021/cve-2021-38859.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2022/cve-2022-22375.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2022/cve-2022-22375.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2022/cve-2022-22377.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2022/cve-2022-22377.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2022/cve-2022-22380.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2022/cve-2022-22380.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2022/cve-2022-22384.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2022/cve-2022-22384.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2022/cve-2022-22385.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2022/cve-2022-22385.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2022/cve-2022-43889.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2022/cve-2022-43889.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2022/cve-2022-43891.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2022/cve-2022-43891.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2022/cve-2022-43893.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2022/cve-2022-43893.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-20261.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-20261.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-22068.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-22068.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-27314.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-27314.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-30781.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-30781.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-3706.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-3706.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-3707.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-3707.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-3746.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-3746.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-43250.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-43250.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45109.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45109.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45383.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45383.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45391.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45391.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45602.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45602.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45604.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45604.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45607.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45607.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45628.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45628.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45630.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45630.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45632.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45632.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45901.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45901.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45902.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45902.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45903.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45903.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45904.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45904.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45905.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45905.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45906.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45906.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45907.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-45907.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-46009.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-46009.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-5631.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-5631.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-5642.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/full-page/2023/cve-2023-5642.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test-fixtures/snapshots/single-entry/2022/cve-2022-1576.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test-fixtures/snapshots/single-entry/2022/cve-2022-1576.json -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test_api.py -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test_manager.py -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test_nvd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test_nvd.py -------------------------------------------------------------------------------- /tests/unit/providers/nvd/test_overrides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/nvd/test_overrides.py -------------------------------------------------------------------------------- /tests/unit/providers/oracle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/providers/oracle/test-fixtures/mock_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/oracle/test-fixtures/mock_data -------------------------------------------------------------------------------- /tests/unit/providers/oracle/test-fixtures/mock_ksplice_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/oracle/test-fixtures/mock_ksplice_data -------------------------------------------------------------------------------- /tests/unit/providers/oracle/test-fixtures/snapshots/ol:5/elsa-2007-0057.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/oracle/test-fixtures/snapshots/ol:5/elsa-2007-0057.json -------------------------------------------------------------------------------- /tests/unit/providers/oracle/test-fixtures/snapshots/ol:6/elsa-2018-4250.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/oracle/test-fixtures/snapshots/ol:6/elsa-2018-4250.json -------------------------------------------------------------------------------- /tests/unit/providers/oracle/test_oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/oracle/test_oracle.py -------------------------------------------------------------------------------- /tests/unit/providers/rhel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/csaf/advisories/rhsa-2023_3821.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/csaf/advisories/rhsa-2023_3821.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/csaf/advisories/rhsa-2023_7025.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/csaf/advisories/rhsa-2023_7025.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/csaf/advisories/rhsa-2024_0811.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/csaf/advisories/rhsa-2024_0811.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/csaf/advisories/rhsa-2024_1431.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/csaf/advisories/rhsa-2024_1431.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/csaf/input/cve/full/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/csaf/input/cve/min/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/csaf/input/cve/min_pages/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/csaf/input/cve/min_pages/1.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/csaf/server/2024/rhsa-2024_0010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/csaf/server/2024/rhsa-2024_0010.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/csaf/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/csaf/server/README.md -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/csaf/server/archive_latest.txt: -------------------------------------------------------------------------------- 1 | csaf_advisories_2025-02-15.tar.zst -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/csaf/server/changes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/csaf/server/changes.csv -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/csaf/server/csaf_advisories_2025-02-15.tar.zst: -------------------------------------------------------------------------------- 1 | A TAR.ZST OF CSAF RHSAs 2 | -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/csaf/server/deletions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/csaf/server/deletions.csv -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2017-3509: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2017-3509 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2017-3511: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2017-3511 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2017-3526: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2017-3526 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2017-3533: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2017-3533 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2017-3539: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2017-3539 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2017-3544: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2017-3544 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2019-25059: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2019-25059 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2020-16587: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2020-16587 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2020-16588: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2020-16588 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2021-20298: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2021-20298 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2021-20299: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2021-20299 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2022-1921: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2022-1921 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2022-1922: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2022-1922 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2022-1923: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2022-1923 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2022-1924: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2022-1924 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2022-1925: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2022-1925 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2022-2309: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2022-2309 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2023-4863: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2023-4863 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2023-5129: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2023-5129 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2023-5217: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/full/CVE-2023-5217 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2017-3509: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2017-3509 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2017-3511: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2017-3511 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2017-3526: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2017-3526 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2017-3533: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2017-3533 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2017-3539: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2017-3539 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2017-3544: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2017-3544 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2019-25059: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2019-25059 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2020-16587: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2020-16587 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2020-16588: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2020-16588 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2021-20298: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2021-20298 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2021-20299: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2021-20299 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2022-1921: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2022-1921 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2022-1922: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2022-1922 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2022-1923: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2022-1923 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2022-1924: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2022-1924 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2022-1925: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2022-1925 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2022-2309: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2022-2309 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2023-4863: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2023-4863 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2023-5129: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2023-5129 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2023-5217: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/cve/min/CVE-2023-5217 -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/oval/input/rhsa/com.redhat.rhsa-all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/oval/input/rhsa/com.redhat.rhsa-all.xml -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:5/cve-2017-3509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:5/cve-2017-3509.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:5/cve-2017-3511.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:5/cve-2017-3511.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:5/cve-2017-3526.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:5/cve-2017-3526.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:5/cve-2017-3533.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:5/cve-2017-3533.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:5/cve-2017-3539.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:5/cve-2017-3539.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:5/cve-2017-3544.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:5/cve-2017-3544.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2017-3509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2017-3509.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2017-3511.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2017-3511.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2017-3526.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2017-3526.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2017-3533.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2017-3533.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2017-3539.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2017-3539.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2017-3544.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2017-3544.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2020-16587.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2020-16587.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2020-16588.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2020-16588.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2021-20298.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2021-20298.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2021-20299.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2021-20299.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2022-1921.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2022-1921.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2022-1922.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2022-1922.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2022-1923.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2022-1923.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2022-1924.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2022-1924.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2022-1925.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2022-1925.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2023-4863.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2023-4863.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2023-5129.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2023-5129.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2023-5217.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:6/cve-2023-5217.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2017-3509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2017-3509.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2017-3511.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2017-3511.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2017-3526.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2017-3526.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2017-3533.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2017-3533.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2017-3539.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2017-3539.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2017-3544.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2017-3544.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2020-16587.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2020-16587.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2020-16588.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2020-16588.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2021-20298.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2021-20298.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2021-20299.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2021-20299.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2022-1921.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2022-1921.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2022-1922.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2022-1922.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2022-1923.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2022-1923.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2022-1924.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2022-1924.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2022-1925.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2022-1925.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2023-4863.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2023-4863.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2023-5129.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2023-5129.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2023-5217.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:7/cve-2023-5217.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8.6+eus/cve-2023-4863.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8.6+eus/cve-2023-4863.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8.6+eus/cve-2023-5129.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8.6+eus/cve-2023-5129.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8.6+eus/cve-2023-5217.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8.6+eus/cve-2023-5217.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2019-25059.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2019-25059.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2020-16587.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2020-16587.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2021-20298.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2021-20298.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2021-20299.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2021-20299.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2022-1921.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2022-1921.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2022-1922.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2022-1922.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2022-1923.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2022-1923.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2022-1924.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2022-1924.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2022-1925.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2022-1925.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2023-4863.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2023-4863.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2023-5129.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2023-5129.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2023-5217.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:8/cve-2023-5217.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9.0+eus/cve-2023-4863.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9.0+eus/cve-2023-4863.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9.0+eus/cve-2023-5129.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9.0+eus/cve-2023-5129.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9.0+eus/cve-2023-5217.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9.0+eus/cve-2023-5217.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9/cve-2019-25059.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9/cve-2019-25059.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9/cve-2022-1921.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9/cve-2022-1921.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9/cve-2022-1922.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9/cve-2022-1922.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9/cve-2022-1923.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9/cve-2022-1923.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9/cve-2022-1924.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9/cve-2022-1924.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9/cve-2022-1925.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9/cve-2022-1925.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9/cve-2022-2309.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9/cve-2022-2309.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9/cve-2023-4863.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9/cve-2023-4863.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9/cve-2023-5129.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9/cve-2023-5129.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9/cve-2023-5217.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test-fixtures/snapshots/rhel:9/cve-2023-5217.json -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test_csaf_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test_csaf_client.py -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test_csaf_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test_csaf_parser.py -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test_parser.py -------------------------------------------------------------------------------- /tests/unit/providers/rhel/test_rhel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rhel/test_rhel.py -------------------------------------------------------------------------------- /tests/unit/providers/rocky/test-fixtures/osv/RLSA-2021_3891.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rocky/test-fixtures/osv/RLSA-2021_3891.json -------------------------------------------------------------------------------- /tests/unit/providers/rocky/test-fixtures/osv/RLSA-2023_3220.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rocky/test-fixtures/osv/RLSA-2023_3220.json -------------------------------------------------------------------------------- /tests/unit/providers/rocky/test-fixtures/osv/RLSA-2024_3671.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rocky/test-fixtures/osv/RLSA-2024_3671.json -------------------------------------------------------------------------------- /tests/unit/providers/rocky/test_rocky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/rocky/test_rocky.py -------------------------------------------------------------------------------- /tests/unit/providers/sles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/providers/sles/test-fixtures/snapshots/sles:15.1/cve-2021-29154.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/sles/test-fixtures/snapshots/sles:15.1/cve-2021-29154.json -------------------------------------------------------------------------------- /tests/unit/providers/sles/test-fixtures/snapshots/sles:15/cve-2010-1323.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/sles/test-fixtures/snapshots/sles:15/cve-2010-1323.json -------------------------------------------------------------------------------- /tests/unit/providers/sles/test-fixtures/snapshots/sles:15/cve-2021-29154.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/sles/test-fixtures/snapshots/sles:15/cve-2021-29154.json -------------------------------------------------------------------------------- /tests/unit/providers/sles/test-fixtures/suse_truncated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/sles/test-fixtures/suse_truncated.xml -------------------------------------------------------------------------------- /tests/unit/providers/sles/test_sles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/sles/test_sles.py -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/example_ubuntu_cve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/example_ubuntu_cve -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/git_cat_file_batch_response_cve_11261.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/git_cat_file_batch_response_cve_11261.txt -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/git_cat_file_batch_response_cve_11411.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/git_cat_file_batch_response_cve_11411.txt -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/git_commits_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/git_commits_log -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/git_rev_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/git_rev_log -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/repo-fast-export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/repo-fast-export -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:14.04/cve-2019-17185.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:14.04/cve-2019-17185.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:14.04/cve-2021-4204.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:14.04/cve-2021-4204.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:14.04/cve-2022-20566.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:14.04/cve-2022-20566.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:14.04/cve-2022-41859.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:14.04/cve-2022-41859.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:14.04/cve-2022-41860.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:14.04/cve-2022-41860.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:14.04/cve-2022-41861.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:14.04/cve-2022-41861.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:16.04/cve-2019-17185.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:16.04/cve-2019-17185.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:16.04/cve-2021-4204.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:16.04/cve-2021-4204.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:16.04/cve-2022-20566.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:16.04/cve-2022-20566.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:16.04/cve-2022-41859.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:16.04/cve-2022-41859.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:16.04/cve-2022-41860.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:16.04/cve-2022-41860.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:16.04/cve-2022-41861.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:16.04/cve-2022-41861.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:18.04/cve-2019-17185.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:18.04/cve-2019-17185.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:18.04/cve-2021-4204.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:18.04/cve-2021-4204.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:18.04/cve-2022-20566.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:18.04/cve-2022-20566.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:18.04/cve-2022-41859.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:18.04/cve-2022-41859.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:18.04/cve-2022-41860.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:18.04/cve-2022-41860.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:18.04/cve-2022-41861.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:18.04/cve-2022-41861.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:19.10/cve-2019-17185.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:19.10/cve-2019-17185.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:20.04/cve-2019-17185.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:20.04/cve-2019-17185.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:20.04/cve-2021-4204.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:20.04/cve-2021-4204.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:20.04/cve-2022-20566.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:20.04/cve-2022-20566.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:20.04/cve-2022-41859.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:20.04/cve-2022-41859.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:20.04/cve-2022-41860.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:20.04/cve-2022-41860.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:20.04/cve-2022-41861.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:20.04/cve-2022-41861.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:20.10/cve-2019-17185.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:20.10/cve-2019-17185.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:21.04/cve-2019-17185.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:21.04/cve-2019-17185.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:21.04/cve-2021-4204.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:21.04/cve-2021-4204.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:21.10/cve-2019-17185.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:21.10/cve-2019-17185.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:21.10/cve-2021-4204.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:21.10/cve-2021-4204.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.04/cve-2019-17185.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.04/cve-2019-17185.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.04/cve-2021-4204.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.04/cve-2021-4204.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.04/cve-2022-20566.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.04/cve-2022-20566.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.04/cve-2022-41859.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.04/cve-2022-41859.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.04/cve-2022-41860.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.04/cve-2022-41860.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.04/cve-2022-41861.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.04/cve-2022-41861.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.10/cve-2019-17185.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.10/cve-2019-17185.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.10/cve-2021-4204.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.10/cve-2021-4204.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.10/cve-2022-20566.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.10/cve-2022-20566.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.10/cve-2022-41859.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.10/cve-2022-41859.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.10/cve-2022-41860.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.10/cve-2022-41860.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.10/cve-2022-41861.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/snapshots/ubuntu:22.10/cve-2022-41861.json -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test-fixtures/weird_example_cve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test-fixtures/weird_example_cve -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test_git_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test_git_wrapper.py -------------------------------------------------------------------------------- /tests/unit/providers/ubuntu/test_ubuntu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/ubuntu/test_ubuntu.py -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/input/secdb/security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/input/secdb/security.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2016-2781.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2016-2781.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2017-8806.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2017-8806.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2018-1000156.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2018-1000156.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2018-20969.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2018-20969.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2018-25032.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2018-25032.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2018-6951.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2018-6951.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2018-6952.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2018-6952.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2019-13636.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2019-13636.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2019-13638.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2019-13638.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2019-20633.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2019-20633.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2019-6293.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2019-6293.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2020-10735.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2020-10735.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2020-8927.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2020-8927.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2021-30218.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2021-30218.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2021-30219.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2021-30219.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2021-43618.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2021-43618.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-1586.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-1586.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-1587.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-1587.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-26691.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-26691.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-27404.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-27404.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-27405.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-27405.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-27406.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-27406.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-28391.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-28391.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-28506.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-28506.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-29458.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-29458.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-30065.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-30065.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-32221.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-32221.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-3358.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-3358.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-3602.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-3602.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-36227.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-36227.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-37434.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-37434.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-3786.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-3786.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-38126.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-38126.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-38128.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-38128.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-38533.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-38533.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-39046.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-39046.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-39253.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-39253.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-39260.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-39260.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-40303.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-40303.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-40304.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-40304.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-40674.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-40674.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-41716.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-41716.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-41717.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-41717.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-41720.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-41720.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-42010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-42010.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-42011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-42011.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-42012.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-42012.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-42916.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-42916.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-43680.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-43680.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-46908.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2022-46908.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2023-28840.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2023-28840.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2023-28841.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2023-28841.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2023-28842.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2023-28842.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2023-30551.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2023-30551.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2023-39325.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2023-39325.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2023-3978.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2023-3978.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2023-45283.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2023-45283.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2023-45284.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test-fixtures/snapshots/wolfi:rolling/CVE-2023-45284.json -------------------------------------------------------------------------------- /tests/unit/providers/wolfi/test_wolfi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/providers/wolfi/test_wolfi.py -------------------------------------------------------------------------------- /tests/unit/test_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/test_distribution.py -------------------------------------------------------------------------------- /tests/unit/test_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/test_provider.py -------------------------------------------------------------------------------- /tests/unit/test_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/test_result.py -------------------------------------------------------------------------------- /tests/unit/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/test_schema.py -------------------------------------------------------------------------------- /tests/unit/test_workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/test_workspace.py -------------------------------------------------------------------------------- /tests/unit/tool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/tool/test_ecosystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/tool/test_ecosystem.py -------------------------------------------------------------------------------- /tests/unit/tool/test_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/tool/test_finder.py -------------------------------------------------------------------------------- /tests/unit/tool/test_first_observed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/tool/test_first_observed.py -------------------------------------------------------------------------------- /tests/unit/tool/test_grype_db_first_observed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/tool/test_grype_db_first_observed.py -------------------------------------------------------------------------------- /tests/unit/tool/test_vunnel_first_observed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/tool/test_vunnel_first_observed.py -------------------------------------------------------------------------------- /tests/unit/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/utils/test_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/utils/test_archive.py -------------------------------------------------------------------------------- /tests/unit/utils/test_fdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/utils/test_fdb.py -------------------------------------------------------------------------------- /tests/unit/utils/test_hasher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/utils/test_hasher.py -------------------------------------------------------------------------------- /tests/unit/utils/test_http_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/utils/test_http_wrapper.py -------------------------------------------------------------------------------- /tests/unit/utils/test_osv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/utils/test_osv.py -------------------------------------------------------------------------------- /tests/unit/utils/test_oval_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/utils/test_oval_v2.py -------------------------------------------------------------------------------- /tests/unit/utils/test_rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/utils/test_rpm.py -------------------------------------------------------------------------------- /tests/unit/utils/test_vulnerability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tests/unit/utils/test_vulnerability.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/tox.ini -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/vunnel/HEAD/uv.lock --------------------------------------------------------------------------------