What it is
SameSite is a cookie attribute that controls when the browser attaches a cookie to cross-site requests. Lax (the modern default) sends it on top-level GET navigations only. Strict never sends it cross-site. None sends it on every cross-site request and requires Secure.
Why it matters
SameSite is the cheapest CSRF defense and the trickiest one to break: SSO redirects and embedded payment widgets stop working if you pick the wrong value. Chrome changed the default to Lax in 2020, breaking many sites that assumed None.
How Barrion checks it
Barrion inspects every Set-Cookie response header on your scanned pages and reports cookies missing SameSite, using SameSite=None without Secure, or using Strict on session cookies that need cross-site SSO.