forked from svrjs/svrjs
Moved invalid X-Forwader-For header handler
This commit is contained in:
parent
61b0d6ad9c
commit
5ba3d8f2b3
1 changed files with 7 additions and 7 deletions
14
svr.js
14
svr.js
|
@ -4032,6 +4032,13 @@ if (!cluster.isPrimary) {
|
|||
return;
|
||||
}
|
||||
|
||||
// Check for invalid X-Forwarded-For header
|
||||
if(!isForwardedValid) {
|
||||
serverconsole.errmessage("X-Forwarded-For header is invalid.");
|
||||
callServerError(400);
|
||||
return;
|
||||
}
|
||||
|
||||
// Sanitize URL
|
||||
var sanitizedHref = sanitizeURL(href);
|
||||
|
||||
|
@ -4068,13 +4075,6 @@ if (!cluster.isPrimary) {
|
|||
return;
|
||||
}
|
||||
}
|
||||
|
||||
// Check for invalid X-Forwarded-For header
|
||||
if(!isForwardedValid) {
|
||||
serverconsole.errmessage("X-Forwarded-For header is invalid.");
|
||||
callServerError(400);
|
||||
return;
|
||||
}
|
||||
|
||||
// Handle redirects to HTTPS
|
||||
if(secure && !fromMain && !disableNonEncryptedServer && !disableToHTTPSRedirect) {
|
||||
|
|
Reference in a new issue