Lookup for vulnerabilities affecting packages.

GET /api/vulnerabilities/13638?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "url": "http://public2.vulnerablecode.io/api/vulnerabilities/13638?format=api",
    "vulnerability_id": "VCID-r95c-k4nq-jbd1",
    "summary": "path-to-regexp outputs backtracking regular expressions\n### Impact\n\nA bad regular expression is generated any time you have two parameters within a single segment, separated by something that is not a period (`.`). For example, `/:a-:b`.\n\n### Patches\n\nFor users of 0.1, upgrade to `0.1.10`. All other users should upgrade to `8.0.0`.\n\nThese versions add backtrack protection when a custom regex pattern is not provided:\n\n- [0.1.10](https://github.com/pillarjs/path-to-regexp/releases/tag/v0.1.10)\n- [1.9.0](https://github.com/pillarjs/path-to-regexp/releases/tag/v1.9.0)\n- [3.3.0](https://github.com/pillarjs/path-to-regexp/releases/tag/v3.3.0)\n- [6.3.0](https://github.com/pillarjs/path-to-regexp/releases/tag/v6.3.0)\n\nThey do not protect against vulnerable user supplied capture groups. Protecting against explicit user patterns is out of scope for old versions and not considered a vulnerability.\n\nVersion [7.1.0](https://github.com/pillarjs/path-to-regexp/releases/tag/v7.1.0) can enable `strict: true` and get an error when the regular expression might be bad.\n\nVersion [8.0.0](https://github.com/pillarjs/path-to-regexp/releases/tag/v8.0.0) removes the features that can cause a ReDoS.\n\n### Workarounds\n\nAll versions can be patched by providing a custom regular expression for parameters after the first in a single segment. As long as the custom regular expression does not match the text before the parameter, you will be safe. For example, change `/:a-:b` to `/:a-:b([^-/]+)`.\n\nIf paths cannot be rewritten and versions cannot be upgraded, another alternative is to limit the URL length. For example, halving the attack string improves performance by 4x faster.\n\n### Details\n\nUsing `/:a-:b` will produce the regular expression `/^\\/([^\\/]+?)-([^\\/]+?)\\/?$/`. This can be exploited by a path such as `/a${'-a'.repeat(8_000)}/a`. [OWASP](https://owasp.org/www-community/attacks/Regular_expression_Denial_of_Service_-_ReDoS) has a good example of why this occurs, but the TL;DR is the `/a` at the end ensures this route would never match but due to naive backtracking it will still attempt every combination of the `:a-:b` on the repeated 8,000 `-a`.\n\nBecause JavaScript is single threaded and regex matching runs on the main thread, poor performance will block the event loop and can lead to a DoS. In local benchmarks, exploiting the unsafe regex will result in performance that is over 1000x worse than the safe regex. In a more realistic environment using Express v4 and 10 concurrent connections, this translated to average latency of ~600ms vs 1ms.\n\n### References\n\n* [OWASP](https://owasp.org/www-community/attacks/Regular_expression_Denial_of_Service_-_ReDoS)\n* [Detailed blog post](https://blakeembrey.com/posts/2024-09-web-redos/)",
    "aliases": [
        {
            "alias": "CVE-2024-45296"
        },
        {
            "alias": "GHSA-9wv6-86v2-598j"
        }
    ],
    "fixed_packages": [
        {
            "url": "http://public2.vulnerablecode.io/api/packages/994730?format=api",
            "purl": "pkg:deb/debian/node-path-to-regexp@6.3.0-1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1vjw-mm86-k7gn"
                },
                {
                    "vulnerability": "VCID-366w-k4rs-v7d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-path-to-regexp@6.3.0-1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/932506?format=api",
            "purl": "pkg:deb/debian/node-path-to-regexp@6.3.0-1?distro=trixie",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1vjw-mm86-k7gn"
                },
                {
                    "vulnerability": "VCID-366w-k4rs-v7d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-path-to-regexp@6.3.0-1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/932505?format=api",
            "purl": "pkg:deb/debian/node-path-to-regexp@8.4.1-1?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-path-to-regexp@8.4.1-1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1103009?format=api",
            "purl": "pkg:deb/debian/node-path-to-regexp@8.4.2-1?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-path-to-regexp@8.4.2-1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/48561?format=api",
            "purl": "pkg:npm/path-to-regexp@0.1.10",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2xgj-yjdf-nqeh"
                },
                {
                    "vulnerability": "VCID-vzcu-mpsr-qbgm"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@0.1.10"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/48558?format=api",
            "purl": "pkg:npm/path-to-regexp@1.9.0",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@1.9.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/146157?format=api",
            "purl": "pkg:npm/path-to-regexp@2.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@2.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/48569?format=api",
            "purl": "pkg:npm/path-to-regexp@3.3.0",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@3.3.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/146159?format=api",
            "purl": "pkg:npm/path-to-regexp@4.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@4.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/48570?format=api",
            "purl": "pkg:npm/path-to-regexp@6.3.0",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@6.3.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/146160?format=api",
            "purl": "pkg:npm/path-to-regexp@7.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@7.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/48565?format=api",
            "purl": "pkg:npm/path-to-regexp@8.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1vjw-mm86-k7gn"
                },
                {
                    "vulnerability": "VCID-366w-k4rs-v7d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@8.0.0"
        }
    ],
    "affected_packages": [
        {
            "url": "http://public2.vulnerablecode.io/api/packages/932503?format=api",
            "purl": "pkg:deb/debian/node-path-to-regexp@6.2.0-1?distro=trixie",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1vjw-mm86-k7gn"
                },
                {
                    "vulnerability": "VCID-366w-k4rs-v7d3"
                },
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-path-to-regexp@6.2.0-1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/994728?format=api",
            "purl": "pkg:deb/debian/node-path-to-regexp@6.2.0-1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1vjw-mm86-k7gn"
                },
                {
                    "vulnerability": "VCID-366w-k4rs-v7d3"
                },
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-path-to-regexp@6.2.0-1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/932504?format=api",
            "purl": "pkg:deb/debian/node-path-to-regexp@6.2.1-1?distro=trixie",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1vjw-mm86-k7gn"
                },
                {
                    "vulnerability": "VCID-366w-k4rs-v7d3"
                },
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-path-to-regexp@6.2.1-1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/994729?format=api",
            "purl": "pkg:deb/debian/node-path-to-regexp@6.2.1-1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1vjw-mm86-k7gn"
                },
                {
                    "vulnerability": "VCID-366w-k4rs-v7d3"
                },
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-path-to-regexp@6.2.1-1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577062?format=api",
            "purl": "pkg:npm/path-to-regexp@0.0.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2xgj-yjdf-nqeh"
                },
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                },
                {
                    "vulnerability": "VCID-vzcu-mpsr-qbgm"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@0.0.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577063?format=api",
            "purl": "pkg:npm/path-to-regexp@0.0.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2xgj-yjdf-nqeh"
                },
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                },
                {
                    "vulnerability": "VCID-vzcu-mpsr-qbgm"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@0.0.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577064?format=api",
            "purl": "pkg:npm/path-to-regexp@0.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2xgj-yjdf-nqeh"
                },
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                },
                {
                    "vulnerability": "VCID-vzcu-mpsr-qbgm"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@0.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577065?format=api",
            "purl": "pkg:npm/path-to-regexp@0.1.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2xgj-yjdf-nqeh"
                },
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                },
                {
                    "vulnerability": "VCID-vzcu-mpsr-qbgm"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@0.1.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577066?format=api",
            "purl": "pkg:npm/path-to-regexp@0.1.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2xgj-yjdf-nqeh"
                },
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                },
                {
                    "vulnerability": "VCID-vzcu-mpsr-qbgm"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@0.1.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577067?format=api",
            "purl": "pkg:npm/path-to-regexp@0.1.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2xgj-yjdf-nqeh"
                },
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                },
                {
                    "vulnerability": "VCID-vzcu-mpsr-qbgm"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@0.1.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577068?format=api",
            "purl": "pkg:npm/path-to-regexp@0.1.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2xgj-yjdf-nqeh"
                },
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                },
                {
                    "vulnerability": "VCID-vzcu-mpsr-qbgm"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@0.1.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577069?format=api",
            "purl": "pkg:npm/path-to-regexp@0.1.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2xgj-yjdf-nqeh"
                },
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                },
                {
                    "vulnerability": "VCID-vzcu-mpsr-qbgm"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@0.1.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577070?format=api",
            "purl": "pkg:npm/path-to-regexp@0.1.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2xgj-yjdf-nqeh"
                },
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                },
                {
                    "vulnerability": "VCID-vzcu-mpsr-qbgm"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@0.1.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577071?format=api",
            "purl": "pkg:npm/path-to-regexp@0.1.7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2xgj-yjdf-nqeh"
                },
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                },
                {
                    "vulnerability": "VCID-vzcu-mpsr-qbgm"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@0.1.7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577072?format=api",
            "purl": "pkg:npm/path-to-regexp@0.1.8",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2xgj-yjdf-nqeh"
                },
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                },
                {
                    "vulnerability": "VCID-vzcu-mpsr-qbgm"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@0.1.8"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577073?format=api",
            "purl": "pkg:npm/path-to-regexp@0.1.9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2xgj-yjdf-nqeh"
                },
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                },
                {
                    "vulnerability": "VCID-vzcu-mpsr-qbgm"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@0.1.9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/146158?format=api",
            "purl": "pkg:npm/path-to-regexp@0.2.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@0.2.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577040?format=api",
            "purl": "pkg:npm/path-to-regexp@0.2.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@0.2.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577041?format=api",
            "purl": "pkg:npm/path-to-regexp@0.2.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@0.2.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577042?format=api",
            "purl": "pkg:npm/path-to-regexp@0.2.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@0.2.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577043?format=api",
            "purl": "pkg:npm/path-to-regexp@0.2.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@0.2.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577044?format=api",
            "purl": "pkg:npm/path-to-regexp@0.2.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@0.2.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577045?format=api",
            "purl": "pkg:npm/path-to-regexp@1.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@1.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577046?format=api",
            "purl": "pkg:npm/path-to-regexp@1.0.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@1.0.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577047?format=api",
            "purl": "pkg:npm/path-to-regexp@1.0.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@1.0.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577048?format=api",
            "purl": "pkg:npm/path-to-regexp@1.0.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@1.0.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577049?format=api",
            "purl": "pkg:npm/path-to-regexp@1.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@1.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577050?format=api",
            "purl": "pkg:npm/path-to-regexp@1.1.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@1.1.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577051?format=api",
            "purl": "pkg:npm/path-to-regexp@1.2.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@1.2.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577052?format=api",
            "purl": "pkg:npm/path-to-regexp@1.2.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@1.2.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577053?format=api",
            "purl": "pkg:npm/path-to-regexp@1.3.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@1.3.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577054?format=api",
            "purl": "pkg:npm/path-to-regexp@1.4.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@1.4.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577055?format=api",
            "purl": "pkg:npm/path-to-regexp@1.5.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@1.5.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577056?format=api",
            "purl": "pkg:npm/path-to-regexp@1.5.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@1.5.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577057?format=api",
            "purl": "pkg:npm/path-to-regexp@1.5.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@1.5.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577058?format=api",
            "purl": "pkg:npm/path-to-regexp@1.5.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@1.5.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577059?format=api",
            "purl": "pkg:npm/path-to-regexp@1.6.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@1.6.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577060?format=api",
            "purl": "pkg:npm/path-to-regexp@1.7.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@1.7.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577061?format=api",
            "purl": "pkg:npm/path-to-regexp@1.8.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@1.8.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/146157?format=api",
            "purl": "pkg:npm/path-to-regexp@2.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@2.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577032?format=api",
            "purl": "pkg:npm/path-to-regexp@2.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@2.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577033?format=api",
            "purl": "pkg:npm/path-to-regexp@2.2.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@2.2.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577034?format=api",
            "purl": "pkg:npm/path-to-regexp@2.2.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@2.2.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577035?format=api",
            "purl": "pkg:npm/path-to-regexp@2.3.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@2.3.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577036?format=api",
            "purl": "pkg:npm/path-to-regexp@2.4.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@2.4.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577037?format=api",
            "purl": "pkg:npm/path-to-regexp@3.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@3.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577038?format=api",
            "purl": "pkg:npm/path-to-regexp@3.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@3.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577039?format=api",
            "purl": "pkg:npm/path-to-regexp@3.2.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@3.2.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/146159?format=api",
            "purl": "pkg:npm/path-to-regexp@4.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@4.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577074?format=api",
            "purl": "pkg:npm/path-to-regexp@4.0.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@4.0.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577075?format=api",
            "purl": "pkg:npm/path-to-regexp@4.0.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@4.0.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577076?format=api",
            "purl": "pkg:npm/path-to-regexp@4.0.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@4.0.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577077?format=api",
            "purl": "pkg:npm/path-to-regexp@4.0.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@4.0.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577078?format=api",
            "purl": "pkg:npm/path-to-regexp@4.0.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@4.0.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577079?format=api",
            "purl": "pkg:npm/path-to-regexp@5.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@5.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577080?format=api",
            "purl": "pkg:npm/path-to-regexp@6.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@6.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577081?format=api",
            "purl": "pkg:npm/path-to-regexp@6.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@6.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577082?format=api",
            "purl": "pkg:npm/path-to-regexp@6.2.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@6.2.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577083?format=api",
            "purl": "pkg:npm/path-to-regexp@6.2.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@6.2.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577084?format=api",
            "purl": "pkg:npm/path-to-regexp@6.2.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@6.2.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/146160?format=api",
            "purl": "pkg:npm/path-to-regexp@7.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@7.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/577085?format=api",
            "purl": "pkg:npm/path-to-regexp@7.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/path-to-regexp@7.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/92509?format=api",
            "purl": "pkg:rpm/redhat/automation-controller@4.5.13-1?arch=el8ap",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gmsu-xfke-47bg"
                },
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/automation-controller@4.5.13-1%3Farch=el8ap"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/92508?format=api",
            "purl": "pkg:rpm/redhat/automation-controller@4.5.13-1?arch=el9ap",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gmsu-xfke-47bg"
                },
                {
                    "vulnerability": "VCID-r95c-k4nq-jbd1"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/automation-controller@4.5.13-1%3Farch=el9ap"
        }
    ],
    "references": [
        {
            "reference_url": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2024-45296.json",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "5.3",
                    "scoring_system": "cvssv3",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L"
                }
            ],
            "url": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2024-45296.json"
        },
        {
            "reference_url": "https://api.first.org/data/v1/epss?cve=CVE-2024-45296",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "0.00064",
                    "scoring_system": "epss",
                    "scoring_elements": "0.19892",
                    "published_at": "2026-05-14T12:55:00Z"
                },
                {
                    "value": "0.00064",
                    "scoring_system": "epss",
                    "scoring_elements": "0.19804",
                    "published_at": "2026-05-12T12:55:00Z"
                },
                {
                    "value": "0.00064",
                    "scoring_system": "epss",
                    "scoring_elements": "0.19777",
                    "published_at": "2026-05-11T12:55:00Z"
                },
                {
                    "value": "0.00064",
                    "scoring_system": "epss",
                    "scoring_elements": "0.19814",
                    "published_at": "2026-05-09T12:55:00Z"
                },
                {
                    "value": "0.00064",
                    "scoring_system": "epss",
                    "scoring_elements": "0.19729",
                    "published_at": "2026-05-07T12:55:00Z"
                },
                {
                    "value": "0.00064",
                    "scoring_system": "epss",
                    "scoring_elements": "0.20069",
                    "published_at": "2026-04-02T12:55:00Z"
                },
                {
                    "value": "0.00064",
                    "scoring_system": "epss",
                    "scoring_elements": "0.20127",
                    "published_at": "2026-04-04T12:55:00Z"
                },
                {
                    "value": "0.00064",
                    "scoring_system": "epss",
                    "scoring_elements": "0.19855",
                    "published_at": "2026-04-07T12:55:00Z"
                },
                {
                    "value": "0.00064",
                    "scoring_system": "epss",
                    "scoring_elements": "0.19934",
                    "published_at": "2026-04-08T12:55:00Z"
                },
                {
                    "value": "0.00064",
                    "scoring_system": "epss",
                    "scoring_elements": "0.19989",
                    "published_at": "2026-04-09T12:55:00Z"
                },
                {
                    "value": "0.00064",
                    "scoring_system": "epss",
                    "scoring_elements": "0.19651",
                    "published_at": "2026-05-05T12:55:00Z"
                },
                {
                    "value": "0.00064",
                    "scoring_system": "epss",
                    "scoring_elements": "0.19743",
                    "published_at": "2026-04-29T12:55:00Z"
                },
                {
                    "value": "0.00064",
                    "scoring_system": "epss",
                    "scoring_elements": "0.19773",
                    "published_at": "2026-04-26T12:55:00Z"
                },
                {
                    "value": "0.00064",
                    "scoring_system": "epss",
                    "scoring_elements": "0.1978",
                    "published_at": "2026-04-24T12:55:00Z"
                },
                {
                    "value": "0.00064",
                    "scoring_system": "epss",
                    "scoring_elements": "0.19885",
                    "published_at": "2026-04-21T12:55:00Z"
                },
                {
                    "value": "0.00064",
                    "scoring_system": "epss",
                    "scoring_elements": "0.19888",
                    "published_at": "2026-04-18T12:55:00Z"
                },
                {
                    "value": "0.00064",
                    "scoring_system": "epss",
                    "scoring_elements": "0.19883",
                    "published_at": "2026-04-16T12:55:00Z"
                },
                {
                    "value": "0.00064",
                    "scoring_system": "epss",
                    "scoring_elements": "0.19905",
                    "published_at": "2026-04-13T12:55:00Z"
                },
                {
                    "value": "0.00064",
                    "scoring_system": "epss",
                    "scoring_elements": "0.20008",
                    "published_at": "2026-04-11T12:55:00Z"
                },
                {
                    "value": "0.00064",
                    "scoring_system": "epss",
                    "scoring_elements": "0.19964",
                    "published_at": "2026-04-12T12:55:00Z"
                }
            ],
            "url": "https://api.first.org/data/v1/epss?cve=CVE-2024-45296"
        },
        {
            "reference_url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-45296",
            "reference_id": "",
            "reference_type": "",
            "scores": [],
            "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-45296"
        },
        {
            "reference_url": "https://github.com/pillarjs/path-to-regexp",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.5",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "7.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:P"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/pillarjs/path-to-regexp"
        },
        {
            "reference_url": "https://github.com/pillarjs/path-to-regexp/commit/29b96b4a1de52824e1ca0f49a701183cc4ed476f",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.5",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "7.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:P"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2024-09-09T19:32:57Z/"
                }
            ],
            "url": "https://github.com/pillarjs/path-to-regexp/commit/29b96b4a1de52824e1ca0f49a701183cc4ed476f"
        },
        {
            "reference_url": "https://github.com/pillarjs/path-to-regexp/commit/60f2121e9b66b7b622cc01080df0aabda9eedee6",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.5",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "7.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:P"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2024-09-09T19:32:57Z/"
                }
            ],
            "url": "https://github.com/pillarjs/path-to-regexp/commit/60f2121e9b66b7b622cc01080df0aabda9eedee6"
        },
        {
            "reference_url": "https://github.com/pillarjs/path-to-regexp/commit/925ac8e3c5780b02f58cbd4e52f95da8ad2ac485",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.5",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "7.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:P"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/pillarjs/path-to-regexp/commit/925ac8e3c5780b02f58cbd4e52f95da8ad2ac485"
        },
        {
            "reference_url": "https://github.com/pillarjs/path-to-regexp/commit/d31670ae8f6e69cbfd56e835742195b7d10942ef",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.5",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "7.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:P"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/pillarjs/path-to-regexp/commit/d31670ae8f6e69cbfd56e835742195b7d10942ef"
        },
        {
            "reference_url": "https://github.com/pillarjs/path-to-regexp/commit/f1253b47b347dcb909e3e80b0eb2649109e59894",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.5",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "7.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:P"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/pillarjs/path-to-regexp/commit/f1253b47b347dcb909e3e80b0eb2649109e59894"
        },
        {
            "reference_url": "https://github.com/pillarjs/path-to-regexp/releases/tag/v6.3.0",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.5",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "7.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:P"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/pillarjs/path-to-regexp/releases/tag/v6.3.0"
        },
        {
            "reference_url": "https://github.com/pillarjs/path-to-regexp/security/advisories/GHSA-9wv6-86v2-598j",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.5",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "cvssv3.1_qr",
                    "scoring_elements": ""
                },
                {
                    "value": "7.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:P"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2024-09-09T19:32:57Z/"
                }
            ],
            "url": "https://github.com/pillarjs/path-to-regexp/security/advisories/GHSA-9wv6-86v2-598j"
        },
        {
            "reference_url": "https://nvd.nist.gov/vuln/detail/CVE-2024-45296",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.5",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "7.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:P"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-45296"
        },
        {
            "reference_url": "https://security.netapp.com/advisory/ntap-20250124-0001",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.5",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "7.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:P"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://security.netapp.com/advisory/ntap-20250124-0001"
        },
        {
            "reference_url": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1081656",
            "reference_id": "1081656",
            "reference_type": "",
            "scores": [],
            "url": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1081656"
        },
        {
            "reference_url": "https://bugzilla.redhat.com/show_bug.cgi?id=2310908",
            "reference_id": "2310908",
            "reference_type": "",
            "scores": [],
            "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2310908"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2024:10236",
            "reference_id": "RHSA-2024:10236",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2024:10236"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2024:10857",
            "reference_id": "RHSA-2024:10857",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2024:10857"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2024:10865",
            "reference_id": "RHSA-2024:10865",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2024:10865"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2024:10906",
            "reference_id": "RHSA-2024:10906",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2024:10906"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2024:10917",
            "reference_id": "RHSA-2024:10917",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2024:10917"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2024:10962",
            "reference_id": "RHSA-2024:10962",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2024:10962"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2024:11293",
            "reference_id": "RHSA-2024:11293",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2024:11293"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2024:11381",
            "reference_id": "RHSA-2024:11381",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2024:11381"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2024:7324",
            "reference_id": "RHSA-2024:7324",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2024:7324"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2024:7599",
            "reference_id": "RHSA-2024:7599",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2024:7599"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2024:7726",
            "reference_id": "RHSA-2024:7726",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2024:7726"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2024:8014",
            "reference_id": "RHSA-2024:8014",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2024:8014"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2024:8581",
            "reference_id": "RHSA-2024:8581",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2024:8581"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2024:8676",
            "reference_id": "RHSA-2024:8676",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2024:8676"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2024:9884",
            "reference_id": "RHSA-2024:9884",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2024:9884"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2024:9885",
            "reference_id": "RHSA-2024:9885",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2024:9885"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2025:0082",
            "reference_id": "RHSA-2025:0082",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2025:0082"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2025:0164",
            "reference_id": "RHSA-2025:0164",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2025:0164"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2025:0323",
            "reference_id": "RHSA-2025:0323",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2025:0323"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2025:0664",
            "reference_id": "RHSA-2025:0664",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2025:0664"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2025:0875",
            "reference_id": "RHSA-2025:0875",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2025:0875"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2025:3368",
            "reference_id": "RHSA-2025:3368",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2025:3368"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2025:3397",
            "reference_id": "RHSA-2025:3397",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2025:3397"
        }
    ],
    "weaknesses": [
        {
            "cwe_id": 1333,
            "name": "Inefficient Regular Expression Complexity",
            "description": "The product uses a regular expression with an inefficient, possibly exponential worst-case computational complexity that consumes excessive CPU cycles."
        },
        {
            "cwe_id": 937,
            "name": "OWASP Top Ten 2013 Category A9 - Using Components with Known Vulnerabilities",
            "description": "Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2013."
        },
        {
            "cwe_id": 1035,
            "name": "OWASP Top Ten 2017 Category A9 - Using Components with Known Vulnerabilities",
            "description": "Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2017."
        }
    ],
    "exploits": [],
    "severity_range_score": "5.3 - 8.9",
    "exploitability": "0.5",
    "weighted_severity": "8.0",
    "risk_score": 4.0,
    "resource_url": "http://public2.vulnerablecode.io/vulnerabilities/VCID-r95c-k4nq-jbd1"
}