Replies: 1 comment
-
|
Previous discussions on this topic for reference: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Summary
Express currently enables the
X-Powered-By: Expressheader by default on all responses. This should be disabled by default in Express v6 (while allowing opt-in for applications that want it).Current Behavior
Every Express application broadcasts
X-Powered-By: Expressby default.Why This Matters
Security Concerns
Current Workaround
Every security-conscious developer must manually disable it:
Proposed Change (v6)
Disable by default:
Allow opt-in:
Breaking Change Impact
app.enable('x-powered-by')Real-World Example
Questions for the Team
References
Thoughts? Should we include this in v6 security hardening discussions?
Beta Was this translation helpful? Give feedback.
All reactions