Lookup for vulnerabilities affecting packages.

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

{
    "url": "http://public2.vulnerablecode.io/api/vulnerabilities/16418?format=api",
    "vulnerability_id": "VCID-1rpd-33se-hkex",
    "summary": "jose vulnerable to resource exhaustion via specifically crafted JWE with compressed plaintext\nA vulnerability has been identified in the JSON Web Encryption (JWE) decryption interfaces, specifically related to the [support for decompressing plaintext after its decryption](https://www.rfc-editor.org/rfc/rfc7516.html#section-4.1.3). This allows an adversary to exploit specific scenarios where the compression ratio becomes exceptionally high. As a result, the length of the JWE token, which is determined by the compressed content's size, can land below application-defined limits. In such cases, other existing application level mechanisms for preventing resource exhaustion may be rendered ineffective.\n\nNote that as per [RFC 8725](https://www.rfc-editor.org/rfc/rfc8725.html#name-avoid-compression-of-encryp) compression of data SHOULD NOT be done before encryption, because such compressed data often reveals information about the plaintext. For this reason the v5.x major version of `jose` removed support for compressed payloads entirely and is therefore NOT affected by this advisory.\n\n### Impact\n\nUnder certain conditions it is possible to have the user's environment consume unreasonable amount of CPU time or memory during JWE Decryption operations.\n\n### Affected users\n\nThe impact is limited only to Node.js users utilizing the JWE decryption APIs to decrypt JWEs from untrusted sources.\n\nYou are NOT affected if any of the following applies to you\n\n- Your code uses jose version v5.x where JWE Compression is not supported anymore\n- Your code runs in an environment other than Node.js (e.g. Deno, CF Workers), which is the only runtime where JWE Compression is implemented out of the box\n- Your code does not use the JWE decryption APIs\n- Your code only accepts JWEs produced by trusted sources\n\n### Patches\n\n`v2.0.7` and `v4.15.5` releases limit the decompression routine to only allow decompressing up to 250 kB of plaintext. In v4.x it is possible to further adjust this limit via the `inflateRaw` decryption option implementation. In v2.x it is possible to further adjust this limit via the `inflateRawSyncLimit` decryption option.\n\n### Workarounds\n\nIf you cannot upgrade and do not want to support compressed JWEs you may detect and reject these tokens early by checking the token's protected header\n\n```js\nconst { zip } = jose.decodeProtectedHeader(token)\nif (zip !== undefined) {\n  throw new Error('JWE Compression is not supported')\n}\n```\n\nIf you wish to continue supporting JWEs with compressed payloads in these legacy release lines you must upgrade (v1.x and v2.x to version v2.0.7, v3.x and v4.x to version v4.15.5) and review the limits put forth by the patched releases.\n\n### For more information\nIf you have any questions or comments about this advisory please open a discussion in the project's [repository](https://github.com/panva/jose/discussions/new?category=q-a&title=GHSA-hhhv-q57g-882q%20advisory%20question)",
    "aliases": [
        {
            "alias": "CVE-2024-28176"
        },
        {
            "alias": "GHSA-hhhv-q57g-882q"
        }
    ],
    "fixed_packages": [
        {
            "url": "http://public2.vulnerablecode.io/api/packages/55854?format=api",
            "purl": "pkg:npm/jose@2.0.7",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@2.0.7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/55850?format=api",
            "purl": "pkg:npm/jose@4.15.5",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.15.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670959?format=api",
            "purl": "pkg:npm/jose@5.0.0",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@5.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/55852?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.15.5",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.15.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/671022?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@5.0.0",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@5.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/55853?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.15.5",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.15.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670988?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@5.0.0",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@5.0.0"
        }
    ],
    "affected_packages": [
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243134?format=api",
            "purl": "pkg:npm/jose@0.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@0.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243135?format=api",
            "purl": "pkg:npm/jose@0.2.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@0.2.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243136?format=api",
            "purl": "pkg:npm/jose@0.3.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@0.3.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243137?format=api",
            "purl": "pkg:npm/jose@0.3.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@0.3.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243138?format=api",
            "purl": "pkg:npm/jose@1.9.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.9.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243139?format=api",
            "purl": "pkg:npm/jose@1.10.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.10.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243140?format=api",
            "purl": "pkg:npm/jose@1.10.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.10.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243141?format=api",
            "purl": "pkg:npm/jose@1.10.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.10.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243142?format=api",
            "purl": "pkg:npm/jose@1.11.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.11.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243143?format=api",
            "purl": "pkg:npm/jose@1.12.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.12.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243144?format=api",
            "purl": "pkg:npm/jose@1.12.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.12.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243145?format=api",
            "purl": "pkg:npm/jose@1.13.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.13.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243146?format=api",
            "purl": "pkg:npm/jose@1.14.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.14.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243147?format=api",
            "purl": "pkg:npm/jose@1.15.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.15.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243148?format=api",
            "purl": "pkg:npm/jose@1.15.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.15.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243149?format=api",
            "purl": "pkg:npm/jose@1.16.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.16.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243150?format=api",
            "purl": "pkg:npm/jose@1.16.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.16.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243151?format=api",
            "purl": "pkg:npm/jose@1.16.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.16.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243152?format=api",
            "purl": "pkg:npm/jose@1.17.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.17.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243153?format=api",
            "purl": "pkg:npm/jose@1.17.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.17.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243154?format=api",
            "purl": "pkg:npm/jose@1.17.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.17.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243155?format=api",
            "purl": "pkg:npm/jose@1.18.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.18.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243156?format=api",
            "purl": "pkg:npm/jose@1.18.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.18.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243157?format=api",
            "purl": "pkg:npm/jose@1.18.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.18.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243158?format=api",
            "purl": "pkg:npm/jose@1.19.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.19.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243159?format=api",
            "purl": "pkg:npm/jose@1.20.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.20.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243160?format=api",
            "purl": "pkg:npm/jose@1.21.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.21.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243161?format=api",
            "purl": "pkg:npm/jose@1.21.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.21.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243162?format=api",
            "purl": "pkg:npm/jose@1.22.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.22.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243163?format=api",
            "purl": "pkg:npm/jose@1.22.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.22.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243164?format=api",
            "purl": "pkg:npm/jose@1.22.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.22.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243165?format=api",
            "purl": "pkg:npm/jose@1.23.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.23.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243166?format=api",
            "purl": "pkg:npm/jose@1.24.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.24.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243167?format=api",
            "purl": "pkg:npm/jose@1.24.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.24.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243168?format=api",
            "purl": "pkg:npm/jose@1.25.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.25.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243169?format=api",
            "purl": "pkg:npm/jose@1.25.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.25.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243170?format=api",
            "purl": "pkg:npm/jose@1.25.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.25.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243171?format=api",
            "purl": "pkg:npm/jose@1.26.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.26.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243172?format=api",
            "purl": "pkg:npm/jose@1.26.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.26.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243173?format=api",
            "purl": "pkg:npm/jose@1.27.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.27.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243174?format=api",
            "purl": "pkg:npm/jose@1.27.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.27.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243175?format=api",
            "purl": "pkg:npm/jose@1.27.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.27.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243176?format=api",
            "purl": "pkg:npm/jose@1.27.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.27.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243177?format=api",
            "purl": "pkg:npm/jose@1.28.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.28.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/74006?format=api",
            "purl": "pkg:npm/jose@1.28.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.28.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/80095?format=api",
            "purl": "pkg:npm/jose@1.28.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@1.28.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/144473?format=api",
            "purl": "pkg:npm/jose@2.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@2.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243178?format=api",
            "purl": "pkg:npm/jose@2.0.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@2.0.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243179?format=api",
            "purl": "pkg:npm/jose@2.0.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@2.0.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243180?format=api",
            "purl": "pkg:npm/jose@2.0.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@2.0.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243181?format=api",
            "purl": "pkg:npm/jose@2.0.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@2.0.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/74007?format=api",
            "purl": "pkg:npm/jose@2.0.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@2.0.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/80099?format=api",
            "purl": "pkg:npm/jose@2.0.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@2.0.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/62800?format=api",
            "purl": "pkg:npm/jose@3.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243182?format=api",
            "purl": "pkg:npm/jose@3.0.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.0.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243183?format=api",
            "purl": "pkg:npm/jose@3.0.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.0.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243184?format=api",
            "purl": "pkg:npm/jose@3.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243185?format=api",
            "purl": "pkg:npm/jose@3.1.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.1.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243186?format=api",
            "purl": "pkg:npm/jose@3.1.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.1.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243187?format=api",
            "purl": "pkg:npm/jose@3.1.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.1.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243188?format=api",
            "purl": "pkg:npm/jose@3.2.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.2.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243189?format=api",
            "purl": "pkg:npm/jose@3.3.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.3.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243190?format=api",
            "purl": "pkg:npm/jose@3.3.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.3.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243191?format=api",
            "purl": "pkg:npm/jose@3.3.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.3.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243192?format=api",
            "purl": "pkg:npm/jose@3.4.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.4.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243193?format=api",
            "purl": "pkg:npm/jose@3.5.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.5.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243194?format=api",
            "purl": "pkg:npm/jose@3.5.1-experimental",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.5.1-experimental"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243195?format=api",
            "purl": "pkg:npm/jose@3.5.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.5.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243196?format=api",
            "purl": "pkg:npm/jose@3.5.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.5.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243197?format=api",
            "purl": "pkg:npm/jose@3.5.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.5.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243198?format=api",
            "purl": "pkg:npm/jose@3.5.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.5.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243199?format=api",
            "purl": "pkg:npm/jose@3.6.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.6.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243200?format=api",
            "purl": "pkg:npm/jose@3.6.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.6.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243201?format=api",
            "purl": "pkg:npm/jose@3.6.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.6.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243202?format=api",
            "purl": "pkg:npm/jose@3.7.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.7.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243203?format=api",
            "purl": "pkg:npm/jose@3.7.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.7.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243204?format=api",
            "purl": "pkg:npm/jose@3.8.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.8.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243205?format=api",
            "purl": "pkg:npm/jose@3.9.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.9.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243206?format=api",
            "purl": "pkg:npm/jose@3.10.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.10.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243207?format=api",
            "purl": "pkg:npm/jose@3.11.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.11.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243208?format=api",
            "purl": "pkg:npm/jose@3.11.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.11.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243209?format=api",
            "purl": "pkg:npm/jose@3.11.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.11.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243210?format=api",
            "purl": "pkg:npm/jose@3.11.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                },
                {
                    "vulnerability": "VCID-mv6y-qymd-ryat"
                },
                {
                    "vulnerability": "VCID-yzkv-xd7t-f3bv"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.11.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/74008?format=api",
            "purl": "pkg:npm/jose@3.11.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.11.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326923?format=api",
            "purl": "pkg:npm/jose@3.11.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.11.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326924?format=api",
            "purl": "pkg:npm/jose@3.11.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.11.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326925?format=api",
            "purl": "pkg:npm/jose@3.12.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.12.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326926?format=api",
            "purl": "pkg:npm/jose@3.12.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.12.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326927?format=api",
            "purl": "pkg:npm/jose@3.12.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.12.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326928?format=api",
            "purl": "pkg:npm/jose@3.12.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.12.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326929?format=api",
            "purl": "pkg:npm/jose@3.13.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.13.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326930?format=api",
            "purl": "pkg:npm/jose@3.14.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.14.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326931?format=api",
            "purl": "pkg:npm/jose@3.14.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.14.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326932?format=api",
            "purl": "pkg:npm/jose@3.14.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.14.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326933?format=api",
            "purl": "pkg:npm/jose@3.14.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.14.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326934?format=api",
            "purl": "pkg:npm/jose@3.14.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.14.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326935?format=api",
            "purl": "pkg:npm/jose@3.15.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.15.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326936?format=api",
            "purl": "pkg:npm/jose@3.15.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.15.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326937?format=api",
            "purl": "pkg:npm/jose@3.15.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.15.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326938?format=api",
            "purl": "pkg:npm/jose@3.15.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.15.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326939?format=api",
            "purl": "pkg:npm/jose@3.15.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.15.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326940?format=api",
            "purl": "pkg:npm/jose@3.15.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.15.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326941?format=api",
            "purl": "pkg:npm/jose@3.16.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.16.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326942?format=api",
            "purl": "pkg:npm/jose@3.16.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.16.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326943?format=api",
            "purl": "pkg:npm/jose@3.17.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.17.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326944?format=api",
            "purl": "pkg:npm/jose@3.18.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.18.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326945?format=api",
            "purl": "pkg:npm/jose@3.19.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.19.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326946?format=api",
            "purl": "pkg:npm/jose@3.20.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.20.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326947?format=api",
            "purl": "pkg:npm/jose@3.20.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.20.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326948?format=api",
            "purl": "pkg:npm/jose@3.20.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.20.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/144489?format=api",
            "purl": "pkg:npm/jose@3.20.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.20.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/80100?format=api",
            "purl": "pkg:npm/jose@3.20.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@3.20.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/144479?format=api",
            "purl": "pkg:npm/jose@4.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326949?format=api",
            "purl": "pkg:npm/jose@4.0.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.0.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326950?format=api",
            "purl": "pkg:npm/jose@4.0.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.0.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326951?format=api",
            "purl": "pkg:npm/jose@4.0.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.0.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326952?format=api",
            "purl": "pkg:npm/jose@4.0.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.0.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326953?format=api",
            "purl": "pkg:npm/jose@4.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326954?format=api",
            "purl": "pkg:npm/jose@4.1.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.1.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326955?format=api",
            "purl": "pkg:npm/jose@4.1.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.1.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326956?format=api",
            "purl": "pkg:npm/jose@4.1.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.1.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326957?format=api",
            "purl": "pkg:npm/jose@4.1.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.1.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326958?format=api",
            "purl": "pkg:npm/jose@4.1.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.1.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326959?format=api",
            "purl": "pkg:npm/jose@4.2.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.2.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326960?format=api",
            "purl": "pkg:npm/jose@4.2.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.2.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326961?format=api",
            "purl": "pkg:npm/jose@4.3.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.3.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326962?format=api",
            "purl": "pkg:npm/jose@4.3.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.3.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326963?format=api",
            "purl": "pkg:npm/jose@4.3.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.3.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326964?format=api",
            "purl": "pkg:npm/jose@4.3.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.3.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326965?format=api",
            "purl": "pkg:npm/jose@4.3.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.3.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326966?format=api",
            "purl": "pkg:npm/jose@4.3.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.3.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326967?format=api",
            "purl": "pkg:npm/jose@4.3.7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.3.7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326968?format=api",
            "purl": "pkg:npm/jose@4.3.8",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.3.8"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326969?format=api",
            "purl": "pkg:npm/jose@4.3.9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.3.9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326970?format=api",
            "purl": "pkg:npm/jose@4.4.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.4.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326971?format=api",
            "purl": "pkg:npm/jose@4.5.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.5.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326972?format=api",
            "purl": "pkg:npm/jose@4.5.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.5.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326973?format=api",
            "purl": "pkg:npm/jose@4.5.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.5.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326974?format=api",
            "purl": "pkg:npm/jose@4.5.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.5.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326975?format=api",
            "purl": "pkg:npm/jose@4.6.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.6.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326976?format=api",
            "purl": "pkg:npm/jose@4.6.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.6.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326977?format=api",
            "purl": "pkg:npm/jose@4.6.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.6.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326978?format=api",
            "purl": "pkg:npm/jose@4.7.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.7.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326979?format=api",
            "purl": "pkg:npm/jose@4.8.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.8.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326980?format=api",
            "purl": "pkg:npm/jose@4.8.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.8.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326981?format=api",
            "purl": "pkg:npm/jose@4.8.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.8.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/326982?format=api",
            "purl": "pkg:npm/jose@4.9.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.9.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/144480?format=api",
            "purl": "pkg:npm/jose@4.9.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.9.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/80101?format=api",
            "purl": "pkg:npm/jose@4.9.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.9.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670931?format=api",
            "purl": "pkg:npm/jose@4.9.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.9.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670932?format=api",
            "purl": "pkg:npm/jose@4.10.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.10.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670933?format=api",
            "purl": "pkg:npm/jose@4.10.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.10.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670934?format=api",
            "purl": "pkg:npm/jose@4.10.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.10.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670935?format=api",
            "purl": "pkg:npm/jose@4.10.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.10.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670936?format=api",
            "purl": "pkg:npm/jose@4.10.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.10.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670937?format=api",
            "purl": "pkg:npm/jose@4.11.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.11.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670938?format=api",
            "purl": "pkg:npm/jose@4.11.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.11.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670939?format=api",
            "purl": "pkg:npm/jose@4.11.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.11.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670940?format=api",
            "purl": "pkg:npm/jose@4.11.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.11.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670941?format=api",
            "purl": "pkg:npm/jose@4.11.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.11.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670942?format=api",
            "purl": "pkg:npm/jose@4.12.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.12.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670943?format=api",
            "purl": "pkg:npm/jose@4.12.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.12.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670944?format=api",
            "purl": "pkg:npm/jose@4.12.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.12.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670945?format=api",
            "purl": "pkg:npm/jose@4.13.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.13.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670946?format=api",
            "purl": "pkg:npm/jose@4.13.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.13.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670947?format=api",
            "purl": "pkg:npm/jose@4.13.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.13.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670948?format=api",
            "purl": "pkg:npm/jose@4.14.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.14.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670949?format=api",
            "purl": "pkg:npm/jose@4.14.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.14.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670950?format=api",
            "purl": "pkg:npm/jose@4.14.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.14.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670951?format=api",
            "purl": "pkg:npm/jose@4.14.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.14.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670952?format=api",
            "purl": "pkg:npm/jose@4.14.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.14.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670953?format=api",
            "purl": "pkg:npm/jose@4.14.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.14.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670954?format=api",
            "purl": "pkg:npm/jose@4.14.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.14.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670955?format=api",
            "purl": "pkg:npm/jose@4.15.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.15.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670956?format=api",
            "purl": "pkg:npm/jose@4.15.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.15.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670957?format=api",
            "purl": "pkg:npm/jose@4.15.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.15.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670958?format=api",
            "purl": "pkg:npm/jose@4.15.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.15.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/145103?format=api",
            "purl": "pkg:npm/jose@4.15.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose@4.15.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243593?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.7.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.7.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243594?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.9.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.9.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243595?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.10.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.10.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243596?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.11.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.11.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243597?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.11.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.11.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243598?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.11.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.11.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243599?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.11.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-79vy-8dqy-qqgm"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.11.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/74154?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.11.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.11.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328618?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.11.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.11.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328619?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.11.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.11.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328620?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.12.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.12.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328621?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.12.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.12.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328622?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.12.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.12.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328623?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.12.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.12.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328624?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.13.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.13.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328625?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.14.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.14.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328626?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.14.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.14.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328627?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.14.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.14.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328628?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.14.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.14.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328629?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.14.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.14.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328630?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.15.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.15.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328631?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.15.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.15.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328632?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.15.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.15.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328633?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.15.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.15.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328634?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.15.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.15.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328635?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.15.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.15.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328636?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.16.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.16.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328637?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.16.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.16.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328638?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.17.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.17.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328639?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.18.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.18.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328640?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.19.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.19.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328641?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.20.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.20.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328642?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.20.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.20.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328643?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.20.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.20.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/144475?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.20.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.20.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/80097?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@3.20.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@3.20.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/144481?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328644?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.0.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.0.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328645?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.0.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.0.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328646?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.0.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.0.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328647?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.0.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.0.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328648?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328649?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.1.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.1.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328650?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.1.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.1.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328651?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.1.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.1.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328652?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.1.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.1.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328653?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.1.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.1.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328654?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.2.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.2.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328655?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.2.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.2.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328656?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.3.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.3.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328657?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.3.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.3.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328658?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.3.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.3.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328659?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.3.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.3.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328660?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.3.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.3.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328661?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.3.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.3.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328662?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.3.7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.3.7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328663?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.3.8",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.3.8"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328664?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.3.9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.3.9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328665?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.4.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.4.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328666?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.5.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.5.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328667?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.5.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.5.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328668?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.5.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.5.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328669?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.5.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.5.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328670?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.6.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.6.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328671?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.6.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.6.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328672?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.6.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.6.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328673?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.7.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.7.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328674?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.8.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.8.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328675?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.8.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.8.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328676?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.8.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.8.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328677?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.9.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.9.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/144482?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.9.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.9.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/80103?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.9.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.9.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670994?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.9.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.9.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670995?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.10.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.10.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670996?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.10.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.10.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670997?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.10.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.10.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670998?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.10.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.10.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670999?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.10.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.10.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/671000?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.11.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.11.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/671001?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.11.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.11.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/671002?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.11.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.11.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/671003?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.11.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.11.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/671004?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.11.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.11.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/671005?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.12.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.12.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/671006?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.12.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.12.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/671007?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.12.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.12.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/671008?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.13.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.13.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/671009?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.13.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.13.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/671010?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.13.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.13.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/671011?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.14.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.14.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/671012?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.14.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.14.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/671013?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.14.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.14.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/671014?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.14.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.14.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/671015?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.14.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.14.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/671016?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.14.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.14.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/671017?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.14.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.14.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/671018?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.15.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.15.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/671019?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.15.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.15.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/671020?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.15.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.15.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/671021?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.15.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.15.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/145101?format=api",
            "purl": "pkg:npm/jose-node-cjs-runtime@4.15.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-cjs-runtime@4.15.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243586?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.8.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.8.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243587?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.9.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.9.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243588?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.10.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.10.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243589?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.11.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.11.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243590?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.11.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.11.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243591?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.11.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.11.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/243592?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.11.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                },
                {
                    "vulnerability": "VCID-ewa6-84fq-gfgm"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.11.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/74081?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.11.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.11.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328547?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.11.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.11.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328548?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.11.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.11.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328549?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.12.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.12.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328550?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.12.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.12.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328551?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.12.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.12.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328552?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.12.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.12.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328553?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.13.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.13.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328554?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.14.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.14.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328555?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.14.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.14.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328556?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.14.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.14.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328557?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.14.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.14.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328558?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.14.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.14.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328559?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.15.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.15.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328560?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.15.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.15.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328561?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.15.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.15.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328562?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.15.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.15.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328563?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.15.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.15.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328564?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.15.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.15.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328565?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.16.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.16.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328566?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.16.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.16.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328567?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.17.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.17.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328568?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.18.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.18.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328569?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.19.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.19.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328570?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.20.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.20.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328571?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.20.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.20.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328572?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.20.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.20.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/144486?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.20.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.20.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/80098?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@3.20.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@3.20.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/144483?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328573?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.0.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.0.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328574?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.0.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.0.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328575?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.0.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.0.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328576?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.0.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.0.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328577?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328578?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.1.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.1.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328579?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.1.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.1.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328580?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.1.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.1.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328581?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.1.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.1.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328582?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.1.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.1.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328583?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.2.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.2.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328584?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.2.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.2.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328585?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.3.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.3.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328586?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.3.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.3.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328587?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.3.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.3.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328588?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.3.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.3.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328589?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.3.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.3.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328590?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.3.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.3.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328591?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.3.7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.3.7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328592?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.3.8",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.3.8"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328593?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.3.9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.3.9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328594?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.4.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.4.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328595?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.5.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.5.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328596?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.5.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.5.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328597?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.5.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.5.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328598?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.5.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.5.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328599?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.6.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.6.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328600?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.6.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.6.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328601?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.6.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.6.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328602?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.7.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.7.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328603?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.8.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.8.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328604?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.8.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.8.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328605?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.8.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.8.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/328606?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.9.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.9.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/144484?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.9.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-7vc7-dfdz-myg8"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.9.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/80104?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.9.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.9.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670960?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.9.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.9.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670961?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.10.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.10.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670962?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.10.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.10.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670963?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.10.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.10.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670964?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.10.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.10.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670965?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.10.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.10.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670966?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.11.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.11.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670967?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.11.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.11.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670968?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.11.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.11.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670969?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.11.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.11.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670970?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.11.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.11.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670971?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.12.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.12.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670972?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.12.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.12.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670973?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.12.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.12.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670974?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.13.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.13.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670975?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.13.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.13.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670976?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.13.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.13.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670977?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.14.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.14.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670978?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.14.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.14.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670979?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.14.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.14.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670980?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.14.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.14.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670981?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.14.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.14.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670982?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.14.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.14.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670983?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.14.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.14.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670984?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.15.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.15.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670985?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.15.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.15.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670986?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.15.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.15.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/670987?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.15.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.15.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/145102?format=api",
            "purl": "pkg:npm/jose-node-esm-runtime@4.15.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/jose-node-esm-runtime@4.15.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/93981?format=api",
            "purl": "pkg:rpm/redhat/buildah@2:1.33.7-2?arch=el9_4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-bq1t-9nnj-mkes"
                },
                {
                    "vulnerability": "VCID-wq29-hzz2-5beh"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/buildah@2:1.33.7-2%3Farch=el9_4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/93881?format=api",
            "purl": "pkg:rpm/redhat/jose@10-2.el8_10?arch=3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-u6qs-fv1c-rkch"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jose@10-2.el8_10%3Farch=3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/93882?format=api",
            "purl": "pkg:rpm/redhat/jose@14-1?arch=el9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-u6qs-fv1c-rkch"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jose@14-1%3Farch=el9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/93980?format=api",
            "purl": "pkg:rpm/redhat/podman@4:4.9.4-4?arch=el9_4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-bq1t-9nnj-mkes"
                },
                {
                    "vulnerability": "VCID-wq29-hzz2-5beh"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/podman@4:4.9.4-4%3Farch=el9_4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/93314?format=api",
            "purl": "pkg:rpm/redhat/podman@4:4.9.4-5.1.rhaos4.16?arch=el8",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-4psv-cefc-7kad"
                },
                {
                    "vulnerability": "VCID-52c5-4udv-jydb"
                },
                {
                    "vulnerability": "VCID-86md-jx8m-1kck"
                },
                {
                    "vulnerability": "VCID-f8ak-21d8-juff"
                },
                {
                    "vulnerability": "VCID-h93z-zvkv-cyed"
                },
                {
                    "vulnerability": "VCID-wq29-hzz2-5beh"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/podman@4:4.9.4-5.1.rhaos4.16%3Farch=el8"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/93311?format=api",
            "purl": "pkg:rpm/redhat/skopeo@2:1.14.4-1.rhaos4.16?arch=el8",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1rpd-33se-hkex"
                },
                {
                    "vulnerability": "VCID-52c5-4udv-jydb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/skopeo@2:1.14.4-1.rhaos4.16%3Farch=el8"
        }
    ],
    "references": [
        {
            "reference_url": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2024-28176.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-28176.json"
        },
        {
            "reference_url": "https://api.first.org/data/v1/epss?cve=CVE-2024-28176",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "0.00572",
                    "scoring_system": "epss",
                    "scoring_elements": "0.68843",
                    "published_at": "2026-05-14T12:55:00Z"
                },
                {
                    "value": "0.00572",
                    "scoring_system": "epss",
                    "scoring_elements": "0.68789",
                    "published_at": "2026-05-12T12:55:00Z"
                },
                {
                    "value": "0.00572",
                    "scoring_system": "epss",
                    "scoring_elements": "0.68764",
                    "published_at": "2026-05-11T12:55:00Z"
                },
                {
                    "value": "0.00572",
                    "scoring_system": "epss",
                    "scoring_elements": "0.6862",
                    "published_at": "2026-04-04T12:55:00Z"
                },
                {
                    "value": "0.00572",
                    "scoring_system": "epss",
                    "scoring_elements": "0.68741",
                    "published_at": "2026-04-29T12:55:00Z"
                },
                {
                    "value": "0.00572",
                    "scoring_system": "epss",
                    "scoring_elements": "0.68735",
                    "published_at": "2026-04-26T12:55:00Z"
                },
                {
                    "value": "0.00572",
                    "scoring_system": "epss",
                    "scoring_elements": "0.68729",
                    "published_at": "2026-04-24T12:55:00Z"
                },
                {
                    "value": "0.00572",
                    "scoring_system": "epss",
                    "scoring_elements": "0.68681",
                    "published_at": "2026-04-21T12:55:00Z"
                },
                {
                    "value": "0.00572",
                    "scoring_system": "epss",
                    "scoring_elements": "0.68702",
                    "published_at": "2026-04-18T12:55:00Z"
                },
                {
                    "value": "0.00572",
                    "scoring_system": "epss",
                    "scoring_elements": "0.68691",
                    "published_at": "2026-04-16T12:55:00Z"
                },
                {
                    "value": "0.00572",
                    "scoring_system": "epss",
                    "scoring_elements": "0.68677",
                    "published_at": "2026-04-12T12:55:00Z"
                },
                {
                    "value": "0.00572",
                    "scoring_system": "epss",
                    "scoring_elements": "0.6869",
                    "published_at": "2026-04-11T12:55:00Z"
                },
                {
                    "value": "0.00572",
                    "scoring_system": "epss",
                    "scoring_elements": "0.68666",
                    "published_at": "2026-04-09T12:55:00Z"
                },
                {
                    "value": "0.00572",
                    "scoring_system": "epss",
                    "scoring_elements": "0.68648",
                    "published_at": "2026-04-13T12:55:00Z"
                },
                {
                    "value": "0.00572",
                    "scoring_system": "epss",
                    "scoring_elements": "0.68597",
                    "published_at": "2026-04-07T12:55:00Z"
                },
                {
                    "value": "0.00572",
                    "scoring_system": "epss",
                    "scoring_elements": "0.68602",
                    "published_at": "2026-04-02T12:55:00Z"
                },
                {
                    "value": "0.00572",
                    "scoring_system": "epss",
                    "scoring_elements": "0.68798",
                    "published_at": "2026-05-09T12:55:00Z"
                },
                {
                    "value": "0.00572",
                    "scoring_system": "epss",
                    "scoring_elements": "0.68762",
                    "published_at": "2026-05-07T12:55:00Z"
                },
                {
                    "value": "0.00572",
                    "scoring_system": "epss",
                    "scoring_elements": "0.6872",
                    "published_at": "2026-05-05T12:55:00Z"
                }
            ],
            "url": "https://api.first.org/data/v1/epss?cve=CVE-2024-28176"
        },
        {
            "reference_url": "https://github.com/panva/jose",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "5.3",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L"
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/panva/jose"
        },
        {
            "reference_url": "https://github.com/panva/jose/commit/02a65794f7873cdaf12e81e80ad076fcdc4a9314",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "4.9",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "5.3",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L"
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:N/A:N/T:P/P:M/B:A/M:M/D:T/2024-03-11T14:26:36Z/"
                }
            ],
            "url": "https://github.com/panva/jose/commit/02a65794f7873cdaf12e81e80ad076fcdc4a9314"
        },
        {
            "reference_url": "https://github.com/panva/jose/commit/1b91d88d2f8233f3477a5f4579aa5f8057b2ee8b",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "4.9",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "5.3",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L"
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:N/A:N/T:P/P:M/B:A/M:M/D:T/2024-03-11T14:26:36Z/"
                }
            ],
            "url": "https://github.com/panva/jose/commit/1b91d88d2f8233f3477a5f4579aa5f8057b2ee8b"
        },
        {
            "reference_url": "https://github.com/panva/jose/security/advisories/GHSA-hhhv-q57g-882q",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "4.9",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "5.3",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L"
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "cvssv3.1_qr",
                    "scoring_elements": ""
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:N/A:N/T:P/P:M/B:A/M:M/D:T/2024-03-11T14:26:36Z/"
                }
            ],
            "url": "https://github.com/panva/jose/security/advisories/GHSA-hhhv-q57g-882q"
        },
        {
            "reference_url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I6MMWFBOXJA6ZCXNVPDFJ4XMK5PVG5RG",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "5.3",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L"
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I6MMWFBOXJA6ZCXNVPDFJ4XMK5PVG5RG"
        },
        {
            "reference_url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KXKGNCRU7OTM5AHC7YIYBNOWI742PRMY",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "5.3",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L"
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KXKGNCRU7OTM5AHC7YIYBNOWI742PRMY"
        },
        {
            "reference_url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UG5FSEYJ3GP27FZXC5YAAMMEC5XWKJHG",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "5.3",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L"
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UG5FSEYJ3GP27FZXC5YAAMMEC5XWKJHG"
        },
        {
            "reference_url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UJO2U5ACZVACNQXJ5EBRFLFW6DP5BROY",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "5.3",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L"
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UJO2U5ACZVACNQXJ5EBRFLFW6DP5BROY"
        },
        {
            "reference_url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XJDO5VSIAOGT2WP63AXAAWNRSVJCNCRH",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "5.3",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L"
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XJDO5VSIAOGT2WP63AXAAWNRSVJCNCRH"
        },
        {
            "reference_url": "https://nvd.nist.gov/vuln/detail/CVE-2024-28176",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "5.3",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L"
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-28176"
        },
        {
            "reference_url": "https://bugzilla.redhat.com/show_bug.cgi?id=2268820",
            "reference_id": "2268820",
            "reference_type": "",
            "scores": [],
            "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2268820"
        },
        {
            "reference_url": "https://github.com/advisories/GHSA-hhhv-q57g-882q",
            "reference_id": "GHSA-hhhv-q57g-882q",
            "reference_type": "",
            "scores": [
                {
                    "value": "MODERATE",
                    "scoring_system": "cvssv3.1_qr",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/advisories/GHSA-hhhv-q57g-882q"
        },
        {
            "reference_url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I6MMWFBOXJA6ZCXNVPDFJ4XMK5PVG5RG/",
            "reference_id": "I6MMWFBOXJA6ZCXNVPDFJ4XMK5PVG5RG",
            "reference_type": "",
            "scores": [
                {
                    "value": "4.9",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:N/A:N/T:P/P:M/B:A/M:M/D:T/2024-03-11T14:26:36Z/"
                }
            ],
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I6MMWFBOXJA6ZCXNVPDFJ4XMK5PVG5RG/"
        },
        {
            "reference_url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KXKGNCRU7OTM5AHC7YIYBNOWI742PRMY/",
            "reference_id": "KXKGNCRU7OTM5AHC7YIYBNOWI742PRMY",
            "reference_type": "",
            "scores": [
                {
                    "value": "4.9",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:N/A:N/T:P/P:M/B:A/M:M/D:T/2024-03-11T14:26:36Z/"
                }
            ],
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KXKGNCRU7OTM5AHC7YIYBNOWI742PRMY/"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2024:3826",
            "reference_id": "RHSA-2024:3826",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2024:3826"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2024:3827",
            "reference_id": "RHSA-2024:3827",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2024:3827"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2024:3968",
            "reference_id": "RHSA-2024:3968",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2024:3968"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2024:5094",
            "reference_id": "RHSA-2024:5094",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2024:5094"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2024:5294",
            "reference_id": "RHSA-2024:5294",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2024:5294"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2024:6755",
            "reference_id": "RHSA-2024:6755",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2024:6755"
        },
        {
            "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:9181",
            "reference_id": "RHSA-2024:9181",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2024:9181"
        },
        {
            "reference_url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UG5FSEYJ3GP27FZXC5YAAMMEC5XWKJHG/",
            "reference_id": "UG5FSEYJ3GP27FZXC5YAAMMEC5XWKJHG",
            "reference_type": "",
            "scores": [
                {
                    "value": "4.9",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:N/A:N/T:P/P:M/B:A/M:M/D:T/2024-03-11T14:26:36Z/"
                }
            ],
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UG5FSEYJ3GP27FZXC5YAAMMEC5XWKJHG/"
        },
        {
            "reference_url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UJO2U5ACZVACNQXJ5EBRFLFW6DP5BROY/",
            "reference_id": "UJO2U5ACZVACNQXJ5EBRFLFW6DP5BROY",
            "reference_type": "",
            "scores": [
                {
                    "value": "4.9",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:N/A:N/T:P/P:M/B:A/M:M/D:T/2024-03-11T14:26:36Z/"
                }
            ],
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UJO2U5ACZVACNQXJ5EBRFLFW6DP5BROY/"
        },
        {
            "reference_url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XJDO5VSIAOGT2WP63AXAAWNRSVJCNCRH/",
            "reference_id": "XJDO5VSIAOGT2WP63AXAAWNRSVJCNCRH",
            "reference_type": "",
            "scores": [
                {
                    "value": "4.9",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:N/A:N/T:P/P:M/B:A/M:M/D:T/2024-03-11T14:26:36Z/"
                }
            ],
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XJDO5VSIAOGT2WP63AXAAWNRSVJCNCRH/"
        }
    ],
    "weaknesses": [
        {
            "cwe_id": 400,
            "name": "Uncontrolled Resource Consumption",
            "description": "The product does not properly control the allocation and maintenance of a limited resource, thereby enabling an actor to influence the amount of resources consumed, eventually leading to the exhaustion of available resources."
        },
        {
            "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": "4.0 - 6.9",
    "exploitability": "0.5",
    "weighted_severity": "6.2",
    "risk_score": 3.1,
    "resource_url": "http://public2.vulnerablecode.io/vulnerabilities/VCID-1rpd-33se-hkex"
}