CVE-2026-47677
Published:July 14, 2026
Updated:August 27, 2026
"Core/Controller/Login.php::twoFactorValidationAction()" accepts an unauthenticated POST containing only "fsNick" and "fsTwoFactorCode". If the TOTP value matches, the server issues a full "fsNick" + "fsLogkey" session cookie pair. The handler: 1. Does not verify the password — the user is not required to have just completed "loginAction". 2. Does not call "validateFormToken()" — no CSRF token is required (every other action handler in the same file does call it). 3. Does not call "userHasManyIncidents()" before processing — "loginAction" and "changePasswordAction" both check this guard before doing work; the 2FA handler only writes to the incident list after a failure, and the incident list is consulted by "loginAction" / "changePasswordAction" but not by the 2FA handler itself. The endpoint therefore has no rate-limiting at all. Combined with "TwoFactorManager::VERIFICATION_WINDOW = 8" (google2fa default is 1), 17 distinct six-digit codes are valid simultaneously and each remains valid for ~4 minutes. The expected number of guesses to land a valid code is «N ≈ ln(0.5) / ln(1 − 17 / 10⁶) ≈ 40 800 attempts (50% success)» On a default LAMP install a single-laptop attacker sustains ~400 RPS from one source IP — a few minutes per account. The vulnerability gives complete account takeover of any 2FA-enabled user to any unauthenticated network attacker who knows the target's nick. Admin nicks are typically public information ("admin", the company name, the person's initials).
Affected Packages
facturascripts/facturascripts (PHP):
Affected version(s) >=dev-calculator-refactor <v2026.3Fix Suggestion:
Update to version v2026.3facturascripts/facturascripts (PHP):
Affected version(s) >=v2018.12 <v2026.3Fix Suggestion:
Update to version v2026.3Related Resources (3)
Do you need more information?
Contact UsCVSS v4
Base Score:
9.3
Attack Vector
NETWORK
Attack Complexity
LOW
Attack Requirements
NONE
Privileges Required
NONE
User Interaction
NONE
Vulnerable System Confidentiality
HIGH
Vulnerable System Integrity
HIGH
Vulnerable System Availability
LOW
Subsequent System Confidentiality
NONE
Subsequent System Integrity
NONE
Subsequent System Availability
NONE
CVSS v3
Base Score:
9.4
Attack Vector
NETWORK
Attack Complexity
LOW
Privileges Required
NONE
User Interaction
NONE
Scope
UNCHANGED
Confidentiality
HIGH
Integrity
HIGH
Availability
LOW
Weakness Type (CWE)
Improper Authentication