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

Prevent open redirects when cleanUrls config is enabled #122

Merged
merged 2 commits into from
Jun 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 8 additions & 10 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,15 +127,19 @@ const shouldRedirect = (decodedPath, {redirects = [], trailingSlash}, cleanUrl)
return null;
}

let cleanedUrl = false;

// By stripping the HTML parts from the decoded
// path *before* handling the trailing slash, we make
// sure that only *one* redirect occurs if both
// config options are used.
if (cleanUrl && matchHTML.test(decodedPath)) {
decodedPath = decodedPath.replace(matchHTML, '');
cleanedUrl = true;
if (decodedPath.indexOf('//') > -1) {
decodedPath = decodedPath.replace(/\/+/g, '/');
}
return {
target: ensureSlashStart(decodedPath),
statusCode: defaultType
};
}

if (slashing) {
Expand Down Expand Up @@ -163,13 +167,6 @@ const shouldRedirect = (decodedPath, {redirects = [], trailingSlash}, cleanUrl)
}
}

if (cleanedUrl) {
return {
target: ensureSlashStart(decodedPath),
statusCode: defaultType
};
}

// This is currently the fastest way to
// iterate over an array
for (let index = 0; index < redirects.length; index++) {
Expand Down Expand Up @@ -412,6 +409,7 @@ const renderDirectory = async (current, acceptsJSON, handlers, methods, config,
return 1;
}

/* istanbul ignore next */
if (a.base < b.base) {
return -1;
}
Expand Down
14 changes: 14 additions & 0 deletions test/integration.js
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,20 @@ test('set `trailingSlash` config property to `false`', async t => {
t.is(location, target);
});

test('set `cleanUrls` config property should prevent open redirects', async t => {
const url = await getUrl({
cleanUrls: true
});

const response = await fetch(`${url}//haveibeenpwned.com/index`, {
redirect: 'manual',
follow: 0
});

const location = response.headers.get('location');
t.is(location, `${url}/haveibeenpwned.com`);
});

test('set `rewrites` config property to wildcard path', async t => {
const destination = '.dotfile';
const related = path.join(fixturesFull, destination);
Expand Down