Sensitive information — session tokens, passwords, personal data — passed as URL query parameters ends up logged in browser history, server access logs, and analytics tools, and gets sent to any third party your page loads via the Referer header when a visitor clicks an outbound link.
Tokens, API keys, and passwords passed as ?token=... in a URL end up in browser history, server logs, and any analytics tool watching page views — all in plain text, all outside your control.
Sensitive data included in URL query parameters creates several genuine, distinct exposure risks beyond the immediate page it appears on — URLs frequently get logged by web servers, appear in browser history, get included in referrer headers sent to other sites when a visitor navigates away, and can even be inadvertently shared when a visitor copies and shares a URL without realizing sensitive data is embedded within it.
The genuine risk here compounds across each of these exposure points — server logs containing sensitive URL parameters represent a real data-retention risk if those logs aren't appropriately secured, referrer header leakage discussed elsewhere in this security work can transmit this sensitive data to third-party sites, and browser history represents a persistent, local record of this sensitive information on a visitor's device.
Common categories of data that shouldn't appear in URL parameters include authentication tokens, personally identifiable information, and any data whose exposure through any of these described channels could cause genuine harm or privacy violation — this data belongs in request bodies or secure headers, not in the URL itself, which is inherently more exposed across multiple systems and contexts.
Remediation requires genuinely reviewing your actual application's URL structure and identifying any instances where sensitive data currently appears in query parameters, then restructuring the relevant functionality to transmit this data through more appropriately secured channels — this may require genuine application-level changes beyond simple configuration adjustment, depending on how deeply this pattern is embedded in your existing application architecture.
No passwords or long-lived session tokens appear directly in URLs; any necessary short-lived tokens are single-use and protected by a no-referrer policy.
Fix it, then re-scan — the check confirms itself. No manual checkbox, the scan is the truth.
Run this check in H.I.V.E. →