Everything this server can store in your browser, with the lifetime it actually sets. Read from the running configuration, so it is the current list rather than a list somebody maintained.
| Cookie | What it is for | How long | Strictly necessary? |
|---|---|---|---|
dbbasic_session | Keeps you signed in after you enter your password. You sign in. | 1 days Max-Age=86400 | Yes you asked to sign in, and there is no way to stay signed in without it |
cart | Remembers which basket is yours, so what you put in it is still there on the next page. It holds an opaque token, not the contents. You put something in the basket. | 14 days Max-Age=1209600 | Yes you asked for a basket; a shop cannot keep one without a way to recognise it |
Every cookie above is first-party (set by this server, sent only back to it), HttpOnly (no script on the page can read it) and SameSite=Lax. None of them is an advertising or cross-site identifier, and there is no third-party script on any page of this site to set one.