fix: url encode space

- Closes #11
This commit is contained in:
MDLeom 2022-01-02 01:10:57 +00:00
parent f23f3e5b5e
commit ac81d8394e
No known key found for this signature in database
GPG Key ID: 32D3E28E96A695E8
1 changed files with 3 additions and 1 deletions

View File

@ -109,7 +109,9 @@ cat "phishing-domains.txt" | \
grep -F -vf "phishing-top-domains.txt" > "phishing-notop-domains-temp.txt"
cat "phishing.txt" | \
grep -F -f "phishing-top-domains.txt" > "phishing-url-top-domains-temp.txt"
grep -F -f "phishing-top-domains.txt" | \
# url encode space #11
sed "s/ /%20/g" > "phishing-url-top-domains-temp.txt"
rm -f "phishing-url-top-domains.txt" "phishing-url-top-domains-raw.txt"