Skip to content

Commit e47b7e4

Browse files
authored
fix: break up greedy host fragment parsing regex (#274)
It's easier to reason about each step this way, and also not susceptible to redos.
1 parent 9b07068 commit e47b7e4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lib/hosts.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44

55
const maybeJoin = (...args) => args.every(arg => arg) ? args.join('') : ''
66
const maybeEncode = (arg) => arg ? encodeURIComponent(arg) : ''
7-
const formatHashFragment = (f) => f.toLowerCase().replace(/^\W+|\/|\W+$/g, '').replace(/\W+/g, '-')
7+
const formatHashFragment = (f) => f.toLowerCase()
8+
.replace(/^\W+/g, '') // strip leading non-characters
9+
.replace(/\W+$/g, '') // strip trailing non-characters
10+
.replace(/\//g, '') // strip all slashes
11+
.replace(/\W+/g, '-') // replace remaining non-characters with '-'
812

913
const defaults = {
1014
sshtemplate: ({ domain, user, project, committish }) =>

0 commit comments

Comments
 (0)