CVE-2026-55891
UnknownCVSS 0.0Exploitation Probability (EPSS)
Low risk25th percentile - higher than 25% of all known CVEs
Summary
PrivateBin before version 2.0.5 has a vulnerability in Request::getRequestUri() which passes $_SERVER['REQUEST_URI'] through FILTER_SANITIZE_URL, not removing quotation marks, angle brackets, or apostrophes. The attacker-controlled value is then inserted into JSON-LD templates without JSON escaping, potentially allowing injection of data into application/ld+json responses.
Risk Assessment
The risk is the possibility of manipulating JSON-LD responses, which may affect structured-data consumers or combine with less strict clients, potentially leading to content injection.
Recommendation
It is recommended to upgrade PrivateBin to version 2.0.5, which includes a fix for this vulnerability.
Other vulnerabilities in PrivateBin
Original NVD description (English source)
PrivateBin is an online pastebin where the server has zero knowledge of pasted data. Prior to 2.0.5, Request::getRequestUri() in lib/Request.php passes $_SERVER['REQUEST_URI'] through FILTER_SANITIZE_URL, which does not remove quotation marks, angle brackets, or apostrophes, and Controller::_init() stores the attacker-controlled value in Controller::$_urlBase. Controller::_jsonld() in lib/Controller.php then uses str_replace() to insert that value without JSON escaping into js/types.jsonld, js/paste.jsonld, and the other JSON-LD templates used by /?jsonld= and /?pasteid. A raw quotation mark delivered by an HTTP client, proxy, or structured-data crawler that does not normalize the request target can break out of the JSON string and inject arbitrary key-value data into a CORS-open application/ld+json response. The jsonld branch in Controller::__construct() returns before _setCacheHeaders(), so the response also lacks X-Content-Type-Options: nosniff, Content Security Policy, X-Frame-Options, and Referrer-Policy. Direct script execution was not demonstrated, but manipulated responses can affect structured-data consumers or combine with less strict clients. This issue is fixed in version 2.0.5.

