What the issue means
A cookie without Secure may be sent over HTTP if the site or subresource is accessed without HTTPS.
Security fix guide
A cookie without Secure may be sent over HTTP if the site or subresource is accessed without HTTPS.
Run Full Website Security ScanA cookie without Secure may be sent over HTTP if the site or subresource is accessed without HTTPS.
Secure helps ensure sensitive cookies are only sent over encrypted HTTPS connections.
Inspect Set-Cookie headers and verify sensitive cookies include Secure.
Serve the site over HTTPS and set Secure on authentication and session cookies.
Prefer application code; proxy_cookie_flags can add Secure in reverse proxy setups.Prefer application code; Header edit Set-Cookie can help in some legacy configurations.cookies().set("session", value, { secure: true, httpOnly: true, sameSite: "lax" });Enable HTTPS and use application-level Secure cookie flags.