Lookup for vulnerabilities affecting packages.

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

{
    "url": "http://public2.vulnerablecode.io/api/vulnerabilities/23784?format=api",
    "vulnerability_id": "VCID-mhf1-8kyt-pbbx",
    "summary": "gRPC-Go has an authorization bypass via missing leading slash in :path\n### Impact\n_What kind of vulnerability is it? Who is impacted?_\n\nIt is an **Authorization Bypass** resulting from **Improper Input Validation** of the HTTP/2 `:path` pseudo-header.\n\nThe gRPC-Go server was too lenient in its routing logic, accepting requests where the `:path` omitted the mandatory leading slash (e.g., `Service/Method` instead of `/Service/Method`). While the server successfully routed these requests to the correct handler, authorization interceptors (including the official `grpc/authz` package) evaluated the raw, non-canonical path string. Consequently, \"deny\" rules defined using canonical paths (starting with `/`) failed to match the incoming request, allowing it to bypass the policy if a fallback \"allow\" rule was present.\n\n**Who is impacted?**\nThis affects gRPC-Go servers that meet both of the following criteria:\n1. They use path-based authorization interceptors, such as the official RBAC implementation in `google.golang.org/grpc/authz` or custom interceptors relying on `info.FullMethod` or `grpc.Method(ctx)`.\n2. Their security policy contains specific \"deny\" rules for canonical paths but allows other requests by default (a fallback \"allow\" rule).\n\nThe vulnerability is exploitable by an attacker who can send raw HTTP/2 frames with malformed `:path` headers directly to the gRPC server.\n\n### Patches\n_Has the problem been patched? What versions should users upgrade to?_\n\nYes, the issue has been patched. The fix ensures that any request with a `:path` that does not start with a leading slash is immediately rejected with a `codes.Unimplemented` error, preventing it from reaching authorization interceptors or handlers with a non-canonical path string.\n\nUsers should upgrade to the following versions (or newer):\n* **v1.79.3**\n* The latest **master** branch.\n\nIt is recommended that all users employing path-based authorization (especially `grpc/authz`) upgrade as soon as the patch is available in a tagged release.\n\n### Workarounds\n_Is there a way for users to fix or remediate the vulnerability without upgrading?_\n\nWhile upgrading is the most secure and recommended path, users can mitigate the vulnerability using one of the following methods:\n\n#### 1. Use a Validating Interceptor (Recommended Mitigation)\nAdd an \"outermost\" interceptor to your server that validates the path before any other authorization logic runs:\n\n```go\nfunc pathValidationInterceptor(ctx context.Context, req any, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) (any, error) {\n    if info.FullMethod == \"\" || info.FullMethod[0] != '/' {\n        return nil, status.Errorf(codes.Unimplemented, \"malformed method name\")\n    }   \n    return handler(ctx, req)\n}\n\n// Ensure this is the FIRST interceptor in your chain\ns := grpc.NewServer(\n    grpc.ChainUnaryInterceptor(pathValidationInterceptor, authzInterceptor),\n)\n```\n\n#### 2. Infrastructure-Level Normalization\nIf your gRPC server is behind a reverse proxy or load balancer (such as Envoy, NGINX, or an L7 Cloud Load Balancer), ensure it is configured to enforce strict HTTP/2 compliance for pseudo-headers and reject or normalize requests where the `:path` header does not start with a leading slash.\n\n#### 3. Policy Hardening\nSwitch to a \"default deny\" posture in your authorization policies (explicitly listing all allowed paths and denying everything else) to reduce the risk of bypasses via malformed inputs.",
    "aliases": [
        {
            "alias": "CVE-2026-33186"
        },
        {
            "alias": "GHSA-p77j-4mvh-x3m3"
        }
    ],
    "fixed_packages": [
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1081591?format=api",
            "purl": "pkg:apk/alpine/rclone@1.73.5-r0?arch=armhf&distroversion=edge&reponame=community",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:apk/alpine/rclone@1.73.5-r0%3Farch=armhf&distroversion=edge&reponame=community"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1081592?format=api",
            "purl": "pkg:apk/alpine/rclone@1.73.5-r0?arch=armv7&distroversion=edge&reponame=community",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:apk/alpine/rclone@1.73.5-r0%3Farch=armv7&distroversion=edge&reponame=community"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1081593?format=api",
            "purl": "pkg:apk/alpine/rclone@1.73.5-r0?arch=loongarch64&distroversion=edge&reponame=community",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:apk/alpine/rclone@1.73.5-r0%3Farch=loongarch64&distroversion=edge&reponame=community"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1081594?format=api",
            "purl": "pkg:apk/alpine/rclone@1.73.5-r0?arch=ppc64le&distroversion=edge&reponame=community",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:apk/alpine/rclone@1.73.5-r0%3Farch=ppc64le&distroversion=edge&reponame=community"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1081597?format=api",
            "purl": "pkg:apk/alpine/rclone@1.73.5-r0?arch=x86&distroversion=edge&reponame=community",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:apk/alpine/rclone@1.73.5-r0%3Farch=x86&distroversion=edge&reponame=community"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1081598?format=api",
            "purl": "pkg:apk/alpine/rclone@1.73.5-r0?arch=x86_64&distroversion=edge&reponame=community",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:apk/alpine/rclone@1.73.5-r0%3Farch=x86_64&distroversion=edge&reponame=community"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1081590?format=api",
            "purl": "pkg:apk/alpine/rclone@1.73.5-r0?arch=aarch64&distroversion=edge&reponame=community",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:apk/alpine/rclone@1.73.5-r0%3Farch=aarch64&distroversion=edge&reponame=community"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1081596?format=api",
            "purl": "pkg:apk/alpine/rclone@1.73.5-r0?arch=s390x&distroversion=edge&reponame=community",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:apk/alpine/rclone@1.73.5-r0%3Farch=s390x&distroversion=edge&reponame=community"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1081595?format=api",
            "purl": "pkg:apk/alpine/rclone@1.73.5-r0?arch=riscv64&distroversion=edge&reponame=community",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:apk/alpine/rclone@1.73.5-r0%3Farch=riscv64&distroversion=edge&reponame=community"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1063020?format=api",
            "purl": "pkg:deb/debian/golang-google-grpc@1.64.0-6",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/golang-google-grpc@1.64.0-6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1063022?format=api",
            "purl": "pkg:deb/debian/golang-google-grpc@1.66.3-2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-mhf1-8kyt-pbbx"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/golang-google-grpc@1.66.3-2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1062474?format=api",
            "purl": "pkg:deb/debian/golang-google-grpc@1.79.3-1?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/golang-google-grpc@1.79.3-1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1063023?format=api",
            "purl": "pkg:deb/debian/golang-google-grpc@1.79.3-1",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/golang-google-grpc@1.79.3-1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/66789?format=api",
            "purl": "pkg:golang/google.golang.org/grpc@1.79.3",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:golang/google.golang.org/grpc@1.79.3"
        }
    ],
    "affected_packages": [
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1062470?format=api",
            "purl": "pkg:deb/debian/golang-google-grpc@1.27.1-1?distro=trixie",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-mhf1-8kyt-pbbx"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/golang-google-grpc@1.27.1-1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1063018?format=api",
            "purl": "pkg:deb/debian/golang-google-grpc@1.27.1-1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-mhf1-8kyt-pbbx"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/golang-google-grpc@1.27.1-1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1063019?format=api",
            "purl": "pkg:deb/debian/golang-google-grpc@1.33.3-2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-mhf1-8kyt-pbbx"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/golang-google-grpc@1.33.3-2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1062471?format=api",
            "purl": "pkg:deb/debian/golang-google-grpc@1.33.3-2?distro=trixie",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-mhf1-8kyt-pbbx"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/golang-google-grpc@1.33.3-2%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1062472?format=api",
            "purl": "pkg:deb/debian/golang-google-grpc@1.64.0-7?distro=trixie",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-mhf1-8kyt-pbbx"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/golang-google-grpc@1.64.0-7%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1063021?format=api",
            "purl": "pkg:deb/debian/golang-google-grpc@1.64.0-7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-mhf1-8kyt-pbbx"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/golang-google-grpc@1.64.0-7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1063022?format=api",
            "purl": "pkg:deb/debian/golang-google-grpc@1.66.3-2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-mhf1-8kyt-pbbx"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/golang-google-grpc@1.66.3-2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1062473?format=api",
            "purl": "pkg:deb/debian/golang-google-grpc@1.66.3-2?distro=trixie",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-mhf1-8kyt-pbbx"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/golang-google-grpc@1.66.3-2%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1076554?format=api",
            "purl": "pkg:rpm/redhat/rhc@1:0.2.5-6?arch=el8_10",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-mhf1-8kyt-pbbx"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rhc@1:0.2.5-6%3Farch=el8_10"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1082033?format=api",
            "purl": "pkg:rpm/redhat/rhc@1:0.2.7-1.el9_6?arch=3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-mhf1-8kyt-pbbx"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rhc@1:0.2.7-1.el9_6%3Farch=3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1082032?format=api",
            "purl": "pkg:rpm/redhat/rhc@1:0.2.7-4?arch=el9_7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-mhf1-8kyt-pbbx"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rhc@1:0.2.7-4%3Farch=el9_7"
        }
    ],
    "references": [
        {
            "reference_url": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2026-33186.json",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "8.1",
                    "scoring_system": "cvssv3",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N"
                },
                {
                    "value": "9.1",
                    "scoring_system": "cvssv3",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N"
                }
            ],
            "url": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2026-33186.json"
        },
        {
            "reference_url": "https://api.first.org/data/v1/epss?cve=CVE-2026-33186",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "0.00014",
                    "scoring_system": "epss",
                    "scoring_elements": "0.02582",
                    "published_at": "2026-04-07T12:55:00Z"
                },
                {
                    "value": "0.00014",
                    "scoring_system": "epss",
                    "scoring_elements": "0.02565",
                    "published_at": "2026-04-02T12:55:00Z"
                },
                {
                    "value": "0.00014",
                    "scoring_system": "epss",
                    "scoring_elements": "0.02609",
                    "published_at": "2026-04-09T12:55:00Z"
                },
                {
                    "value": "0.00014",
                    "scoring_system": "epss",
                    "scoring_elements": "0.02579",
                    "published_at": "2026-04-04T12:55:00Z"
                },
                {
                    "value": "0.00014",
                    "scoring_system": "epss",
                    "scoring_elements": "0.02588",
                    "published_at": "2026-04-08T12:55:00Z"
                },
                {
                    "value": "0.00016",
                    "scoring_system": "epss",
                    "scoring_elements": "0.03421",
                    "published_at": "2026-04-11T12:55:00Z"
                },
                {
                    "value": "0.00016",
                    "scoring_system": "epss",
                    "scoring_elements": "0.03345",
                    "published_at": "2026-04-16T12:55:00Z"
                },
                {
                    "value": "0.00016",
                    "scoring_system": "epss",
                    "scoring_elements": "0.0337",
                    "published_at": "2026-04-13T12:55:00Z"
                },
                {
                    "value": "0.00016",
                    "scoring_system": "epss",
                    "scoring_elements": "0.03393",
                    "published_at": "2026-04-12T12:55:00Z"
                },
                {
                    "value": "0.00016",
                    "scoring_system": "epss",
                    "scoring_elements": "0.03357",
                    "published_at": "2026-04-18T12:55:00Z"
                },
                {
                    "value": "0.0002",
                    "scoring_system": "epss",
                    "scoring_elements": "0.05413",
                    "published_at": "2026-05-07T12:55:00Z"
                },
                {
                    "value": "0.0002",
                    "scoring_system": "epss",
                    "scoring_elements": "0.05377",
                    "published_at": "2026-04-26T12:55:00Z"
                },
                {
                    "value": "0.0002",
                    "scoring_system": "epss",
                    "scoring_elements": "0.05376",
                    "published_at": "2026-04-29T12:55:00Z"
                },
                {
                    "value": "0.0002",
                    "scoring_system": "epss",
                    "scoring_elements": "0.05367",
                    "published_at": "2026-05-05T12:55:00Z"
                },
                {
                    "value": "0.00023",
                    "scoring_system": "epss",
                    "scoring_elements": "0.06277",
                    "published_at": "2026-04-21T12:55:00Z"
                },
                {
                    "value": "0.00023",
                    "scoring_system": "epss",
                    "scoring_elements": "0.06296",
                    "published_at": "2026-04-24T12:55:00Z"
                }
            ],
            "url": "https://api.first.org/data/v1/epss?cve=CVE-2026-33186"
        },
        {
            "reference_url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-33186",
            "reference_id": "",
            "reference_type": "",
            "scores": [],
            "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-33186"
        },
        {
            "reference_url": "https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "8.1",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N"
                }
            ],
            "url": "https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml"
        },
        {
            "reference_url": "https://github.com/grpc/grpc-go",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "9.1",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N"
                },
                {
                    "value": "CRITICAL",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/grpc/grpc-go"
        },
        {
            "reference_url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "9.1",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N"
                },
                {
                    "value": "CRITICAL",
                    "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/2026-03-24T18:08:38Z/"
                }
            ],
            "url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
        },
        {
            "reference_url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "9.1",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N"
                },
                {
                    "value": "CRITICAL",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
        },
        {
            "reference_url": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1132228",
            "reference_id": "1132228",
            "reference_type": "",
            "scores": [],
            "url": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1132228"
        },
        {
            "reference_url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833",
            "reference_id": "2449833",
            "reference_type": "",
            "scores": [],
            "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:10093",
            "reference_id": "RHSA-2026:10093",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:10093"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:10094",
            "reference_id": "RHSA-2026:10094",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:10094"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:10105",
            "reference_id": "RHSA-2026:10105",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:10105"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:10107",
            "reference_id": "RHSA-2026:10107",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:10107"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:10125",
            "reference_id": "RHSA-2026:10125",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:10125"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:10126",
            "reference_id": "RHSA-2026:10126",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:10126"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:10130",
            "reference_id": "RHSA-2026:10130",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:10130"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:10131",
            "reference_id": "RHSA-2026:10131",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:10131"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:10153",
            "reference_id": "RHSA-2026:10153",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:10153"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:10155",
            "reference_id": "RHSA-2026:10155",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:10155"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:10158",
            "reference_id": "RHSA-2026:10158",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:10158"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:10172",
            "reference_id": "RHSA-2026:10172",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:10172"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:10175",
            "reference_id": "RHSA-2026:10175",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:10175"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:10698",
            "reference_id": "RHSA-2026:10698",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:10698"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:10705",
            "reference_id": "RHSA-2026:10705",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:10705"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:10706",
            "reference_id": "RHSA-2026:10706",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:10706"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:11070",
            "reference_id": "RHSA-2026:11070",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:11070"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:11217",
            "reference_id": "RHSA-2026:11217",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:11217"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:11330",
            "reference_id": "RHSA-2026:11330",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:11330"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:11331",
            "reference_id": "RHSA-2026:11331",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:11331"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:11408",
            "reference_id": "RHSA-2026:11408",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:11408"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:11803",
            "reference_id": "RHSA-2026:11803",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:11803"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:11856",
            "reference_id": "RHSA-2026:11856",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:11856"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:11916",
            "reference_id": "RHSA-2026:11916",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:11916"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:11996",
            "reference_id": "RHSA-2026:11996",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:11996"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:12116",
            "reference_id": "RHSA-2026:12116",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:12116"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:12118",
            "reference_id": "RHSA-2026:12118",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:12118"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:12119",
            "reference_id": "RHSA-2026:12119",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:12119"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:12277",
            "reference_id": "RHSA-2026:12277",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:12277"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:12279",
            "reference_id": "RHSA-2026:12279",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:12279"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:12283",
            "reference_id": "RHSA-2026:12283",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:12283"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:12337",
            "reference_id": "RHSA-2026:12337",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:12337"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:13548",
            "reference_id": "RHSA-2026:13548",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:13548"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:13791",
            "reference_id": "RHSA-2026:13791",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:13791"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:13829",
            "reference_id": "RHSA-2026:13829",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:13829"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:6174",
            "reference_id": "RHSA-2026:6174",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:6174"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:6428",
            "reference_id": "RHSA-2026:6428",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:6428"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:6564",
            "reference_id": "RHSA-2026:6564",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:6564"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:6802",
            "reference_id": "RHSA-2026:6802",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:6802"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:7110",
            "reference_id": "RHSA-2026:7110",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:7110"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:7128",
            "reference_id": "RHSA-2026:7128",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:7128"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:7245",
            "reference_id": "RHSA-2026:7245",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:7245"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:8151",
            "reference_id": "RHSA-2026:8151",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:8151"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:8338",
            "reference_id": "RHSA-2026:8338",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:8338"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:8433",
            "reference_id": "RHSA-2026:8433",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:8433"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:8449",
            "reference_id": "RHSA-2026:8449",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:8449"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:8483",
            "reference_id": "RHSA-2026:8483",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:8483"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:8484",
            "reference_id": "RHSA-2026:8484",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:8484"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:8490",
            "reference_id": "RHSA-2026:8490",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:8490"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:8491",
            "reference_id": "RHSA-2026:8491",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:8491"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:8493",
            "reference_id": "RHSA-2026:8493",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:8493"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:9385",
            "reference_id": "RHSA-2026:9385",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:9385"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:9388",
            "reference_id": "RHSA-2026:9388",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:9388"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:9440",
            "reference_id": "RHSA-2026:9440",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:9440"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:9448",
            "reference_id": "RHSA-2026:9448",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:9448"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:9453",
            "reference_id": "RHSA-2026:9453",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:9453"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:9872",
            "reference_id": "RHSA-2026:9872",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:9872"
        }
    ],
    "weaknesses": [
        {
            "cwe_id": 285,
            "name": "Improper Authorization",
            "description": "The product does not perform or incorrectly performs an authorization check when an actor attempts to access a resource or perform an action."
        },
        {
            "cwe_id": 551,
            "name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization",
            "description": "If a web server does not fully parse requested URLs before it examines them for authorization, it may be possible for an attacker to bypass authorization protection."
        }
    ],
    "exploits": [],
    "severity_range_score": "8.1 - 10.0",
    "exploitability": "0.5",
    "weighted_severity": "9.0",
    "risk_score": 4.5,
    "resource_url": "http://public2.vulnerablecode.io/vulnerabilities/VCID-mhf1-8kyt-pbbx"
}