CVE-2025-66507: 1Panel – CAPTCHA Bypass via Client-Controlled Flag
Summary
A CAPTCHA bypass vulnerability in the 1Panel authentication API allows an unauthenticated attacker to disable CAPTCHA verification by abusing a client-controlled parameter. Because the server previously trusted this value without proper validation, CAPTCHA protections could be bypassed, enabling automated login attempts and significantly increasing the risk of account takeover (ATO).
Details
The /api/login endpoint accepts a boolean field named ignoreCaptcha directly from the client request body:
"ignoreCaptcha": true
The backend implementation uses this value to determine whether CAPTCHA validation should be performed:
if !req.IgnoreCaptcha { if errMsg := captcha.VerifyCode(req.CaptchaID, req.Captcha); errMsg != "" { helper.BadAuth(c, errMsg, nil) return } }
Because req.IgnoreCaptcha is taken directly from user input—with no server-side validation, no session binding, and no privilege checks—any unauthenticated attacker can force CAPTCHA validation to be skipped.
There are no additional conditions, such as:
no requirement for MFA
no trusted device
no IP reputation checks
no prior valid session
no rate limiting
This results in CAPTCHA being entirely client-controlled, which violates fundamental authentication and anti-automation security assumptions.
Other sources
1Panel is an open-source, web-based control panel for Linux server management. Versions 2.0.13 and below allow an unauthenticated attacker to disable CAPTCHA verification by abusing a client-controlled parameter. Because the server previously trusted this value without proper validation, CAPTCHA protections can be bypassed, enabling automated login attempts and significantly increasing the risk of account takeover (ATO). This issue is fixed in version 2.0.14.
— MITRE
Affected Software
Remediation
Event History
Frequently Asked Questions
What is the severity of CVE-2025-66507?
The severity of CVE-2025-66507 is considered high due to its potential for unauthorized access.
How do I fix CVE-2025-66507?
To fix CVE-2025-66507, upgrade to the latest version of 1Panel, either above version 0.0.0-20251128030527-ac43f00273be or 2.0.14.
What is the impact of CVE-2025-66507?
The impact of CVE-2025-66507 includes allowing unauthenticated attackers to bypass CAPTCHA verification, potentially leading to further exploitation of the application.
Is CVE-2025-66507 currently being exploited?
While there are no specific reports of active exploitation for CVE-2025-66507, the ease of attack makes it a possible target for attackers.
What versions of the software are affected by CVE-2025-66507?
CVE-2025-66507 affects versions prior to 0.0.0-20251128030527-ac43f00273be and 2.0.14 of the 1Panel software.