auth: Sprint 02 — auth hardening (Pydantic models, challenge binding, admin gates)
- Add max_length validation to LoginRequest (username 128, password 1024) - Replace raw request.json() with Pydantic models in RBAC override/update endpoints - Replace raw request.json() with Pydantic models in passkey register/login/delete - Bind passkey challenges to session-bound challenge_id (prevents cross-session replay) - Gate audit log and security log endpoints behind admin role - Fix fragile opc_db.json.dumps() → import json directly - Add COOKIE_SECURE=False startup warning (suppress with ALLOW_INSECURE_COOKIES) Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -3,10 +3,13 @@
|
||||
import json
|
||||
import logging
|
||||
import time
|
||||
import uuid
|
||||
from datetime import timedelta
|
||||
from typing import Any
|
||||
|
||||
from fastapi import APIRouter, Depends, HTTPException, Request, Response
|
||||
from fastapi.responses import JSONResponse
|
||||
from pydantic import BaseModel
|
||||
from slowapi import Limiter
|
||||
from slowapi.util import get_remote_address
|
||||
from webauthn import (
|
||||
@@ -25,22 +28,26 @@ router = APIRouter()
|
||||
limiter = Limiter(key_func=get_remote_address)
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
# In-memory challenge store with TTL
|
||||
_challenges = {}
|
||||
# In-memory challenge store with TTL: {challenge_id: (challenge_bytes, timestamp)}
|
||||
_challenges: dict[str, tuple[bytes, float]] = {}
|
||||
|
||||
|
||||
def _store_challenge(challenge: bytes):
|
||||
"""Store a WebAuthn challenge with timestamp for TTL tracking."""
|
||||
_challenges[challenge] = time.time()
|
||||
def _store_challenge(challenge: bytes) -> str:
|
||||
"""Store a WebAuthn challenge and return a session-bound challenge_id."""
|
||||
challenge_id = uuid.uuid4().hex
|
||||
_challenges[challenge_id] = (challenge, time.time())
|
||||
# Clean up expired challenges (>5 minutes old)
|
||||
now = time.time()
|
||||
expired = [k for k, v in _challenges.items() if now - v > 300]
|
||||
expired = [k for k, v in _challenges.items() if now - v[1] > 300]
|
||||
for k in expired:
|
||||
_challenges.pop(k, None)
|
||||
return challenge_id
|
||||
|
||||
|
||||
def _get_challenge(client_data_b64: str) -> bytes:
|
||||
"""Extract and validate challenge from clientDataJSON."""
|
||||
def _get_challenge(challenge_id: str | None, client_data_b64: str) -> bytes:
|
||||
"""Look up challenge by session-bound challenge_id and validate clientDataJSON."""
|
||||
if not challenge_id:
|
||||
raise HTTPException(status_code=400, detail="Missing challenge_id")
|
||||
if not client_data_b64:
|
||||
raise HTTPException(status_code=400, detail="Missing clientDataJSON")
|
||||
try:
|
||||
@@ -49,12 +56,31 @@ def _get_challenge(client_data_b64: str) -> bytes:
|
||||
except Exception:
|
||||
raise HTTPException(status_code=400, detail="Invalid clientDataJSON")
|
||||
|
||||
entry = _challenges.pop(chal_bytes, None)
|
||||
if not entry or time.time() - entry > 300:
|
||||
entry = _challenges.pop(challenge_id, None)
|
||||
if not entry or time.time() - entry[1] > 300:
|
||||
raise HTTPException(status_code=400, detail="Challenge expired or invalid")
|
||||
stored_challenge = entry[0]
|
||||
if stored_challenge != chal_bytes:
|
||||
raise HTTPException(status_code=400, detail="Challenge mismatch")
|
||||
return chal_bytes
|
||||
|
||||
|
||||
# Pydantic models for passkey request validation
|
||||
class PasskeyVerifyRequest(BaseModel):
|
||||
id: str = ""
|
||||
rawId: str = ""
|
||||
response: dict[str, Any] = {}
|
||||
type: str = "public-key"
|
||||
challenge_id: str | None = None
|
||||
name: str = ""
|
||||
# Allow extra fields for authenticator-specific extensions
|
||||
model_config = {"extra": "allow"}
|
||||
|
||||
|
||||
class PasskeyDeleteRequest(BaseModel):
|
||||
id: str
|
||||
|
||||
|
||||
@router.post("/passkey/register/options")
|
||||
@limiter.limit("5/minute")
|
||||
async def passkey_register_options(request: Request, current_user=Depends(auth.get_current_user)):
|
||||
@@ -69,23 +95,24 @@ async def passkey_register_options(request: Request, current_user=Depends(auth.g
|
||||
user_display_name=current_user.username,
|
||||
exclude_credentials=exclude,
|
||||
)
|
||||
_store_challenge(options.challenge)
|
||||
return JSONResponse(content=json.loads(options_to_json(options)))
|
||||
chal_id = _store_challenge(options.challenge)
|
||||
result = json.loads(options_to_json(options))
|
||||
result["challenge_id"] = chal_id
|
||||
return JSONResponse(content=result)
|
||||
|
||||
|
||||
@router.post("/passkey/register/verify")
|
||||
async def passkey_register_verify(request: Request, current_user=Depends(auth.get_current_user)):
|
||||
async def passkey_register_verify(body: PasskeyVerifyRequest, current_user=Depends(auth.get_current_user)):
|
||||
"""Verify and save a new passkey registration."""
|
||||
body = await request.json()
|
||||
challenge = _get_challenge(body.get("response", {}).get("clientDataJSON", ""))
|
||||
challenge = _get_challenge(body.challenge_id, body.response.get("clientDataJSON", ""))
|
||||
try:
|
||||
verification = verify_registration_response(
|
||||
credential=body,
|
||||
credential=body.model_dump(),
|
||||
expected_challenge=challenge,
|
||||
expected_rp_id=config.WEBAUTHN_RP_ID,
|
||||
expected_origin=config.WEBAUTHN_ORIGINS,
|
||||
)
|
||||
except Exception as e:
|
||||
except Exception:
|
||||
logger.exception("Passkey registration verification failed")
|
||||
raise HTTPException(status_code=400, detail="Invalid passkey registration")
|
||||
|
||||
@@ -94,7 +121,7 @@ async def passkey_register_verify(request: Request, current_user=Depends(auth.ge
|
||||
"credential_id": bytes_to_base64url(verification.credential_id),
|
||||
"public_key": bytes_to_base64url(verification.credential_public_key),
|
||||
"sign_count": verification.sign_count,
|
||||
"name": body.get("name", "Passkey"),
|
||||
"name": body.name or "Passkey",
|
||||
"created_at": time.strftime("%Y-%m-%dT%H:%M:%SZ", time.gmtime()),
|
||||
"username": current_user.username,
|
||||
"role": current_user.role,
|
||||
@@ -117,32 +144,33 @@ async def passkey_login_options(request: Request):
|
||||
allow_credentials=allow,
|
||||
user_verification=UserVerificationRequirement.PREFERRED,
|
||||
)
|
||||
_store_challenge(options.challenge)
|
||||
return JSONResponse(content=json.loads(options_to_json(options)))
|
||||
chal_id = _store_challenge(options.challenge)
|
||||
result = json.loads(options_to_json(options))
|
||||
result["challenge_id"] = chal_id
|
||||
return JSONResponse(content=result)
|
||||
|
||||
|
||||
@router.post("/passkey/login/verify")
|
||||
@limiter.limit("10/minute")
|
||||
async def passkey_login_verify(request: Request, response: Response):
|
||||
async def passkey_login_verify(body: PasskeyVerifyRequest, request: Request, response: Response):
|
||||
"""Verify passkey authentication and issue tokens."""
|
||||
body = await request.json()
|
||||
challenge = _get_challenge(body.get("response", {}).get("clientDataJSON", ""))
|
||||
challenge = _get_challenge(body.challenge_id, body.response.get("clientDataJSON", ""))
|
||||
creds = auth.load_passkey_credentials()
|
||||
cred_id_b64 = body.get("id", "")
|
||||
cred_id_b64 = body.id
|
||||
matched = next((c for c in creds if c["credential_id"] == cred_id_b64), None)
|
||||
if not matched:
|
||||
raise HTTPException(status_code=400, detail="Unknown credential")
|
||||
|
||||
try:
|
||||
verification = verify_authentication_response(
|
||||
credential=body,
|
||||
credential=body.model_dump(),
|
||||
expected_challenge=challenge,
|
||||
expected_rp_id=config.WEBAUTHN_RP_ID,
|
||||
expected_origin=config.WEBAUTHN_ORIGINS,
|
||||
credential_public_key=base64url_to_bytes(matched["public_key"]),
|
||||
credential_current_sign_count=matched["sign_count"],
|
||||
)
|
||||
except Exception as e:
|
||||
except Exception:
|
||||
logger.exception("Passkey authentication verification failed")
|
||||
raise HTTPException(status_code=400, detail="Invalid passkey authentication")
|
||||
|
||||
@@ -184,10 +212,9 @@ async def passkey_list(current_user=Depends(auth.get_current_user)):
|
||||
|
||||
|
||||
@router.post("/passkey/delete")
|
||||
async def passkey_delete(request: Request, current_user=Depends(auth.get_current_user)):
|
||||
async def passkey_delete(body: PasskeyDeleteRequest, current_user=Depends(auth.get_current_user)):
|
||||
"""Delete a specific passkey by credential ID."""
|
||||
body = await request.json()
|
||||
cred_id = body.get("id")
|
||||
cred_id = body.id
|
||||
data = auth._load_auth_data()
|
||||
creds = data.get("passkey_credentials", [])
|
||||
data["passkey_credentials"] = [c for c in creds if c["credential_id"] != cred_id]
|
||||
|
||||
Reference in New Issue
Block a user