nerdexam
GIAC

GSEC · Question #265

What type of HTTP session tracking artifact is designed to expire once a user's web browser session is closed?

The correct answer is D. Non-Persistent Cookie. Non-persistent cookies are session cookies stored only in browser memory; they carry no expiration date and are automatically deleted when the browser is closed.

Cloud, Web, and Application Security

Question

What type of HTTP session tracking artifact is designed to expire once a user's web browser session is closed?

Options

  • AURL Session ID
  • BClient Side Certificate
  • CHidden Form Field
  • DNon-Persistent Cookie

How the community answered

(37 responses)
  • A
    14% (5)
  • B
    5% (2)
  • C
    3% (1)
  • D
    78% (29)

Why each option

Non-persistent cookies are session cookies stored only in browser memory; they carry no expiration date and are automatically deleted when the browser is closed.

AURL Session ID

URL Session IDs embed the session token in the query string of every URL, which persists in browser history, server logs, and HTTP referrer headers long after the browser closes.

BClient Side Certificate

Client-side certificates are X.509 certificates stored in the operating system certificate store for mutual TLS authentication and are not HTTP session-tracking artifacts.

CHidden Form Field

Hidden form fields store values within HTML form POST submissions and exist only for a single page interaction; they provide no session continuity across requests and have no browser-session expiry mechanism.

DNon-Persistent CookieCorrect

Non-persistent cookies, also known as session cookies, are held in volatile browser memory with no explicit expiration date, so the browser discards them the moment the session ends. This behavior is intentional for transient artifacts like authentication tokens that must not survive a closed browser. Unlike persistent cookies written to disk with a future expiry timestamp, session cookies leave no residual data after the browser closes.

Concept tested: HTTP session cookie lifetime and browser session expiry

Source: https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies

Topics

#session cookies#HTTP session tracking#non-persistent cookie#web security

Community Discussion

No community discussion yet for this question.

Full GSEC Practice