Skip to content
Vol. 1 · Ed. 2026
CyberGlossary
Entry № 911

Referrer Policy

What is Referrer Policy?

Referrer PolicyHTTP response header (or meta tag) that controls how much of the originating URL the browser shares in the Referer header on outgoing requests.


The Referrer-Policy header lets a site limit the information leaked in the Referer header when users click links, load subresources, or trigger navigations. Without restriction, full URLs (including query parameters containing tokens, IDs, or PII) can flow to third-party servers, analytics, and ad networks. Values range from no-referrer (send nothing) to strict-origin-when-cross-origin (send origin only across origins) and unsafe-url (send the full URL). The current Chromium and Firefox default is strict-origin-when-cross-origin. Setting an explicit, restrictive policy is a low-cost privacy and data-leakage control.

Examples

  1. 01

    Referrer-Policy: strict-origin-when-cross-origin

  2. 02

    Removing session tokens leaked through Referer headers to embedded ad scripts.

Frequently asked questions

What is Referrer Policy?

HTTP response header (or meta tag) that controls how much of the originating URL the browser shares in the Referer header on outgoing requests. It belongs to the Application Security category of cybersecurity.

What does Referrer Policy mean?

HTTP response header (or meta tag) that controls how much of the originating URL the browser shares in the Referer header on outgoing requests.

How does Referrer Policy work?

The Referrer-Policy header lets a site limit the information leaked in the Referer header when users click links, load subresources, or trigger navigations. Without restriction, full URLs (including query parameters containing tokens, IDs, or PII) can flow to third-party servers, analytics, and ad networks. Values range from no-referrer (send nothing) to strict-origin-when-cross-origin (send origin only across origins) and unsafe-url (send the full URL). The current Chromium and Firefox default is strict-origin-when-cross-origin. Setting an explicit, restrictive policy is a low-cost privacy and data-leakage control.

How do you defend against Referrer Policy?

Defences for Referrer Policy typically combine technical controls and operational practices, as detailed in the full definition above.

Related terms