Skip to content

Commit

Permalink
Adding more TLDs commonly used by phishers
Browse files Browse the repository at this point in the history
  • Loading branch information
botherder committed Jan 27, 2019
1 parent a19b046 commit 9514802
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion urlchecks.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func checkSuspiciousHostname(link *Link, page *Page, brands *Brands) bool {

func checkSuspiciousTLD(link *Link, page *Page, brands *Brands) bool {
suspects := []string{".ga", ".gq", ".ml", ".cf", ".tk", ".xyz", "cc", ".gb",
".info", ".biz", ".cm", ".online", ".support", ".click"}
".info", ".biz", ".cm", ".online", ".support", ".click", ".pro", ".icu",}

for _, suspect := range suspects {
if strings.HasSuffix(link.Domain, suspect) {
Expand Down

0 comments on commit 9514802

Please sign in to comment.