Performance: HTTPS and secure cookies
MEDIUM IMPACT
This concept affects page load security and user data protection, indirectly influencing user trust and interaction speed.
response.set_cookie('sessionid', session_value, secure=True, httponly=True, samesite='Lax')
response.set_cookie('sessionid', session_value, secure=False, httponly=False)
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Insecure cookies over HTTP | 0 | 0 | 0 | [X] Bad |
| Secure cookies over HTTPS with HttpOnly and SameSite | 0 | 0 | 0 | [OK] Good |