Fix displayed hyperlinks

Fixes sherlock-project/sherlock#2102
This commit is contained in:
Paul Pfeister 2024-05-07 02:17:40 -04:00
parent f5796c24b3
commit 2ff115fb4c
1 changed files with 1 additions and 1 deletions

View File

@ -240,7 +240,7 @@ def sherlock(
headers.update(net_info["headers"])
# URL of user on site (if it exists)
url = interpolate_string(net_info["url"], username)
url = interpolate_string(net_info["url"], username.replace(' ', '%20'))
# Don't make request if username is invalid for the site
regex_check = net_info.get("regexCheck")