Feature #269
openFeature #235: [Security Audit Round 2 ]
[Security Audit Round 2 ] Security headers are not Implemented (Repeted)
0%
Description
Security headers are not Implemented
observation : Repeated
CWE : CWE-16
Description :
Modern browsers support many HTTP headers that can improve web application
security to protect against clickjacking, cross-site scripting, and other common attacks.
Affected Path(s) :
/(WebServer)
Impact :
Client side attacks like clickjacking, XSS, history hijacking, etc may be possible if
security headers are missing in the response headers.
Evidence/Proof Of Concept :
Step 1: It was observed that Security Headers are not implemented in the Application as
shown below screenshot.
Recommendation :
It is recommended to implement following security headers with the values required for
the application. Sample configuration:
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
X-Frame-Options: deny
Content-Security-Policy: default-src 'self'
Strict-Transport-Security: max-age=63072000; includeSubDomains;
preload
Files
Updated by Harish Beechani 12 months ago
- Status changed from In Progress to Resolved
Updated by Harish Beechani 12 months ago
- Assignee changed from Vasudev Mamidi to Harish Beechani
Updated by Harish Beechani 11 months ago
- Status changed from Resolved to Ready for Prod