diff --git a/urlchecks.go b/urlchecks.go index db87614..a2272e7 100644 --- a/urlchecks.go +++ b/urlchecks.go @@ -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) {