Mistz1

#5265of 53,624
50.4Total CVSS
Vulnerabilities · 6
Medium
2
High
1
Critical
3
PT-2026-38087
9
2026-05-06
Rucio · Rucio · CVE-2026-29090
**Name of the Vulnerable Software and Affected Versions** Rucio versions 1.30.0 through 35.8.4 Rucio versions 38.x through 38.5.4 Rucio versions 39.x through 39.4.1 Rucio versions 40.x through 40.1.0 **Description** An issue exists in the `FilterEngine.create postgres query()` function where authenticated users can execute arbitrary SQL against the PostgreSQL metadata database. This occurs when the `postgres meta` metadata plugin is configured, as attacker-controlled filter keys and values are interpolated directly into raw SQL strings using Python `.format()`, which are then processed as trusted syntax by `psycopg3`'s `sql.SQL()`. The flaw is accessible via the 'GET /dids/<scope>/dids/search' endpoint. Depending on database privileges, this can lead to the exposure of sensitive tables (such as `identities`, `tokens`, `accounts`, `rse settings`, and `rules`), modification or deletion of metadata, access to server-side files, or remote code execution through the `COPY ... FROM PROGRAM` feature. Password hashes may also be extracted and cracked due to the use of single-iteration SHA-256 without a Key Derivation Function (KDF), a method used to strengthen passwords before hashing. **Recommendations** Update to version 35.8.5. Update to version 38.5.5. Update to version 39.4.2. Update to version 40.1.1. As a temporary mitigation, restrict access to the 'GET /dids/<scope>/dids/search' endpoint or disable the `postgres meta` metadata plugin.
PT-2026-26342
9.8
2026-03-19
Ormar · Ormar · CVE-2026-27953
**Name of the Vulnerable Software and Affected Versions** ormar versions 0.23.0 and below **Description** ormar, an async mini ORM for Python, has a Pydantic validation bypass issue in its model constructor. This allows unauthenticated users to skip all field validation by injecting " pk only ": true into a JSON request body. The injection of " pk only ": true allows bypassing type checks, constraints, and other validation rules, leading to the persistence of unvalidated data in the database. A secondary issue involves the " excluded " parameter, which can be used to selectively nullify arbitrary model fields during construction. This affects the recommended FastAPI integration pattern, potentially enabling privilege escalation, data integrity violations, and business logic bypass. The root cause is the direct extraction of " pk only " from user-supplied keyword arguments before validation occurs. The ` pk only ` flag was originally intended for internal optimization but is accessible to external callers. The affected entry points include FastAPI routes using ormar models as request body parameters, as well as direct calls to `Model.objects.create(**user dict)` and `Model(**user dict)`. **Recommendations** Versions prior to 0.23.1 are affected. Replace `kwargs.pop(" pk only ", False)` with a keyword-only parameter that cannot be injected via `**kwargs`. Replace `kwargs.pop(" excluded ", set())` with a keyword-only parameter that cannot be injected via `**kwargs`.