From 28b762a598a881c18efd9f6bb0cadc0760b49473 Mon Sep 17 00:00:00 2001 From: Sofiane Louchene Date: Mon, 24 Oct 2022 00:07:44 +0200 Subject: [PATCH 01/18] fix: add Spotify to work again --- removed_sites.json | 7 ------- removed_sites.md | 13 ------------- sherlock/resources/data.json | 12 +++++++++++- 3 files changed, 11 insertions(+), 21 deletions(-) diff --git a/removed_sites.json b/removed_sites.json index d8b953ca..45e24292 100644 --- a/removed_sites.json +++ b/removed_sites.json @@ -658,13 +658,6 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, - "Spotify": { - "errorType": "status_code", - "url": "https://open.spotify.com/user/{}", - "urlMain": "https://open.spotify.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, "Steam": { "errorMsg": "The specified profile could not be found", "errorType": "message", diff --git a/removed_sites.md b/removed_sites.md index bc91236c..f9665d80 100644 --- a/removed_sites.md +++ b/removed_sites.md @@ -1345,19 +1345,6 @@ As og 2022-05-01, Countable returns false positives }, ``` -## Spotify - -As og 2022-05-01, Spotify returns false positives -```json - "Spotify": { - "errorType": "status_code", - "url": "https://open.spotify.com/user/{}", - "urlMain": "https://open.spotify.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, -``` - ## Steam As og 2022-05-01, Steam returns false positives diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json index 8cc82b85..6f3fb7ab 100644 --- a/sherlock/resources/data.json +++ b/sherlock/resources/data.json @@ -2871,5 +2871,15 @@ "urlMain": "https://www.youtube.com", "username_claimed": "pewdiepie", "username_unclaimed": "noonewouldeverusethis7" + }, + "Spotify": { + "errorType": "status_code", + "headers": { + "user-agent": "PostmanRuntime/7.29.2" + }, + "url": "https://open.spotify.com/user/{}", + "urlMain": "https://open.spotify.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" } -} +} \ No newline at end of file From d3460a8738c85f0afbff41225f690b14ea83a5d5 Mon Sep 17 00:00:00 2001 From: Rhythm Bansal Date: Wed, 26 Oct 2022 13:51:13 +0530 Subject: [PATCH 02/18] fixed typos for CAPTCHA --- removed_sites.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/removed_sites.md b/removed_sites.md index bc91236c..3be680be 100644 --- a/removed_sites.md +++ b/removed_sites.md @@ -700,7 +700,7 @@ If an alternative way to check for usernames is found then it will added. ``` ## YandexCollection -As of 2020-08-11, YandexCollection presents us with a rechapta which prevents us from checking for usernames +As of 2020-08-11, YandexCollection presents us with a recaptcha which prevents us from checking for usernames ```json "YandexCollection": { "errorType": "status_code", @@ -1024,7 +1024,7 @@ As of 2021-06-27, GDProfiles takes way too long to respond. Must be an issue on ## AllTrails -As of 2021-06-27, AllTrails has a chapta which prevents us from checking for usernames on the site. +As of 2021-06-27, AllTrails has a captcha which prevents us from checking for usernames on the site. ```json "AllTrails": { "errorMsg": "class=\"home index\"", @@ -1082,7 +1082,7 @@ As of 2021-06-27, Kali Community requires us to be logged in order to check if a ## NameMC -As of 2021-06-27, NameMC uses chapta through CloudFlare which prevents us from checking if usernames exists on the site. +As of 2021-06-27, NameMC uses captcha through CloudFlare which prevents us from checking if usernames exists on the site. ```json "NameMC (Minecraft.net skins)": { @@ -1097,7 +1097,7 @@ As of 2021-06-27, NameMC uses chapta through CloudFlare which prevents us from c ## SteamID -As of 2021-06-27, Steam uses chapta through CloudFlare which prevents us from checking if usernames exists on the site. +As of 2021-06-27, Steam uses captcha through CloudFlare which prevents us from checking if usernames exists on the site. ```json "Steamid": { "errorMsg": "", From cefffe0ec9b7ac30bdebb12161c3d2946dd35ce3 Mon Sep 17 00:00:00 2001 From: Suman Paik Date: Tue, 22 Nov 2022 11:18:05 +0530 Subject: [PATCH 03/18] Changed a few sentences in Docker Notes. For better understanding, I changed a few lines in the README.md file. --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c308929f..644186ee 100644 --- a/README.md +++ b/README.md @@ -133,9 +133,11 @@ Use the following command to access the saved results: docker run --rm -t -v "$PWD/results:/opt/sherlock/results" mysherlock-image -o /opt/sherlock/results/text.txt user123 ``` -The ```-v "$PWD/results:/opt/sherlock/results"``` options tell docker to create (or use) the folder `results` in the + + +Docker is instructed to create (or use) the folder `results` in the current working directory and to mount it at `/opt/sherlock/results` on the docker container by using the ```-v "$PWD/results:/opt/sherlock/results"``` options. `Sherlock` is instructed to export the result using the `-o /opt/sherlock/results/text.txt` option. Or you can use "Docker Hub" to run `sherlock`: ``` From f6526e3ce043954ace440788738e65e2362102d0 Mon Sep 17 00:00:00 2001 From: Antoine Bedaton Date: Wed, 23 Nov 2022 01:10:23 +0100 Subject: [PATCH 04/18] Added missing parameter in documentation --- sherlock/sites.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sherlock/sites.py b/sherlock/sites.py index 90c6d11b..1d096280 100644 --- a/sherlock/sites.py +++ b/sherlock/sites.py @@ -40,6 +40,7 @@ class SiteInformation: be needed by the detection method, but it is only recorded in this object for future use. + is_nsfw -- Boolean indicating if site is Not Safe For Work. Return Value: Nothing. From 3e8b8beec4920eee167caaf037983d770b0d3374 Mon Sep 17 00:00:00 2001 From: r3g_5z Date: Sun, 18 Dec 2022 17:22:13 -0500 Subject: [PATCH 05/18] Remove mastodon.technology Signed-off-by: r3g_5z --- removed_sites.json | 7 +++++++ removed_sites.md | 13 +++++++++++++ sherlock/resources/data.json | 7 ------- sites.md | 1 - 4 files changed, 20 insertions(+), 8 deletions(-) diff --git a/removed_sites.json b/removed_sites.json index d8b953ca..68fa162e 100644 --- a/removed_sites.json +++ b/removed_sites.json @@ -784,5 +784,12 @@ "urlMain": "https://g.dev/", "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" + }, + "mastodon.technology": { + "errorType": "status_code", + "url": "https://mastodon.technology/@{}", + "urlMain": "https://mastodon.xyz/", + "username_claimed": "ashfurrow", + "username_unclaimed": "noonewouldeverusethis7" } } diff --git a/removed_sites.md b/removed_sites.md index bc91236c..0fe1991c 100644 --- a/removed_sites.md +++ b/removed_sites.md @@ -1565,3 +1565,16 @@ As of 09.10.2022, Google Developer returns false positives. The site is dynamic "username_unclaimed": "noonewouldeverusethis7" }, ``` + +## mastodon.technology +As of 18.12.2022, mastodon.technology has no A/AAAA records and the [website was shut down by the owner](https://ashfurrow.com/blog/mastodon-technology-shutdown/). + +```json + "mastodon.technology": { + "errorType": "status_code", + "url": "https://mastodon.technology/@{}", + "urlMain": "https://mastodon.xyz/", + "username_claimed": "ashfurrow", + "username_unclaimed": "noonewouldeverusethis7" + }, +``` \ No newline at end of file diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json index 8cc82b85..d2174be8 100644 --- a/sherlock/resources/data.json +++ b/sherlock/resources/data.json @@ -2620,13 +2620,6 @@ "username_claimed": "Gargron", "username_unclaimed": "noonewouldeverusethis7" }, - "mastodon.technology": { - "errorType": "status_code", - "url": "https://mastodon.technology/@{}", - "urlMain": "https://mastodon.xyz/", - "username_claimed": "ashfurrow", - "username_unclaimed": "noonewouldeverusethis7" - }, "mastodon.xyz": { "errorType": "status_code", "url": "https://mastodon.xyz/@{}", diff --git a/sites.md b/sites.md index 9805122d..43c512b2 100644 --- a/sites.md +++ b/sites.md @@ -338,7 +338,6 @@ 1. ![](https://www.google.com/s2/favicons?domain=https://www.livelib.ru/) [livelib](https://www.livelib.ru/) 1. ![](https://www.google.com/s2/favicons?domain=https://mastodon.cloud/) [mastodon.cloud](https://mastodon.cloud/) 1. ![](https://www.google.com/s2/favicons?domain=https://chaos.social/) [mastodon.social](https://chaos.social/) -1. ![](https://www.google.com/s2/favicons?domain=https://mastodon.xyz/) [mastodon.technology](https://mastodon.xyz/) 1. ![](https://www.google.com/s2/favicons?domain=https://mastodon.xyz/) [mastodon.xyz](https://mastodon.xyz/) 1. ![](https://www.google.com/s2/favicons?domain=https://www.mercadolivre.com.br) [mercadolivre](https://www.mercadolivre.com.br) 1. ![](https://www.google.com/s2/favicons?domain=https://www.metacritic.com/) [metacritic](https://www.metacritic.com/) From b98739e787fa633fc168046d5929444aeab659c7 Mon Sep 17 00:00:00 2001 From: orionkendrick <101196816+orionkendrick@users.noreply.github.com> Date: Fri, 23 Dec 2022 12:28:28 -0600 Subject: [PATCH 06/18] add browse functionality --- sherlock/sherlock.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sherlock/sherlock.py b/sherlock/sherlock.py index 4ac9d9f1..ffec1aed 100644 --- a/sherlock/sherlock.py +++ b/sherlock/sherlock.py @@ -664,7 +664,8 @@ def main(): # Create notify object for query results. query_notify = QueryNotifyPrint(result=None, verbose=args.verbose, - print_all=args.print_all) + print_all=args.print_all, + browse=args.browse) # Run report on all specified users. From e6eef99e09f801c95a9a893c6e0248d7002c0524 Mon Sep 17 00:00:00 2001 From: orionkendrick <101196816+orionkendrick@users.noreply.github.com> Date: Fri, 23 Dec 2022 12:29:37 -0600 Subject: [PATCH 07/18] added browse functionality to notify.py --- sherlock/notify.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/sherlock/notify.py b/sherlock/notify.py index be41dbe6..b6890386 100644 --- a/sherlock/notify.py +++ b/sherlock/notify.py @@ -5,6 +5,7 @@ results of queries. """ from result import QueryStatus from colorama import Fore, Style +import webbrowser globvar = 0 # global variable to count the number of results. class QueryNotify: @@ -109,7 +110,7 @@ class QueryNotifyPrint(QueryNotify): Query notify class that prints results. """ - def __init__(self, result=None, verbose=False, print_all=False): + def __init__(self, result=None, verbose=False, print_all=False, browse=False): """Create Query Notify Print Object. Contains information about a specific method of notifying the results @@ -121,6 +122,7 @@ class QueryNotifyPrint(QueryNotify): results for this query. verbose -- Boolean indicating whether to give verbose output. print_all -- Boolean indicating whether to only print all sites, including not found. + browse -- Boolean indicating whether to open found sites in a web browser. Return Value: Nothing. @@ -129,6 +131,7 @@ class QueryNotifyPrint(QueryNotify): super().__init__(result) self.verbose = verbose self.print_all = print_all + self.browse = browse return @@ -227,7 +230,9 @@ class QueryNotifyPrint(QueryNotify): Fore.GREEN + f" {self.result.site_name}: " + Style.RESET_ALL + - f"{self.result.site_url_user}") + f"{self.result.site_url_user}") + if self.browse: + webbrowser.open(self.result.site_url_user,2) elif result.status == QueryStatus.AVAILABLE: if self.print_all: From 27c43be25b4f188f0bd7ef9b3e6d0d96424f41ba Mon Sep 17 00:00:00 2001 From: Siddharth Dushantha Date: Wed, 28 Dec 2022 11:30:58 +0100 Subject: [PATCH 08/18] dropped python 3.6 for worflows --- .github/workflows/main.yml | 2 +- .github/workflows/nightly.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 35df8204..f7acf9a2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8] + python-version: [3.7, 3.8] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 6bb5869d..ab2f1c4a 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6] + python-version: [3.8] steps: - uses: actions/checkout@v2 From 0e8c5b0d310d98a733308811cf5567b6270fd3e3 Mon Sep 17 00:00:00 2001 From: a-r-r-o-w Date: Mon, 2 Jan 2023 18:05:37 +0530 Subject: [PATCH 09/18] feat: add support for monkeytype --- sherlock/resources/data.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json index d2174be8..5c2619ad 100644 --- a/sherlock/resources/data.json +++ b/sherlock/resources/data.json @@ -1299,6 +1299,13 @@ "username_claimed": "jenny", "username_unclaimed": "noonewouldeverusethis7" }, + "Monkeytype": { + "errorType": "status_code", + "url": "https://api.monkeytype.com/users/{}/profile", + "urlMain": "https://monkeytype.com/", + "username_claimed": "Lost_Arrow", + "username_unclaimed": "noonewouldeverusethis7" + }, "Motorradfrage": { "errorType": "status_code", "url": "https://www.motorradfrage.net/nutzer/{}", From 047783ac7aea4288397310c12ecb5ea06c43ab33 Mon Sep 17 00:00:00 2001 From: a-r-r-o-w Date: Wed, 11 Jan 2023 18:22:58 +0530 Subject: [PATCH 10/18] use urlProbe param for detection --- sherlock/resources/data.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json index 5c2619ad..f3c1fd4d 100644 --- a/sherlock/resources/data.json +++ b/sherlock/resources/data.json @@ -1301,8 +1301,9 @@ }, "Monkeytype": { "errorType": "status_code", - "url": "https://api.monkeytype.com/users/{}/profile", + "url": "https://monkeytype.com/profile/{}", "urlMain": "https://monkeytype.com/", + "urlProbe": "https://api.monkeytype.com/users/{}/profile", "username_claimed": "Lost_Arrow", "username_unclaimed": "noonewouldeverusethis7" }, From 0c85d167ad73ddd61c0575bb770897d4a4b782b0 Mon Sep 17 00:00:00 2001 From: a-r-r-o-w Date: Wed, 11 Jan 2023 18:29:46 +0530 Subject: [PATCH 11/18] feat: add support for removed site codeforces --- sherlock/resources/data.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json index d2174be8..7206196b 100644 --- a/sherlock/resources/data.json +++ b/sherlock/resources/data.json @@ -445,6 +445,14 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Codeforces": { + "errorType": "status_code", + "url": "https://codeforces.com/profile/{}", + "urlMain": "https://codeforces.com/", + "urlProbe": "https://codeforces.com/api/user.info?handles={}", + "username_claimed": "tourist", + "username_unclaimed": "noonewouldeverusethis7" + }, "Codepen": { "errorType": "status_code", "url": "https://codepen.io/{}", From 4ba460f906407cdb14773b34ba192e6dc4f68599 Mon Sep 17 00:00:00 2001 From: Siddharth Dushantha Date: Sat, 4 Feb 2023 17:22:29 +0100 Subject: [PATCH 12/18] fixed Strava false positive --- sherlock/resources/data.json | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json index d2174be8..e189b7e6 100644 --- a/sherlock/resources/data.json +++ b/sherlock/resources/data.json @@ -1914,7 +1914,7 @@ "username_unclaimed": "noonewouldeverusethis7" }, "Strava": { - "errorMsg": "Strava | Run and Cycling Tracking on the Social Network for Athletes", + "errorMsg": "Strava | Running, Cycling & Hiking App - Train, Track & Share", "errorType": "message", "url": "https://www.strava.com/athletes/{}", "urlMain": "https://www.strava.com/", @@ -2562,7 +2562,7 @@ "username_unclaimed": "noonewouldeverusethis77777" }, "koo": { - "errorMsg": "is available", + "errorMsg": "This profile does not exist", "errorType": "message", "url": "https://www.kooapp.com/profile/{}", "urlMain": "https://www.kooapp.com", @@ -2620,6 +2620,13 @@ "username_claimed": "Gargron", "username_unclaimed": "noonewouldeverusethis7" }, + "mastodon.technology": { + "errorType": "status_code", + "url": "https://mastodon.technology/@{}", + "urlMain": "https://mastodon.xyz/", + "username_claimed": "ashfurrow", + "username_unclaimed": "noonewouldeverusethis7" + }, "mastodon.xyz": { "errorType": "status_code", "url": "https://mastodon.xyz/@{}", From 22efda96705e3791ff28729f7a570eeb3ea998ab Mon Sep 17 00:00:00 2001 From: Siddharth Dushantha Date: Sat, 4 Feb 2023 17:32:33 +0100 Subject: [PATCH 13/18] Fixed Dailykos false positive --- sherlock/resources/data.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json index e189b7e6..dcdf3a01 100644 --- a/sherlock/resources/data.json +++ b/sherlock/resources/data.json @@ -2375,9 +2375,11 @@ "username_unclaimed": "noonewouldeverusethis7" }, "dailykos": { - "errorType": "status_code", + "errorType": "message", + "errorMsg": "{\"result\":true,\"message\":null}", "url": "https://www.dailykos.com/user/{}", "urlMain": "https://www.dailykos.com", + "urlProbe": "https://www.dailykos.com/signup/check_nickname?nickname={}", "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, From 146c962d9c9b2b0e277a757314d1ae9995ad3964 Mon Sep 17 00:00:00 2001 From: Siddharth Dushantha Date: Sat, 4 Feb 2023 17:36:21 +0100 Subject: [PATCH 14/18] fixe Koo false positive --- sherlock/resources/data.json | 1 - 1 file changed, 1 deletion(-) diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json index dcdf3a01..497b68bd 100644 --- a/sherlock/resources/data.json +++ b/sherlock/resources/data.json @@ -2568,7 +2568,6 @@ "errorType": "message", "url": "https://www.kooapp.com/profile/{}", "urlMain": "https://www.kooapp.com", - "urlProbe": "https://www.kooapp.com/apiV1/users/handle/{}/valid", "username_claimed": "john", "username_unclaimed": "noonewouldeverusethis7" }, From d426f39d49fac2ff96725328f185826dbb4ac542 Mon Sep 17 00:00:00 2001 From: Siddharth Dushantha Date: Sat, 4 Feb 2023 17:50:38 +0100 Subject: [PATCH 15/18] removed Arduino due to false positives --- removed_sites.json | 9 +++++++++ removed_sites.md | 17 +++++++++++++++++ sherlock/resources/data.json | 8 -------- 3 files changed, 26 insertions(+), 8 deletions(-) diff --git a/removed_sites.json b/removed_sites.json index 68fa162e..46d01507 100644 --- a/removed_sites.json +++ b/removed_sites.json @@ -791,5 +791,14 @@ "urlMain": "https://mastodon.xyz/", "username_claimed": "ashfurrow", "username_unclaimed": "noonewouldeverusethis7" + }, + "Arduino": { + "errorMsg":"Arduino Cloud", + "errorType": "message", + "regexCheck": "^(?![_-])[A-Za-z0-9_-]{3,}$", + "url": "https://projecthub.arduino.cc/{}", + "urlMain": "https://www.arduino.cc/", + "username_claimed": "blue", + "username_unclaimed": "noonewould" } } diff --git a/removed_sites.md b/removed_sites.md index 0fe1991c..827de9d3 100644 --- a/removed_sites.md +++ b/removed_sites.md @@ -1577,4 +1577,21 @@ As of 18.12.2022, mastodon.technology has no A/AAAA records and the [website was "username_claimed": "ashfurrow", "username_unclaimed": "noonewouldeverusethis7" }, +``` + + +## Aruino +As of 04.02.2023, Arduino returns false positives. Finding a fix is doable but takes some time. Will be fixed later + +```json +"Arduino": { + "errorMsg":"Arduino Cloud", + "errorType": "message", + "regexCheck": "^(?![_-])[A-Za-z0-9_-]{3,}$", + "url": "https://projecthub.arduino.cc/{}", + "urlMain": "https://www.arduino.cc/", + "username_claimed": "blue", + "username_unclaimed": "noonewould" + }, + ``` \ No newline at end of file diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json index 497b68bd..c1b9e5a3 100644 --- a/sherlock/resources/data.json +++ b/sherlock/resources/data.json @@ -119,14 +119,6 @@ "username_claimed": "blue", "username_unclaimed": "noonewould" }, - "Arduino": { - "errorType": "status_code", - "regexCheck": "^(?![_-])[A-Za-z0-9_-]{3,}$", - "url": "https://create.arduino.cc/projecthub/{}", - "urlMain": "https://www.arduino.cc/", - "username_claimed": "blue", - "username_unclaimed": "noonewould" - }, "ArtStation": { "errorType": "status_code", "url": "https://www.artstation.com/{}", From 5e5b742c124f4e688665418aec388cb56fe2d292 Mon Sep 17 00:00:00 2001 From: Siddharth Dushantha Date: Sat, 4 Feb 2023 17:55:37 +0100 Subject: [PATCH 16/18] fixed TrashBoxRU false positive --- sherlock/resources/data.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json index c1b9e5a3..24bd74f1 100644 --- a/sherlock/resources/data.json +++ b/sherlock/resources/data.json @@ -2010,8 +2010,7 @@ "username_unclaimed": "noonewouldeverusethis7" }, "TrashboxRU": { - "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", - "errorType": "message", + "errorType": "status_code", "regexCheck": "^[A-Za-z0-9_-]{3,16}$", "url": "https://trashbox.ru/users/{}", "urlMain": "https://trashbox.ru/", From db6b0ddb6d34d28c2449ee56634c4330f32667f3 Mon Sep 17 00:00:00 2001 From: Siddharth Dushantha Date: Sat, 4 Feb 2023 17:57:58 +0100 Subject: [PATCH 17/18] removed Zoomit due to false postives --- removed_sites.json | 8 ++++++++ removed_sites.md | 13 +++++++++++++ sherlock/resources/data.json | 8 -------- 3 files changed, 21 insertions(+), 8 deletions(-) diff --git a/removed_sites.json b/removed_sites.json index 46d01507..f8c6ad90 100644 --- a/removed_sites.json +++ b/removed_sites.json @@ -800,5 +800,13 @@ "urlMain": "https://www.arduino.cc/", "username_claimed": "blue", "username_unclaimed": "noonewould" + }, + "zoomit": { + "errorMsg": "\u0645\u062a\u0627\u0633\u0641\u0627\u0646\u0647 \u0635\u0641\u062d\u0647 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f", + "errorType": "message", + "url": "https://www.zoomit.ir/user/{}", + "urlMain": "https://www.zoomit.ir", + "username_claimed": "kossher", + "username_unclaimed": "noonewouldeverusethis7" } } diff --git a/removed_sites.md b/removed_sites.md index 827de9d3..16f147ac 100644 --- a/removed_sites.md +++ b/removed_sites.md @@ -1594,4 +1594,17 @@ As of 04.02.2023, Arduino returns false positives. Finding a fix is doable but t "username_unclaimed": "noonewould" }, +``` + +## Zoomit +As of 04.02.2023, Zoomit return false positves. An attempt at finding a fix was made but a lot of time was used without luck. Therefore, it wont be prioritized at the moment. +```json + "zoomit": { + "errorMsg": "\u0645\u062a\u0627\u0633\u0641\u0627\u0646\u0647 \u0635\u0641\u062d\u0647 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f", + "errorType": "message", + "url": "https://www.zoomit.ir/user/{}", + "urlMain": "https://www.zoomit.ir", + "username_claimed": "kossher", + "username_unclaimed": "noonewouldeverusethis7" + }, ``` \ No newline at end of file diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json index 24bd74f1..03a020b4 100644 --- a/sherlock/resources/data.json +++ b/sherlock/resources/data.json @@ -2834,14 +2834,6 @@ "username_claimed": "janusz-nowak", "username_unclaimed": "kto-by-sie-tak-nazwal-69" }, - "zoomit": { - "errorMsg": "\u0645\u062a\u0627\u0633\u0641\u0627\u0646\u0647 \u0635\u0641\u062d\u0647 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f", - "errorType": "message", - "url": "https://www.zoomit.ir/user/{}", - "urlMain": "https://www.zoomit.ir", - "username_claimed": "kossher", - "username_unclaimed": "noonewouldeverusethis7" - }, "Youtube Channel": { "errorType": "status_code", "errorCode": 404, From 2773c6081cc39f5390b8933d5013694ee7654ef1 Mon Sep 17 00:00:00 2001 From: Siddharth Dushantha Date: Sat, 4 Feb 2023 18:01:44 +0100 Subject: [PATCH 18/18] removed Facebook due to false positives --- removed_sites.json | 9 +++++++++ removed_sites.md | 14 ++++++++++++++ sherlock/resources/data.json | 9 --------- 3 files changed, 23 insertions(+), 9 deletions(-) diff --git a/removed_sites.json b/removed_sites.json index f8c6ad90..3e3b6f64 100644 --- a/removed_sites.json +++ b/removed_sites.json @@ -808,5 +808,14 @@ "urlMain": "https://www.zoomit.ir", "username_claimed": "kossher", "username_unclaimed": "noonewouldeverusethis7" + }, + "Facebook": { + "errorType": "status_code", + "regexCheck": "^[a-zA-Z0-9\\.]{3,49}(?