SetCookieHeader
SetCookieheader, commonly known as the Set-Cookie header, is an HTTP response header used by servers to set cookies in the user agent. Each SetCookieheader entry defines a single cookie with a name and value and may include attributes that control its scope and behavior.
Syntax and attributes: Set-Cookie: <name>=<value>[; Expires=<date>][; Max-Age=<seconds>][; Domain=<domain>][; Path=<path>][; Secure][; HttpOnly][; SameSite=<Lax|Strict|None>]. Expires is deprecated in
Behavior and scope: The user agent stores cookies received via SetCookieheader and includes them in subsequent
Security and best practices: Avoid placing highly sensitive data in cookies. Use HttpOnly for session cookies,