Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change hard-coded headernames to lowercase #386

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/security/csp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -357,9 +357,9 @@ impl ContentSecurityPolicy {
/// Sets the `Content-Security-Policy` (CSP) HTTP header to prevent cross-site injections
pub fn apply(&mut self, mut headers: impl AsMut<Headers>) {
let name = if self.report_only_flag {
"Content-Security-Policy-Report-Only"
"content-security-policy-report-only"
} else {
"Content-Security-Policy"
"content-security-policy"
};
headers.as_mut().insert(name, self.value()).unwrap();
}
Expand Down
14 changes: 7 additions & 7 deletions src/security/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ pub fn dns_prefetch_control(mut headers: impl AsMut<Headers>) {
// This will never fail, could use an unsafe version of insert.
headers
.as_mut()
.insert("X-DNS-Prefetch-Control", "on")
.insert("x-dns-prefetch-control", "on")
.unwrap();
}

Expand Down Expand Up @@ -97,7 +97,7 @@ pub fn frameguard(mut headers: impl AsMut<Headers>, guard: Option<FrameOptions>)
Some(FrameOptions::Deny) => "deny",
};
// This will never fail, could use an unsafe version of insert.
headers.as_mut().insert("X-Frame-Options", kind).unwrap();
headers.as_mut().insert("x-frame-options", kind).unwrap();
}

/// Removes the `X-Powered-By` header to make it slightly harder for attackers to see what
Expand All @@ -116,7 +116,7 @@ pub fn frameguard(mut headers: impl AsMut<Headers>, guard: Option<FrameOptions>)
// /// ```
#[inline]
pub fn powered_by(mut headers: impl AsMut<Headers>, value: Option<HeaderValue>) {
let name = HeaderName::from_lowercase_str("X-Powered-By");
let name = HeaderName::from_lowercase_str("x-powered-by");
match value {
Some(value) => {
// Can never fail as value is already a HeaderValue, could use unsafe version of insert
Expand Down Expand Up @@ -148,7 +148,7 @@ pub fn hsts(mut headers: impl AsMut<Headers>) {
// Never fails, could use unsafe version of insert
headers
.as_mut()
.insert("Strict-Transport-Security", "max-age=5184000")
.insert("strict-transport-security", "max-age=5184000")
.unwrap();
}

Expand All @@ -170,7 +170,7 @@ pub fn nosniff(mut headers: impl AsMut<Headers>) {
// Never fails, could use unsafe verison of insert.
headers
.as_mut()
.insert("X-Content-Type-Options", "nosniff")
.insert("x-content-type-options", "nosniff")
.unwrap();
}

Expand All @@ -191,7 +191,7 @@ pub fn xss_filter(mut headers: impl AsMut<Headers>) {
// Never fails, could use unsafe version of insert.
headers
.as_mut()
.insert("X-XSS-Protection", "1; mode=block")
.insert("x-xss-protection", "1; mode=block")
.unwrap();
}

Expand Down Expand Up @@ -249,5 +249,5 @@ pub fn referrer_policy(mut headers: impl AsMut<Headers>, referrer: Option<Referr
// We MUST allow for multiple Referrer-Policy headers to be set.
// See: https://w3c.github.io/webappsec-referrer-policy/#unknown-policy-values example #13
// Never fails, could use unsafe version of append.
headers.as_mut().append("Referrer-Policy", policy).unwrap();
headers.as_mut().append("referrer-policy", policy).unwrap();
}