Gravidade: MédiaResponsável: DesenvolvimentoTempo para corrigir: 30-120 min
Cookies de tracking inseguros (problemas Secure ou SameSite)
Reforce os atributos de cookies para que cookies opcionais não sejam entregues com definições fracas de segurança do navegador.
Abrange: tracking_cookie_missing_secure, tracking_cookie_missing_samesite, insecure_tracking_cookie
Porque isto importa
Cookies de tracking sem atributos de segurança adequados aumentam o risco de exposição não intencional ou de comportamento inconsistente entre navegadores. Mesmo que o consentimento esteja correto, continua a ser um problema técnico separado.
Como verificar manualmente
- Inspect cookies in browser storage tools after analytics or marketing tags load.
- Check whether tracking cookies include Secure, HttpOnly where applicable, and an appropriate SameSite value.
- Verify cookie behavior over HTTPS and behind production reverse proxies, not just locally.
Causas típicas
- Framework defaults are overridden or outdated.
- Proxy or CDN terminates HTTPS but origin app still thinks the request is insecure.
- Third-party tools set cookies with legacy defaults you have not reviewed.
Correção no GTM
- Review whether custom GTM scripts set their own cookies without explicit attributes.
- Avoid custom tracking logic that writes cookies client-side unless necessary.
- Prefer vendor integrations that support secure defaults and consent-aware behavior.
Correção em WordPress ou plugins CMP
- Audit SEO, analytics, and marketing plugins that create client-side cookies.
- Update plugins and review cookie settings exposed in their dashboards.
- Verify reverse proxy or HTTPS detection settings in WordPress and hosting config.
Correção genérica para developers
- Set Secure on cookies delivered over HTTPS.
- Choose SameSite=Lax or SameSite=None; Secure based on the actual cross-site use case.
- Test behavior in the real production environment, not only local development.
Como confirmar que a correção funciona
- Inspect cookies again after deployment and confirm attributes changed as expected.
- Test in Chrome and another major browser to catch cross-browser differences.
- Run a fresh scan and verify the insecure-cookie finding clears.
Próximo passo
Execute uma nova análise após o deploy para confirmar que o comportamento real em runtime mudou e não apenas o texto do banner.