PatchSiren cyber security CVE debrief
CVE-2026-43926 FOSSBilling CVE debrief
CVE-2026-43926 is a MEDIUM severity vulnerability in FOSSBilling, a free, open-source billing and client management system. The vulnerability allows an attacker to bypass the rate limiter and probe the password reset confirmation endpoint for valid reset tokens without any per-IP request limiting, attempt counting, or lockout mechanism. This is possible because the password reset confirmation endpoint `/client/reset-password-confirm/:hash` is handled by a non-API controller and is not covered by FOSSBilling's rate limiter, which only applies to `/api/*` routes. The endpoint acts as an oracle, returning a distinguishable response for valid versus invalid tokens (HTTP 200 vs HTTP 302 redirect). However, practical exploitability is significantly mitigated by the current token generation, which uses `hash('sha256', random_bytes(32))`, providing 256 bits of entropy. Tokens also expire after 15 minutes and are deleted after successful use. The same architectural gap applies to other controller-served auth routes, including `/staff/email/:hash` (admin password reset confirmation) and `/client/confirm-email/:hash` (email confirmation).
- Vendor
- FOSSBilling
- Product
- Unknown
- CVSS
- MEDIUM 6.3
- CISA KEV
- Not listed in stored evidence
- Original CVE published
- 2026-06-04
- Original CVE updated
- 2026-07-22
- Advisory published
- 2026-06-04
- Advisory updated
- 2026-07-22
Who should care
Users of FOSSBilling prior to version 0.8.0 should apply the patch or workarounds to prevent exploitation.
Technical summary
The password reset confirmation endpoint `/client/reset-password-confirm/:hash` in FOSSBilling prior to version 0.8.0 is vulnerable to rate limiter bypass. The endpoint is handled by a non-API controller and is not covered by FOSSBilling's rate limiter. This allows an attacker to submit unlimited token guesses to the password reset confirmation endpoint with no throttling applied.
Defensive priority
MEDIUM
Recommended defensive actions
- Upgrade to FOSSBilling version 0.8.0 or later.
- Configure a reverse proxy (e.g., Nginx, Apache, Cloudflare) to apply per-IP rate limiting to the `/client/reset-password-confirm/*` and `/staff/email/*` paths.
- Use a WAF rule to limit request rates to these endpoints.
Evidence notes
The vulnerability is mitigated by the current token generation, which uses `hash('sha256', random_bytes(32))`, providing 256 bits of entropy. Tokens also expire after 15 minutes and are deleted after successful use.
Sources and references
Verified primary and authoritative sources
-
CVE-2026-43926 CVE Program record
Publisher, destination, and source semantics verified
URL: https://www.cve.org/CVERecord?id=CVE-2026-43926
CVE Program - Official CVE Program record with source-provided CVE metadata.
-
CVE-2026-43926 NVD vulnerability detail
Publisher, destination, and source semantics verified
URL: https://nvd.nist.gov/vuln/detail/CVE-2026-43926
NIST National Vulnerability Database - Official NIST NVD detail page and source-specific vulnerability assessment.
Supplemental references
-
Source reference
Unverified legacy reference
URL: https://github.com/FOSSBilling/FOSSBilling/releases/tag/0.8.0
-
Source reference
Unverified legacy reference
URL: https://github.com/FOSSBilling/FOSSBilling/security/advisories/GHSA-cqqm-p3x5-9fqg
Methodology and review provenance
AI-assisted synthesis based on stored public vulnerability evidence. System validation, approval state, and publication status do not by themselves establish human review of this revision. PatchSiren helps prioritize defensive review and does not prove exposure or remediation on any system.