You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The dict keys in match.py are being interpreted as regex, the string: "c:\windows\system32\drivers\hosts" has the \w that is causing the error.
I fixed it by just replacing line 61 of dotdotslash.py from: fullrewrite = re.sub(arguments.string, rewrite, arguments.url)
to: fullrewrite = arguments.url.replace(arguments.string, rewrite)
The text was updated successfully, but these errors were encountered: