Lookup for vulnerabilities affecting packages.

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

{
    "url": "http://public2.vulnerablecode.io/api/vulnerabilities/89925?format=api",
    "vulnerability_id": "VCID-xeur-463r-pyfb",
    "summary": "# GitHub Security Lab (GHSL) Vulnerability Report, rembg: `GHSL-2024-161`, `GHSL-2024-162`\n\nThe [GitHub Security Lab](https://securitylab.github.com) team has identified potential security vulnerabilities in [rembg](https://github.com/danielgatis/rembg).\n\nWe are committed to working with you to help resolve these issues. In this report you will find everything you need to effectively coordinate a resolution of these issues with the GHSL team.\n\nIf at any point you have concerns or questions about this process, please do not hesitate to reach out to us at `securitylab@github.com` (please include `GHSL-2024-161` or `GHSL-2024-162` as a reference). See also [this blog post](https://github.blog/2022-04-22-removing-the-stigma-of-a-cve/) written by GitHub's Advisory Curation team which explains what CVEs and advisories are, why they are important to track vulnerabilities and keep downstream users informed, the CVE assigning process, and how they are used to keep open source software secure.\n\nIf you are _NOT_ the correct point of contact for this report, please let us know!\n\n## Summary\n\nrembg server is vulnerable to Server-Side Request Forgery (SSRF) and a weak default CORS configuration, which may allow an attacker website to send requests to servers on the internal network and view image responses.\n\n## Project\n\nrembg\n\n## Tested Version\n\n[v2.0.57](https://github.com/danielgatis/rembg/releases/tag/v2.0.57)\n\n## Details\n\n### Issue 1: SSRF via `/api/remove` (`GHSL-2024-161`)\n\nThe [`/api/remove`](https://github.com/danielgatis/rembg/blob/d1e00734f8a996abf512a3a5c251c7a9a392c90a/rembg/commands/s_command.py#L237) endpoint takes a URL query parameter that allows an image to be fetched, processed and returned. An attacker may  be able to query this endpoint to view pictures hosted on the internal network of the rembg server.\n\n```python\n async def get_index(\n        url: str = Query(\n            default=..., description=\"URL of the image that has to be processed.\"\n        ),\n        commons: CommonQueryParams = Depends(),\n    ):\n        async with aiohttp.ClientSession() as session:\n            async with session.get(url) as response:\n                file = await response.read()\n                return await asyncify(im_without_bg)(file, commons)\n```\n\n#### Impact\n\nThis issue may lead to `Information Disclosure`.\n\n#### Remediation\n\nEnsure that the IP address specified is not a local address. If resolving a domain name, ensure that the resolved IP address is not local.\n\n#### Proof of Concept\n\n`curl -s \"http://localhost:7000/api/remove?url=http://0.0.0.0/secret.png\" -o output.png`\n\n\n### Issue 2: CORS misconfiguration (`GHSL-2024-162`)\n\nThe following [CORS middleware](https://github.com/danielgatis/rembg/blob/d1e00734f8a996abf512a3a5c251c7a9a392c90a/rembg/commands/s_command.py#L93) is setup incorrectly. All origins are reflected, which allows any website to send cross site requests to the rembg server and thus query any API. Even if authentication were to be enabled, `allow_credentials` is set to True, which would allow any website to send authenticated cross site requests.\n\n```python\n    app.add_middleware(\n        CORSMiddleware,\n        allow_credentials=True,\n        allow_origins=[\"*\"],\n        allow_methods=[\"*\"],\n        allow_headers=[\"*\"],\n    )\n\n```\n\n#### Impact\n\nThis issue may increase the severity of other vulnerabilities.\n\n#### Remediation\n\nCreate an allowlist of specific endpoints that can send cross site requests to the rembg server.\n\n#### Proof of Concept\n\nAn attacker website can host the following code:\n```javascript\nconst response = await fetch(\"http://localhost:7000/api/remove?url=https://0.0.0.0/secret.jpg\");\n```\nIf a victim running rembg server were to access the attacker website, the attacker website could read the file `secret.jpg` from the server hosted on the victim's internal network.\n\n## GitHub Security Advisories\n\nWe recommend you create a private [GitHub Security Advisory](https://help.github.com/en/github/managing-security-vulnerabilities/creating-a-security-advisory) for these findings. This also allows you to invite the GHSL team to collaborate and further discuss these findings in private before they are [published](https://help.github.com/en/github/managing-security-vulnerabilities/publishing-a-security-advisory).\n\n## Credit\n\nThese issues were discovered and reported by GHSL team member [@Kwstubbs (Kevin Stubbings)](https://github.com/Kwstubbs).\n\n## Contact\n\nYou can contact the GHSL team at `securitylab@github.com`, please include a reference to `GHSL-2024-161` or `GHSL-2024-162` in any communication regarding these issues.\n\n## Disclosure Policy\n\nThis report is subject to a 90-day disclosure deadline, as described in more detail in our [coordinated disclosure policy](https://securitylab.github.com/advisories#policy).",
    "aliases": [
        {
            "alias": "GHSA-55v6-g8pm-pw4c"
        }
    ],
    "fixed_packages": [
        {
            "url": "http://public2.vulnerablecode.io/api/packages/111186?format=api",
            "purl": "pkg:pypi/rembg@2.0.75",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.75"
        }
    ],
    "affected_packages": [
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44445?format=api",
            "purl": "pkg:pypi/rembg@2.0.28",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.28"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44446?format=api",
            "purl": "pkg:pypi/rembg@2.0.29",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.29"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44447?format=api",
            "purl": "pkg:pypi/rembg@2.0.30",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.30"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44448?format=api",
            "purl": "pkg:pypi/rembg@2.0.31",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.31"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44449?format=api",
            "purl": "pkg:pypi/rembg@2.0.32",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.32"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44450?format=api",
            "purl": "pkg:pypi/rembg@2.0.33",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.33"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44451?format=api",
            "purl": "pkg:pypi/rembg@2.0.34",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.34"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44452?format=api",
            "purl": "pkg:pypi/rembg@2.0.35",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.35"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44453?format=api",
            "purl": "pkg:pypi/rembg@2.0.36",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.36"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44454?format=api",
            "purl": "pkg:pypi/rembg@2.0.37",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.37"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44455?format=api",
            "purl": "pkg:pypi/rembg@2.0.38",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.38"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44456?format=api",
            "purl": "pkg:pypi/rembg@2.0.39",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.39"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44457?format=api",
            "purl": "pkg:pypi/rembg@2.0.40",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.40"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44458?format=api",
            "purl": "pkg:pypi/rembg@2.0.41",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.41"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44459?format=api",
            "purl": "pkg:pypi/rembg@2.0.43",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.43"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44460?format=api",
            "purl": "pkg:pypi/rembg@2.0.44",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.44"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44461?format=api",
            "purl": "pkg:pypi/rembg@2.0.45",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.45"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44462?format=api",
            "purl": "pkg:pypi/rembg@2.0.46",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.46"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44463?format=api",
            "purl": "pkg:pypi/rembg@2.0.47",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.47"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44464?format=api",
            "purl": "pkg:pypi/rembg@2.0.48",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.48"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44465?format=api",
            "purl": "pkg:pypi/rembg@2.0.49",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.49"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44466?format=api",
            "purl": "pkg:pypi/rembg@2.0.50",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.50"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44467?format=api",
            "purl": "pkg:pypi/rembg@2.0.51",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.51"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44468?format=api",
            "purl": "pkg:pypi/rembg@2.0.52",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.52"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44469?format=api",
            "purl": "pkg:pypi/rembg@2.0.53",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.53"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44470?format=api",
            "purl": "pkg:pypi/rembg@2.0.54",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.54"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44471?format=api",
            "purl": "pkg:pypi/rembg@2.0.55",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.55"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44472?format=api",
            "purl": "pkg:pypi/rembg@2.0.56",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.56"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44473?format=api",
            "purl": "pkg:pypi/rembg@2.0.57",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5491-113y-w7dm"
                },
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-j4jv-uxp8-gqft"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.57"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/44474?format=api",
            "purl": "pkg:pypi/rembg@2.0.58",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.58"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1018988?format=api",
            "purl": "pkg:pypi/rembg@2.0.59",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.59"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1018989?format=api",
            "purl": "pkg:pypi/rembg@2.0.60",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.60"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1018990?format=api",
            "purl": "pkg:pypi/rembg@2.0.61",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.61"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1018991?format=api",
            "purl": "pkg:pypi/rembg@2.0.62",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.62"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1018992?format=api",
            "purl": "pkg:pypi/rembg@2.0.63",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.63"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1018993?format=api",
            "purl": "pkg:pypi/rembg@2.0.64",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.64"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1018994?format=api",
            "purl": "pkg:pypi/rembg@2.0.65",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.65"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1018995?format=api",
            "purl": "pkg:pypi/rembg@2.0.66",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.66"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1018996?format=api",
            "purl": "pkg:pypi/rembg@2.0.67",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.67"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1018997?format=api",
            "purl": "pkg:pypi/rembg@2.0.68",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.68"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1018998?format=api",
            "purl": "pkg:pypi/rembg@2.0.69",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.69"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1018999?format=api",
            "purl": "pkg:pypi/rembg@2.0.70",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.70"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1019000?format=api",
            "purl": "pkg:pypi/rembg@2.0.71",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.71"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1019001?format=api",
            "purl": "pkg:pypi/rembg@2.0.72",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.72"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1019002?format=api",
            "purl": "pkg:pypi/rembg@2.0.73",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.73"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1019003?format=api",
            "purl": "pkg:pypi/rembg@2.0.74",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bbe2-6vn7-rbg1"
                },
                {
                    "vulnerability": "VCID-xeur-463r-pyfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/rembg@2.0.74"
        }
    ],
    "references": [
        {
            "reference_url": "https://github.com/danielgatis/rembg",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "4.3",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:N"
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/danielgatis/rembg"
        },
        {
            "reference_url": "https://github.com/danielgatis/rembg/commit/07ad0d493057bddf821dcc3e2410eb7e065257c0",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "4.3",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:N"
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/danielgatis/rembg/commit/07ad0d493057bddf821dcc3e2410eb7e065257c0"
        },
        {
            "reference_url": "https://github.com/danielgatis/rembg/releases/tag/v2.0.75",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "4.3",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:N"
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/danielgatis/rembg/releases/tag/v2.0.75"
        },
        {
            "reference_url": "https://github.com/danielgatis/rembg/security/advisories/GHSA-55v6-g8pm-pw4c",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "4.3",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:N"
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "cvssv3.1_qr",
                    "scoring_elements": ""
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/danielgatis/rembg/security/advisories/GHSA-55v6-g8pm-pw4c"
        },
        {
            "reference_url": "https://github.com/advisories/GHSA-55v6-g8pm-pw4c",
            "reference_id": "GHSA-55v6-g8pm-pw4c",
            "reference_type": "",
            "scores": [
                {
                    "value": "MODERATE",
                    "scoring_system": "cvssv3.1_qr",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/advisories/GHSA-55v6-g8pm-pw4c"
        }
    ],
    "weaknesses": [
        {
            "cwe_id": 918,
            "name": "Server-Side Request Forgery (SSRF)",
            "description": "The web server receives a URL or similar request from an upstream component and retrieves the contents of this URL, but it does not sufficiently ensure that the request is being sent to the expected destination."
        },
        {
            "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-xeur-463r-pyfb"
}