Network Help
External Links
RFC6265
Wikipedia

The cookie is a name/value pair in the HTTP header.

The format is: Host+Port=Time(Sequence)Random; HttpOnly; SameSite=Strict

Cookies are used only for the purpose of identifing the session. No cookies are set to work between sessions, so there is no client identification or tracking done.

Where the name is formed by the host name and port. This allows the server to quickly identify the appropriate cookie when multiple cookies are returned which will happen in cases like the same host but different ports. To a degree if provides some of the functionality of the “SameSite=Strict” in that the server only looks at the cookie for the site.

The value is the time the session begins plus the sequence number of the session and a random value. This allows for a simple lookup for the related session. The random value provides uniqueness so that the cookie cannot otherwise be calculated.

“HttpOnly” tells the client not to share the cookie for non-HTTP uses, such as browser scripts.

“SameSite=Strict” requests that the cookie only be sent to the site that issued the cookie.

The Kozlowski Family ● An Attempt at RestorationFamily.Kozlowski
Help Library

Core

Dev

Kind

Kit

Leaf

Map

Message

Net

Overview

Packet

Primitives

Run

Secure

Session

Site

Socket

Sprint

Stack

Tool

The Tree

Network Help

App

Internet

Hit

Kit

Link

Packet

Session

Socket

Net Tool

Transport

Application Layer Help

Aide

Console

DHCP

Director

DNS

Forward

HTTP

HTTPS

IMAP ● Internet Message Access Protocol

LLMNR

Manage

MDNS

NNTP

POP3

RDP

RTP

RTSP

Shofar

SIP

SMTP

SNMP

SSH

SSDP

Syslog

TFTP

Telnet

WhoIs

X

XMPP

HTTP

Cookie

Cookie ABNF

Header

Header ABNF

HTTP Status Codes

Client