إدارة الجلسات تتعامل مع الحفاظ على تسجيل دخول المستخدمين عبر الطلبات — والقيام بذلك بشكل آمن أمر مهم، حيث أن ثغرات الجلسات (الاختطاف، التثبيت) تسمح للمهاجمين بانتحال شخصية المستخدمين. تتضمن الجلسات الآمنة معالجة رموز صحيحة، أمان ملفات تعريف الارتباط، وإدارة دورة الحياة.
كيفية عمل الجلسات
After login, the server keeps a SESSION identifying the user across requests:
→ a SESSION ID (or token) is stored client-side (usually a cookie) and sent each request
→ the server uses it to know who the user is (without re-authenticating each time)
→ the session ID/token is effectively a key to the user's account → must be PROTECTED.
تأمين الجلسات
✓ SECURE COOKIE flags for session cookies:
→ HttpOnly → JavaScript can't read it (protects against theft via XSS)
→ Secure → sent only over HTTPS (not plaintext)
→ SameSite → not sent on cross-site requests (mitigates CSRF)
✓ Strong, RANDOM, unpredictable session IDs (can't be guessed)
✓ Store session data server-side (or sign/encrypt tokens); transmit over HTTPS only
