Security Vulnerabilities Guide
Understanding and fixing common web security vulnerabilities detected by VitaPulse
Low
Permissions-PolicyControls which browser features and APIs (camera, microphone, geolocation, etc.) can be used by your site and embedded content.
Risk
Without this header, any iframe embedded on your page (ads, widgets, third-party scripts) can request access to sensitive browser APIs like geolocation, camera, or microphone. Malicious or compromised third-party content could abuse these permissions without your knowledge.
Solution
Define a Permissions-Policy that disables features you don't use and restricts others to your own origin. Only enable what your application actually needs.
Example
Permissions-Policy: camera=(), microphone=(), geolocation=(self), payment=(self) Comments (0)
Sign in to post a comment.