Name | Name of the detected Cookie |
Domain | Domain name where the described cookie was found |
Secure | The Secure flag is an option that can be set by the server when sending a new cookie to the user in an HTTP response. The purpose is to prevent cookies from being observed by unauthorized parties due to sending the cookie in clear text. |
HttpOnly | The HttpOnly flag is an additional security option for cookies. If this flag is set, the browser does not display the cookie through client-side scripts. |
LifeTime | This parameter shows the validity of a cookie. |
SameSite | The SameSite attribute shows if this cookie is restricted to a first-party or same-site context. |
ThirdParty | This attribute shows if this cookie was distributed from the own web ressource or from an external one. (domain name matching) |
InServerResponse | If the value of this attribute is true, this cookie was directly send from the server. If this value is false, the cookie was created and distributed via a JavaScript context. |