Thumbor has HMAC validation bypass via multiple .replace() calls when removing URL signature (CVE-2026-53501)
# HMAC validation bypass via multiple `.replace()` calls when removing URL signature ## Summary Thumbor’s HMAC validation can be bypassed due to the use of Python’s `.replace()` when removing the signature from the URL before validation. Since `.replace()` removes **all occurrences** of the substring, an attacker can insert the same signature multiple times in the URL and manipulate the final URL used for validation. This allows crafting URLs where the validated string differs from the actual requested resource, enabling loading images from unintended domains or paths. ## Details Thumbor signs URLs using **HMAC-SHA1** to prevent abuse such as loading arbitrary external images or invoking filters without authorization. During request validation, Thumbor removes the signature from the request URL before recalculating the HMAC. The relevant code: ```python url_signature = self.context.request.hash if url_signature: signer = self.context.modules.url_signer( self.context.server.security_key ) try: quoted_hash = quote(self.context.request.hash) except KeyError: self._error(400, f"Invalid hash: {self.context.request.hash}") return url_to_validate = url.replace( f"/{self.context.request.hash}/", "" ).replace(f"/{quoted_hash}/", "") valid = signer.validate( unquote(url_signature).encode(), url_to_validate ) ``` The issue is that `.replace()` removes **every occurrence** of the substring in the URL, not just the first one. Because the signature itself appears in the URL, an attacker can **inject additional copies of the signature** elsewhere in the path. When Thumbor performs `.replace()`, these extra occurrences are also removed, resulting in a different `url_to_validate` than the original request. ## Example Valid request: ``` /ddoyYVYUbDf6Po_dzOrBhCDrXLc=/300x200/s3.glbimg.com/v1/.../image.jpg ``` By injecting the same hash inside the URL: ``` /ddoyYVYUbDf6Po_dzOrBhCDrXLc=/300x200/s3.glbimg.co/ddoyYVYUbDf6Po_dzOrBhCDrXLc=/m/v1/.../image.jpg ``` After `.replace()` removes all occurrences of the hash, the URL used for validation differs from the effective request path. This allows manipulation of the upstream host or path. Further manipulation is possible due to the **second `.replace()` for the URL-encoded hash (`%3D`)**, enabling more precise path manipulation. Example: ``` /ddoyYVYUbDf6Po_dzOrBhCDrXLc=/300x200/s3.glbimg.com/ddoyYVYUbDf6Po/ddoyYVYUbDf6Po_dzOrBhCDrXLc%3D/ddoyYVYUbDf6Po/v1/... ``` ## Impact This behavior may allow attackers to: - Bypass HMAC URL validation - Load images from arbitrary domains - Abuse Thumbor deployments as an open proxy / image fetcher - Circumvent domain restrictions intended by the signed URL mechanism ## Root Cause Use of `.replace()` without limiting the number of replacements when removing the signature from the URL. Since the signature is part of the request path, using a global replacement allows attackers to place additional occurrences of the same substring to influence the validated string. ## Suggested Fix Remove only the first occurrence of the signature or explicitly parse the URL components instead of performing global string replacement. Example: ```python url.replace(f"/{self.context.request.hash}/", "", 1) ``` Alternatively, reconstruct the unsigned URL deterministically from the parsed request components.
AI Analysis
Technical Summary
Thumbor uses HMAC-SHA1 to sign URLs to prevent unauthorized image loading and filter invocation. The vulnerability arises because Thumbor removes the signature from the URL before validation using Python's .replace() method without limiting the number of replacements. Since .replace() removes all occurrences of the signature substring, an attacker can insert multiple copies of the signature in the URL path. This manipulation causes the validated URL string to differ from the actual requested URL, enabling bypass of the HMAC validation. The vulnerability affects Thumbor versions before 7.8.0. The root cause is the global replacement of the signature substring instead of removing only the first occurrence or properly parsing URL components. A fix is available that limits the replacement to the first occurrence or reconstructs the unsigned URL deterministically.
Potential Impact
Attackers can bypass the HMAC URL validation mechanism, allowing them to load images from arbitrary domains or paths not intended by the original signed URL. This can lead to abuse of Thumbor deployments as open proxies or unauthorized image fetchers, circumventing domain restrictions and potentially exposing sensitive or restricted content.
Mitigation Recommendations
A patch is available for Thumbor versions prior to 7.8.0 that fixes the vulnerability by replacing only the first occurrence of the signature in the URL or by reconstructing the unsigned URL from parsed components. Users should upgrade to version 7.8.0 or later where this issue is resolved. Until patched, do not rely on the current URL signature validation mechanism as it can be bypassed.
Thumbor has HMAC validation bypass via multiple .replace() calls when removing URL signature (CVE-2026-53501)
Description
# HMAC validation bypass via multiple `.replace()` calls when removing URL signature ## Summary Thumbor’s HMAC validation can be bypassed due to the use of Python’s `.replace()` when removing the signature from the URL before validation. Since `.replace()` removes **all occurrences** of the substring, an attacker can insert the same signature multiple times in the URL and manipulate the final URL used for validation. This allows crafting URLs where the validated string differs from the actual requested resource, enabling loading images from unintended domains or paths. ## Details Thumbor signs URLs using **HMAC-SHA1** to prevent abuse such as loading arbitrary external images or invoking filters without authorization. During request validation, Thumbor removes the signature from the request URL before recalculating the HMAC. The relevant code: ```python url_signature = self.context.request.hash if url_signature: signer = self.context.modules.url_signer( self.context.server.security_key ) try: quoted_hash = quote(self.context.request.hash) except KeyError: self._error(400, f"Invalid hash: {self.context.request.hash}") return url_to_validate = url.replace( f"/{self.context.request.hash}/", "" ).replace(f"/{quoted_hash}/", "") valid = signer.validate( unquote(url_signature).encode(), url_to_validate ) ``` The issue is that `.replace()` removes **every occurrence** of the substring in the URL, not just the first one. Because the signature itself appears in the URL, an attacker can **inject additional copies of the signature** elsewhere in the path. When Thumbor performs `.replace()`, these extra occurrences are also removed, resulting in a different `url_to_validate` than the original request. ## Example Valid request: ``` /ddoyYVYUbDf6Po_dzOrBhCDrXLc=/300x200/s3.glbimg.com/v1/.../image.jpg ``` By injecting the same hash inside the URL: ``` /ddoyYVYUbDf6Po_dzOrBhCDrXLc=/300x200/s3.glbimg.co/ddoyYVYUbDf6Po_dzOrBhCDrXLc=/m/v1/.../image.jpg ``` After `.replace()` removes all occurrences of the hash, the URL used for validation differs from the effective request path. This allows manipulation of the upstream host or path. Further manipulation is possible due to the **second `.replace()` for the URL-encoded hash (`%3D`)**, enabling more precise path manipulation. Example: ``` /ddoyYVYUbDf6Po_dzOrBhCDrXLc=/300x200/s3.glbimg.com/ddoyYVYUbDf6Po/ddoyYVYUbDf6Po_dzOrBhCDrXLc%3D/ddoyYVYUbDf6Po/v1/... ``` ## Impact This behavior may allow attackers to: - Bypass HMAC URL validation - Load images from arbitrary domains - Abuse Thumbor deployments as an open proxy / image fetcher - Circumvent domain restrictions intended by the signed URL mechanism ## Root Cause Use of `.replace()` without limiting the number of replacements when removing the signature from the URL. Since the signature is part of the request path, using a global replacement allows attackers to place additional occurrences of the same substring to influence the validated string. ## Suggested Fix Remove only the first occurrence of the signature or explicitly parse the URL components instead of performing global string replacement. Example: ```python url.replace(f"/{self.context.request.hash}/", "", 1) ``` Alternatively, reconstruct the unsigned URL deterministically from the parsed request components.
CVSS v3.1
Score 8.2high
Affected software
Run on your own infrastructure? Check whether these packages are installed with threat-finder — our free open-source scanner.
Weaknesses
AI-Powered Analysis
Machine-generated threat intelligence
Technical Analysis
Thumbor uses HMAC-SHA1 to sign URLs to prevent unauthorized image loading and filter invocation. The vulnerability arises because Thumbor removes the signature from the URL before validation using Python's .replace() method without limiting the number of replacements. Since .replace() removes all occurrences of the signature substring, an attacker can insert multiple copies of the signature in the URL path. This manipulation causes the validated URL string to differ from the actual requested URL, enabling bypass of the HMAC validation. The vulnerability affects Thumbor versions before 7.8.0. The root cause is the global replacement of the signature substring instead of removing only the first occurrence or properly parsing URL components. A fix is available that limits the replacement to the first occurrence or reconstructs the unsigned URL deterministically.
Potential Impact
Attackers can bypass the HMAC URL validation mechanism, allowing them to load images from arbitrary domains or paths not intended by the original signed URL. This can lead to abuse of Thumbor deployments as open proxies or unauthorized image fetchers, circumventing domain restrictions and potentially exposing sensitive or restricted content.
Mitigation Recommendations
A patch is available for Thumbor versions prior to 7.8.0 that fixes the vulnerability by replacing only the first occurrence of the signature in the URL or by reconstructing the unsigned URL from parsed components. Users should upgrade to version 7.8.0 or later where this issue is resolved. Until patched, do not rely on the current URL signature validation mechanism as it can be bypassed.
Technical Details
- Gcve Source
- db.gcve.eu
- Osv Id
- GHSA-mw3h-qjxj-6xg9
- Osv Schema Version
- 1.4.0
- Aliases
- ["CVE-2026-53501"]
- Ecosystems
- ["PyPI"]
- Database Specific Severity
- HIGH
- Cvss Version
- 3.1
Threat ID: 6a6cf7ddbf32cb7a342b1c58
Added to database: 07/31/2026, 19:30:37 UTC
Last enriched: 07/31/2026, 20:33:17 UTC
Last updated: 07/31/2026, 21:34:36 UTC
Views: 3
Community Reviews
0 reviewsCrowdsource mitigation strategies, share intel context, and vote on the most helpful responses. Sign in to add your voice and help keep defenders ahead.
Want to contribute mitigation steps or threat intel context? Sign in or create an account to join the community discussion.
Actions
Updates to AI analysis require Pro Console access. Upgrade inside Console → Billing.
Need more coverage?
Upgrade to Pro Console for AI refresh and higher limits.
For incident response and remediation, OffSeq services can help resolve threats faster.
Latest Threats
Check if your credentials are on the dark web
Instant breach scanning across billions of leaked records. Free tier available.