From 8f71ba0883b8f3588582fd2e22939bb3c47dbf9d Mon Sep 17 00:00:00 2001 From: Bradley Kemp Date: Thu, 25 Mar 2021 18:00:54 +0000 Subject: [PATCH] Fix misnamed Hostinger matcher --- matchers/whois_matchers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matchers/whois_matchers.go b/matchers/whois_matchers.go index b46720b..f27a8fb 100644 --- a/matchers/whois_matchers.go +++ b/matchers/whois_matchers.go @@ -13,7 +13,7 @@ var whoisMatchers = []matcher{ {OnlineForm{"Cloudflare", "https://www.cloudflare.com/abuse/form"}, whoisContains("abuse@cloudflare.com")}, {OnlineForm{"Dynadot", "https://www.dynadot.com/report_abuse.html"}, whoisContains("abuse@dynadot.com")}, {OnlineForm{"GoDaddy", "https://supportcenter.godaddy.com/AbuseReport"}, whoisContains("abuse@godaddy.com")}, - {AbuseEmail{"GoDaddy", "abuse@hostinger.com"}, whoisContains("netname: HOSTING-SERVERS")}, + {AbuseEmail{"Hostinger", "abuse@hostinger.com"}, whoisContains("netname: HOSTING-SERVERS")}, {OnlineForm{"Namecheap", "https://support.namecheap.com/index.php?/Tickets/Submit"}, whoisContains("abuse@namecheap.com")}, {OnlineForm{"Namesilo", "https://www.namesilo.com/report_abuse.php or https://new.namesilo.com/phishing_report.php"}, whoisContains("abuse@namesilo.com")}, {AbuseEmail{"OrangeWebsite", "abuse-dept@orangewebsite.com"}, whoisContains("abuse@orangewebsite.com")},