From e24c6b544b733658aef1105319c3de9ddb58c65d Mon Sep 17 00:00:00 2001 From: Bradley Kemp Date: Thu, 6 May 2021 15:53:25 +0100 Subject: [PATCH] Add Bitly reporting form --- matchers/shared_hosting.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/matchers/shared_hosting.go b/matchers/shared_hosting.go index afc8880..74e0b9a 100644 --- a/matchers/shared_hosting.go +++ b/matchers/shared_hosting.go @@ -23,7 +23,8 @@ func IsSharedHostingProvider(u *url.URL) (bool, ProviderContact) { // Try to keep this sorted alphabetically by ProviderName var sharedHostMatchers = []matcher{ {OnlineForm{"000webhost", "https://www.000webhost.com/report-abuse"}, isSubDomainOf("000webhost.com")}, - {OnlineForm{"00webhost", "https://www.000webhost.com/report-abuse"}, isSubDomainOf("000webhostapp.com")}, + {OnlineForm{"000webhost", "https://www.000webhost.com/report-abuse"}, isSubDomainOf("000webhostapp.com")}, + {OnlineForm{"Bitly", "https://bitly.is/reporting-abuse"}, isSubDomainOf("bit.ly")}, {OnlineForm{"Blogger", "https://support.google.com/blogger/answer/76315"}, isSubDomainOf("blogger.com")}, {OnlineForm{"Blogger", "https://support.google.com/blogger/answer/76315"}, isSubDomainOf("blogspot.com")}, {OnlineForm{"Google Cloud", "https://support.google.com/code/contact/cloud_platform_report"}, isSubDomainOf("appspot.com")},