diff --git a/README.md b/README.md
index 5aa7a434..a31d410d 100644
--- a/README.md
+++ b/README.md
@@ -69,7 +69,7 @@ usage: sherlock.py [-h] [--version] [--verbose] [--rank]
[--timeout TIMEOUT] [--print-found]
USERNAMES [USERNAMES ...]
-Sherlock: Find Usernames Across Social Networks (Version 0.10.5)
+Sherlock: Find Usernames Across Social Networks (Version 0.10.7)
positional arguments:
USERNAMES One or more usernames to check with social networks.
diff --git a/data_bad_site.json b/data_bad_site.json
index 7fc63d65..eed9f5a3 100644
--- a/data_bad_site.json
+++ b/data_bad_site.json
@@ -14,6 +14,15 @@
"url": "http://blackplanet.com/{}",
"urlMain": "http://blackplanet.com/"
},
+ "CapFriendly": {
+ "errorMsg": "No User Found",
+ "errorType": "message",
+ "rank": 64100,
+ "url": "https://www.capfriendly.com/users/{}",
+ "urlMain": "https://www.capfriendly.com/",
+ "username_claimed": "blue",
+ "username_unclaimed": "noonewouldeverusethis"
+ },
"Codementor": {
"errorType": "status_code",
"rank": 10252,
@@ -30,16 +39,6 @@
"username_claimed": "blue",
"username_unclaimed": "noonewouldeverusethis7"
},
- "Duolingo": {
- "errorType": "response_url",
- "errorUrl": "https://www.duolingo.com/errors/404.html",
- "rank": 538,
- "regexCheck": "^[a-zA-Z0-9_-]{3,16}$",
- "url": "https://www.duolingo.com/{}",
- "urlMain": "https://www.duolingo.com/",
- "username_claimed": "blue",
- "username_unclaimed": "noonewoulduse"
- },
"EVE Online": {
"errorType": "response_url",
"errorUrl": "https://eveonline.com",
@@ -63,14 +62,14 @@
"username_claimed": "dens",
"username_unclaimed": "noonewouldeverusethis7"
},
- "Furaffinity": {
- "errorMsg": "Fatal system error",
+ "furaffinity": {
+ "errorMsg": "user cannot be found",
"errorType": "message",
- "rank": 4278,
+ "rank": 0,
"url": "https://www.furaffinity.net/user/{}",
"urlMain": "https://www.furaffinity.net",
"username_claimed": "blue",
- "username_unclaimed": "noonewouldeverusethis7"
+ "username_unclaimed": "noonewouldeverusethis777777"
},
"Imgur": {
"errorType": "status_code",
@@ -166,5 +165,15 @@
"urlMain": "https://market.yandex.ru/",
"username_claimed": "blue",
"username_unclaimed": "noonewouldeverusethis7"
+ },
+ "Insanejournal": {
+ "errorMsg": "Unknown user",
+ "errorType": "message",
+ "rank": 29728,
+ "url": "http://{}.insanejournal.com/profile",
+ "urlMain": "insanejournal.com",
+ "username_claimed": "blue",
+ "username_unclaimed": "dlyr6cd"
}
}
+
diff --git a/removed_sites.md b/removed_sites.md
index 11ccdae8..4e4f7689 100644
--- a/removed_sites.md
+++ b/removed_sites.md
@@ -149,39 +149,6 @@ Usernames that don't exist are detected.
},
```
-## Furaffinity
-
-Usernames that don't exist are detected.
-
-```
- "Furaffinity": {
- "errorMsg": "Fatal system error",
- "errorType": "message",
- "rank": 4278,
- "url": "https://www.furaffinity.net/user/{}",
- "urlMain": "https://www.furaffinity.net",
- "username_claimed": "blue",
- "username_unclaimed": "noonewouldeverusethis7"
- },
-```
-
-## Duolingo
-
-Usernames that don't exist are detected.
-
-```
- "Duolingo": {
- "errorType": "response_url",
- "errorUrl": "https://www.duolingo.com/errors/404.html",
- "rank": 538,
- "regexCheck": "^[a-zA-Z0-9_-]{3,16}$",
- "url": "https://www.duolingo.com/{}",
- "urlMain": "https://www.duolingo.com/",
- "username_claimed": "blue",
- "username_unclaimed": "noonewoulduse"
- },
-```
-
## EVE Online
Usernames that exist are not detected.
@@ -340,3 +307,55 @@ Good-bye [Google Plus](https://en.wikipedia.org/wiki/Google%2B)...
"username_unclaimed": "noonewouldeverusethis7"
},
```
+
+## CapFriendly
+
+As of 2020-02-17, CapFriendly returns fake profile pages for non-existing users, what seems to distinguish between the pages is the Sign-up date, for non-existing users, the web application returns a date before 2000-01-01.
+
+```
+ "CapFriendly": {
+ "errorMsg": "No User Found",
+ "errorType": "message",
+ "rank": 64100,
+ "url": "https://www.capfriendly.com/users/{}",
+ "urlMain": "https://www.capfriendly.com/",
+ "username_claimed": "user",
+ "username_unclaimed": "noonewouldeverusethis"
+ },
+```
+
+
+## Furaffinity
+
+As of 2020-02-23, Furaffinity returns false postives because they are now using Cloudflair, which prevents Sherlock from checking if the user
+exists or not.
+
+```
+ "furaffinity": {
+ "errorMsg": "user cannot be found",
+ "errorType": "message",
+ "rank": 0,
+ "url": "https://www.furaffinity.net/user/{}",
+ "urlMain": "https://www.furaffinity.net",
+ "username_claimed": "blue",
+ "username_unclaimed": "noonewouldeverusethis777777"
+ },
+```
+
+
+## InsaneJournal
+
+As of 2020-02-23, InsaneJournal returns false positive, when providing a username which contains a period.
+Since we were not able to find the critera for a valid username, the best thing to do now is to remove it.
+
+```
+ "InsaneJournal": {
+ "errorMsg": "Unknown user",
+ "errorType": "message",
+ "rank": 29728,
+ "url": "http://{}.insanejournal.com/profile",
+ "urlMain": "insanejournal.com",
+ "username_claimed": "blue",
+ "username_unclaimed": "dlyr6cd"
+ },
+```
diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json
index ce84bfb7..aa805f96 100644
--- a/sherlock/resources/data.json
+++ b/sherlock/resources/data.json
@@ -1,7 +1,7 @@
{
"2Dimensions": {
"errorType": "status_code",
- "rank": 458966,
+ "rank": 664639,
"url": "https://2Dimensions.com/a/{}",
"urlMain": "https://2Dimensions.com/",
"username_claimed": "blue",
@@ -10,7 +10,7 @@
"3dnews": {
"errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.",
"errorType": "message",
- "rank": 8035,
+ "rank": 8089,
"url": "http://forum.3dnews.ru/member.php?username={}",
"urlMain": "http://forum.3dnews.ru/",
"username_claimed": "red",
@@ -19,7 +19,7 @@
"4pda": {
"errorMsg": "\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u0412\u0430\u0448 \u043f\u043e\u0438\u0441\u043a \u043d\u0435 \u0434\u0430\u043b \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432.",
"errorType": "message",
- "rank": 2065,
+ "rank": 2110,
"url": "https://4pda.ru/forum/index.php?act=search&source=pst&noform=1&username={}",
"urlMain": "https://4pda.ru/",
"username_claimed": "green",
@@ -28,7 +28,7 @@
"500px": {
"errorMsg": "Oops! This page doesn\u2019t exist.",
"errorType": "message",
- "rank": 2880,
+ "rank": 2996,
"url": "https://500px.com/{}",
"urlMain": "https://500px.com/",
"username_claimed": "blue",
@@ -36,7 +36,7 @@
},
"7Cups": {
"errorType": "status_code",
- "rank": 43808,
+ "rank": 45946,
"url": "https://www.7cups.com/@{}",
"urlMain": "https://www.7cups.com/",
"username_claimed": "blue",
@@ -44,7 +44,7 @@
},
"9GAG": {
"errorType": "status_code",
- "rank": 397,
+ "rank": 393,
"url": "https://9gag.com/u/{}",
"urlMain": "https://9gag.com/",
"username_claimed": "blue",
@@ -52,7 +52,7 @@
},
"About.me": {
"errorType": "status_code",
- "rank": 13818,
+ "rank": 12959,
"url": "https://about.me/{}",
"urlMain": "https://about.me/",
"username_claimed": "blue",
@@ -60,7 +60,7 @@
},
"Academia.edu": {
"errorType": "status_code",
- "rank": 189,
+ "rank": 190,
"url": "https://independent.academia.edu/{}",
"urlMain": "https://www.academia.edu/",
"username_claimed": "blue",
@@ -76,7 +76,7 @@
},
"Alik.cz": {
"errorType": "status_code",
- "rank": 560558,
+ "rank": 624805,
"url": "https://www.alik.cz/u/{}",
"urlMain": "https://www.alik.cz/",
"username_claimed": "julian",
@@ -85,7 +85,7 @@
"AllTrails": {
"errorType": "response_url",
"errorUrl": "https://alltrails.com/members",
- "rank": 10443,
+ "rank": 9888,
"url": "https://www.alltrails.com/members/{}",
"urlMain": "https://www.alltrails.com/",
"username_claimed": "blue",
@@ -93,7 +93,7 @@
},
"Anobii": {
"errorType": "response_url",
- "rank": 29950,
+ "rank": 30432,
"url": "https://www.anobii.com/{}/profile",
"urlMain": "https://www.anobii.com/",
"username_claimed": "blue",
@@ -101,7 +101,7 @@
},
"Aptoide": {
"errorType": "status_code",
- "rank": 5099,
+ "rank": 5112,
"url": "https://{}.en.aptoide.com/",
"urlMain": "https://en.aptoide.com/",
"username_claimed": "blue",
@@ -118,7 +118,7 @@
},
"Asciinema": {
"errorType": "status_code",
- "rank": 77923,
+ "rank": 80538,
"url": "https://asciinema.org/~{}",
"urlMain": "https://asciinema.org",
"username_claimed": "red",
@@ -126,7 +126,7 @@
},
"Ask Fedora": {
"errorType": "status_code",
- "rank": 28359,
+ "rank": 28474,
"url": "https://ask.fedoraproject.org/u/{}",
"urlMain": "https://ask.fedoraproject.org/",
"username_claimed": "red",
@@ -135,7 +135,8 @@
"AskFM": {
"errorMsg": "Well, apparently not anymore.",
"errorType": "message",
- "rank": 2291,
+ "rank": 2315,
+ "regexCheck": "^[a-zA-Z0-9_]{3,40}$",
"url": "https://ask.fm/{}",
"urlMain": "https://ask.fm/",
"username_claimed": "blue",
@@ -143,7 +144,7 @@
},
"Audiojungle": {
"errorType": "status_code",
- "rank": 4906,
+ "rank": 4792,
"url": "https://audiojungle.net/user/{}",
"urlMain": "https://audiojungle.net/",
"username_claimed": "blue",
@@ -152,7 +153,7 @@
"Avizo": {
"errorType": "response_url",
"errorUrl": "https://www.avizo.cz/",
- "rank": 239816,
+ "rank": 241172,
"url": "https://www.avizo.cz/{}/",
"urlMain": "https://www.avizo.cz/",
"username_claimed": "blue",
@@ -160,7 +161,7 @@
},
"BLIP.fm": {
"errorType": "status_code",
- "rank": 141291,
+ "rank": 153907,
"url": "https://blip.fm/{}",
"urlMain": "https://blip.fm/",
"username_claimed": "blue",
@@ -168,7 +169,7 @@
},
"Badoo": {
"errorType": "status_code",
- "rank": 1665,
+ "rank": 1700,
"url": "https://badoo.com/profile/{}",
"urlMain": "https://badoo.com/",
"username_claimed": "blue",
@@ -176,7 +177,7 @@
},
"Bandcamp": {
"errorType": "status_code",
- "rank": 1005,
+ "rank": 1006,
"url": "https://www.bandcamp.com/{}",
"urlMain": "https://www.bandcamp.com/",
"username_claimed": "blue",
@@ -185,7 +186,7 @@
"Basecamp": {
"errorMsg": "The account you were looking for doesn't exist",
"errorType": "message",
- "rank": 5367,
+ "rank": 4914,
"url": "https://{}.basecamphq.com",
"urlMain": "https://basecamp.com/",
"username_claimed": "blue",
@@ -194,7 +195,7 @@
"Bazar.cz": {
"errorType": "response_url",
"errorUrl": "https://www.bazar.cz/error404.aspx",
- "rank": 452872,
+ "rank": 464381,
"url": "https://www.bazar.cz/{}/",
"urlMain": "https://www.bazar.cz/",
"username_claimed": "pianina",
@@ -202,7 +203,7 @@
},
"Behance": {
"errorType": "status_code",
- "rank": 343,
+ "rank": 335,
"url": "https://www.behance.net/{}",
"urlMain": "https://www.behance.net/",
"username_claimed": "blue",
@@ -210,7 +211,7 @@
},
"BitBucket": {
"errorType": "status_code",
- "rank": 1919,
+ "rank": 2166,
"url": "https://bitbucket.org/{}/",
"urlMain": "https://bitbucket.org/",
"username_claimed": "white",
@@ -219,7 +220,7 @@
"BitCoinForum": {
"errorMsg": "The user whose profile you are trying to view does not exist.",
"errorType": "message",
- "rank": 148065,
+ "rank": 139942,
"url": "https://bitcoinforum.com/profile/{}",
"urlMain": "https://bitcoinforum.com",
"username_claimed": "bitcoinforum.com",
@@ -227,7 +228,7 @@
},
"Blogger": {
"errorType": "status_code",
- "rank": 352,
+ "rank": 348,
"regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$",
"url": "https://{}.blogspot.com",
"urlMain": "https://www.blogger.com/",
@@ -237,7 +238,7 @@
"BodyBuilding": {
"errorType": "response_url",
"errorUrl": "https://bodyspace.bodybuilding.com/",
- "rank": 2091,
+ "rank": 2104,
"url": "https://bodyspace.bodybuilding.com/{}",
"urlMain": "https://bodyspace.bodybuilding.com/",
"username_claimed": "blue",
@@ -245,7 +246,7 @@
},
"Bookcrossing": {
"errorType": "status_code",
- "rank": 45960,
+ "rank": 44743,
"url": "https://www.bookcrossing.com/mybookshelf/{}/",
"urlMain": "https://www.bookcrossing.com/",
"username_claimed": "blue",
@@ -253,7 +254,7 @@
},
"Brew": {
"errorType": "status_code",
- "rank": 611903,
+ "rank": 679130,
"url": "https://www.brew.com/{}",
"urlMain": "https://www.brew.com/",
"username_claimed": "blue",
@@ -262,7 +263,7 @@
"BuyMeACoffee": {
"errorMsg": "It returned a 404 error",
"errorType": "message",
- "rank": 24824,
+ "rank": 23804,
"url": "https://buymeacoff.ee/{}",
"urlMain": "https://www.buymeacoffee.com/",
"urlProbe": "https://www.buymeacoffee.com/{}",
@@ -271,7 +272,7 @@
},
"BuzzFeed": {
"errorType": "status_code",
- "rank": 376,
+ "rank": 380,
"url": "https://buzzfeed.com/{}",
"urlMain": "https://buzzfeed.com/",
"username_claimed": "blue",
@@ -279,7 +280,7 @@
},
"CNET": {
"errorType": "status_code",
- "rank": 130,
+ "rank": 131,
"url": "https://www.cnet.com/profiles/{}/",
"urlMain": "https://www.cnet.com/",
"username_claimed": "blue",
@@ -288,25 +289,16 @@
"Canva": {
"errorType": "response_url",
"errorUrl": "https://www.canva.com/{}",
- "rank": 123,
+ "rank": 128,
"url": "https://www.canva.com/{}",
"urlMain": "https://www.canva.com/",
"username_claimed": "jenny",
"username_unclaimed": "xgtrq"
},
- "CapFriendly": {
- "errorMsg": "No User Found",
- "errorType": "message",
- "rank": 64100,
- "url": "https://www.capfriendly.com/users/{}",
- "urlMain": "https://www.capfriendly.com/",
- "username_claimed": "blue",
- "username_unclaimed": "noonewouldeverusethis"
- },
"Carbonmade": {
"errorType": "response_url",
"errorUrl": "https://carbonmade.com/fourohfour?domain={}.carbonmade.com",
- "rank": 19777,
+ "rank": 20640,
"url": "https://{}.carbonmade.com",
"urlMain": "https://carbonmade.com/",
"username_claimed": "jenny",
@@ -323,7 +315,7 @@
"Cent": {
"errorMsg": "
Cent",
"errorType": "message",
- "rank": 282132,
+ "rank": 258938,
"url": "https://beta.cent.co/@{}",
"urlMain": "https://cent.co/",
"username_claimed": "blue",
@@ -331,7 +323,7 @@
},
"Championat": {
"errorType": "status_code",
- "rank": 1269,
+ "rank": 1223,
"url": "https://www.championat.com/user/{}",
"urlMain": "https://www.championat.com/",
"username_claimed": "blue",
@@ -340,7 +332,7 @@
"Chatujme.cz": {
"errorMsg": "Neexistujic\u00ed profil",
"errorType": "message",
- "rank": 1840782,
+ "rank": 1814774,
"url": "https://profil.chatujme.cz/{}",
"urlMain": "https://chatujme.cz/",
"username_claimed": "david",
@@ -349,7 +341,7 @@
"Chess": {
"errorMsg": "Missing page... somebody made a wrong move.",
"errorType": "message",
- "rank": 656,
+ "rank": 643,
"url": "https://www.chess.com/ru/member/{}",
"urlMain": "https://www.chess.com/ru/",
"username_claimed": "blue",
@@ -357,7 +349,7 @@
},
"Cloob": {
"errorType": "status_code",
- "rank": 8422,
+ "rank": 8353,
"url": "https://www.cloob.com/name/{}",
"urlMain": "https://www.cloob.com/",
"username_claimed": "blue",
@@ -365,7 +357,7 @@
},
"CloudflareCommunity": {
"errorType": "status_code",
- "rank": 1664,
+ "rank": 2106,
"url": "https://community.cloudflare.com/u/{}",
"urlMain": "https://community.cloudflare.com/",
"username_claimed": "blue",
@@ -373,7 +365,7 @@
},
"Clozemaster": {
"errorType": "status_code",
- "rank": 93521,
+ "rank": 87276,
"url": "https://www.clozemaster.com/players/{}",
"urlMain": "https://www.clozemaster.com",
"username_claimed": "green",
@@ -381,7 +373,7 @@
},
"Codecademy": {
"errorType": "status_code",
- "rank": 2988,
+ "rank": 2964,
"url": "https://www.codecademy.com/profiles/{}",
"urlMain": "https://www.codecademy.com/",
"username_claimed": "blue",
@@ -389,7 +381,7 @@
},
"Codechef": {
"errorType": "status_code",
- "rank": 11954,
+ "rank": 11813,
"url": "https://www.codechef.com/users/{}",
"urlMain": "https://www.codechef.com/",
"username_claimed": "blue",
@@ -398,7 +390,7 @@
"Coderwall": {
"errorMsg": "404! Our feels when that url is used",
"errorType": "message",
- "rank": 15516,
+ "rank": 16633,
"url": "https://coderwall.com/{}",
"urlMain": "https://coderwall.com/",
"username_claimed": "jenny",
@@ -406,7 +398,7 @@
},
"Codewars": {
"errorType": "status_code",
- "rank": 20927,
+ "rank": 21395,
"url": "https://www.codewars.com/users/{}",
"urlMain": "https://www.codewars.com",
"username_claimed": "example",
@@ -414,7 +406,7 @@
},
"ColourLovers": {
"errorType": "status_code",
- "rank": 19707,
+ "rank": 18798,
"url": "https://www.colourlovers.com/lover/{}",
"urlMain": "https://www.colourlovers.com/",
"username_claimed": "blue",
@@ -423,7 +415,7 @@
"Contently": {
"errorMsg": "We can't find that page!",
"errorType": "message",
- "rank": 20662,
+ "rank": 18950,
"regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$",
"url": "https://{}.contently.com/",
"urlMain": "https://contently.com/",
@@ -432,7 +424,7 @@
},
"Coroflot": {
"errorType": "status_code",
- "rank": 24651,
+ "rank": 24763,
"url": "https://www.coroflot.com/{}",
"urlMain": "https://coroflot.com/",
"username_claimed": "blue",
@@ -441,7 +433,7 @@
"Cracked": {
"errorType": "response_url",
"errorUrl": "https://www.cracked.com/",
- "rank": 3773,
+ "rank": 3835,
"url": "https://www.cracked.com/members/{}/",
"urlMain": "https://www.cracked.com/",
"username_claimed": "blue",
@@ -450,7 +442,7 @@
"CreativeMarket": {
"errorType": "response_url",
"errorUrl": "https://www.creativemarket.com/",
- "rank": 2042,
+ "rank": 2124,
"url": "https://creativemarket.com/users/{}",
"urlMain": "https://creativemarket.com/",
"username_claimed": "blue",
@@ -458,7 +450,7 @@
},
"Crevado": {
"errorType": "status_code",
- "rank": 141864,
+ "rank": 152706,
"url": "https://{}.crevado.com",
"urlMain": "https://crevado.com/",
"username_claimed": "blue",
@@ -466,7 +458,7 @@
},
"Crunchyroll": {
"errorType": "status_code",
- "rank": 444,
+ "rank": 433,
"url": "https://www.crunchyroll.com/user/{}",
"urlMain": "https://www.crunchyroll.com/",
"username_claimed": "blue",
@@ -474,7 +466,7 @@
},
"DEV Community": {
"errorType": "status_code",
- "rank": 6934,
+ "rank": 7871,
"regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$",
"url": "https://dev.to/{}",
"urlMain": "https://dev.to/",
@@ -483,7 +475,7 @@
},
"DailyMotion": {
"errorType": "status_code",
- "rank": 186,
+ "rank": 188,
"url": "https://www.dailymotion.com/{}",
"urlMain": "https://www.dailymotion.com/",
"username_claimed": "blue",
@@ -499,7 +491,7 @@
},
"DeviantART": {
"errorType": "status_code",
- "rank": 396,
+ "rank": 398,
"regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$",
"url": "https://{}.deviantart.com",
"urlMain": "https://deviantart.com",
@@ -508,7 +500,7 @@
},
"Discogs": {
"errorType": "status_code",
- "rank": 1010,
+ "rank": 991,
"url": "https://www.discogs.com/user/{}",
"urlMain": "https://www.discogs.com/",
"username_claimed": "blue",
@@ -516,7 +508,7 @@
},
"Discuss.Elastic.co": {
"errorType": "status_code",
- "rank": 8325,
+ "rank": 8649,
"url": "https://discuss.elastic.co/u/{}",
"urlMain": "https://discuss.elastic.co/",
"username_claimed": "blue",
@@ -524,7 +516,7 @@
},
"Disqus": {
"errorType": "status_code",
- "rank": 969,
+ "rank": 975,
"url": "https://disqus.com/{}",
"urlMain": "https://disqus.com/",
"username_claimed": "blue",
@@ -532,7 +524,7 @@
},
"Docker Hub": {
"errorType": "status_code",
- "rank": 3817,
+ "rank": 4062,
"url": "https://hub.docker.com/u/{}/",
"urlMain": "https://hub.docker.com/",
"urlProbe": "https://hub.docker.com/v2/users/{}/",
@@ -542,17 +534,27 @@
"Dribbble": {
"errorMsg": "Whoops, that page is gone.",
"errorType": "message",
- "rank": 1206,
+ "rank": 1294,
"regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$",
"url": "https://dribbble.com/{}",
"urlMain": "https://dribbble.com/",
"username_claimed": "blue",
"username_unclaimed": "noonewouldeverusethis7"
},
+ "Duolingo": {
+ "errorMsg": "{\"users\":[]}",
+ "errorType": "message",
+ "rank": 549,
+ "url": "https://www.duolingo.com/profile/{}",
+ "urlMain": "https://duolingo.com/",
+ "urlProbe": "https://www.duolingo.com/2017-06-30/users?username={}",
+ "username_claimed": "blue",
+ "username_unclaimed": "noonewouldeverusethis7"
+ },
"Ebay": {
"errorMsg": "The User ID you entered was not found",
"errorType": "message",
- "rank": 44,
+ "rank": 45,
"url": "https://www.ebay.com/usr/{}",
"urlMain": "https://www.ebay.com/",
"username_claimed": "blue",
@@ -561,7 +563,7 @@
"Ello": {
"errorMsg": "We couldn't find the page you're looking for",
"errorType": "message",
- "rank": 43209,
+ "rank": 43722,
"url": "https://ello.co/{}",
"urlMain": "https://ello.co/",
"username_claimed": "blue",
@@ -569,7 +571,7 @@
},
"Etsy": {
"errorType": "status_code",
- "rank": 143,
+ "rank": 146,
"url": "https://www.etsy.com/shop/{}",
"urlMain": "https://www.etsy.com/",
"username_claimed": "JennyKrafts",
@@ -578,7 +580,7 @@
"EyeEm": {
"errorType": "response_url",
"errorUrl": "https://www.eyeem.com/",
- "rank": 40415,
+ "rank": 41280,
"url": "https://www.eyeem.com/u/{}",
"urlMain": "https://www.eyeem.com/",
"username_claimed": "blue",
@@ -586,7 +588,7 @@
},
"F3.cool": {
"errorType": "status_code",
- "rank": 43185,
+ "rank": 44255,
"url": "https://f3.cool/{}/",
"urlMain": "https://f3.cool/",
"username_claimed": "blue",
@@ -594,7 +596,7 @@
},
"Facebook": {
"errorType": "status_code",
- "rank": 6,
+ "rank": 7,
"regexCheck": "^[a-zA-Z0-9\\.]{3,49}(?GPSies",
"errorType": "message",
- "rank": 104258,
+ "rank": 118891,
"url": "https://www.gpsies.com/mapUser.do?username={}",
"urlMain": "https://www.gpsies.com/",
"username_claimed": "blue",
@@ -696,7 +707,7 @@
},
"Gamespot": {
"errorType": "status_code",
- "rank": 511,
+ "rank": 535,
"url": "https://www.gamespot.com/profile/{}/",
"urlMain": "https://www.gamespot.com/",
"username_claimed": "blue",
@@ -704,7 +715,7 @@
},
"Giphy": {
"errorType": "status_code",
- "rank": 384,
+ "rank": 394,
"url": "https://giphy.com/{}",
"urlMain": "https://giphy.com/",
"username_claimed": "blue",
@@ -712,7 +723,7 @@
},
"GitHub": {
"errorType": "status_code",
- "rank": 77,
+ "rank": 72,
"regexCheck": "^[a-zA-Z0-9](?:[a-zA-Z0-9]|-(?=[a-zA-Z0-9])){0,38}$",
"url": "https://www.github.com/{}",
"urlMain": "https://www.github.com/",
@@ -722,7 +733,7 @@
"GitLab": {
"errorMsg": "[]",
"errorType": "message",
- "rank": 3377,
+ "rank": 3900,
"url": "https://gitlab.com/{}",
"urlMain": "https://gitlab.com/",
"urlProbe": "https://gitlab.com/api/v4/users?username={}",
@@ -731,7 +742,7 @@
},
"Gitee": {
"errorType": "status_code",
- "rank": 7241,
+ "rank": 7215,
"url": "https://gitee.com/{}",
"urlMain": "https://gitee.com/",
"username_claimed": "wizzer",
@@ -739,7 +750,7 @@
},
"GoodReads": {
"errorType": "status_code",
- "rank": 304,
+ "rank": 303,
"url": "https://www.goodreads.com/{}",
"urlMain": "https://www.goodreads.com/",
"username_claimed": "blue",
@@ -747,7 +758,7 @@
},
"Gravatar": {
"errorType": "status_code",
- "rank": 7288,
+ "rank": 7922,
"url": "http://en.gravatar.com/{}",
"urlMain": "http://en.gravatar.com/",
"username_claimed": "blue",
@@ -756,7 +767,7 @@
"Gumroad": {
"errorMsg": "Page not found.",
"errorType": "message",
- "rank": 5616,
+ "rank": 6086,
"url": "https://www.gumroad.com/{}",
"urlMain": "https://www.gumroad.com/",
"username_claimed": "blue",
@@ -764,7 +775,7 @@
},
"GunsAndAmmo": {
"errorType": "status_code",
- "rank": 176936,
+ "rank": 172169,
"url": "https://forums.gunsandammo.com/profile/{}",
"urlMain": "https://gunsandammo.com/",
"username_claimed": "adam",
@@ -772,7 +783,7 @@
},
"GuruShots": {
"errorType": "status_code",
- "rank": 18457,
+ "rank": 18706,
"url": "https://gurushots.com/{}/photos",
"urlMain": "https://gurushots.com/",
"username_claimed": "blue",
@@ -780,7 +791,7 @@
},
"HackTheBox": {
"errorType": "status_code",
- "rank": 38408,
+ "rank": 40152,
"url": "https://forum.hackthebox.eu/profile/{}",
"urlMain": "https://forum.hackthebox.eu/",
"username_claimed": "angar",
@@ -789,7 +800,7 @@
"HackerNews": {
"errorMsg": "No such user.",
"errorType": "message",
- "rank": 4160,
+ "rank": 4513,
"url": "https://news.ycombinator.com/user?id={}",
"urlMain": "https://news.ycombinator.com/",
"username_claimed": "blue",
@@ -798,7 +809,7 @@
"HackerOne": {
"errorMsg": "Page not found",
"errorType": "message",
- "rank": 20622,
+ "rank": 20093,
"url": "https://hackerone.com/{}",
"urlMain": "https://hackerone.com/",
"username_claimed": "blue",
@@ -807,7 +818,7 @@
"HackerRank": {
"errorMsg": "Something went wrong",
"errorType": "message",
- "rank": 3280,
+ "rank": 3222,
"url": "https://hackerrank.com/{}",
"urlMain": "https://hackerrank.com/",
"username_claimed": "satznova",
@@ -816,7 +827,8 @@
"House-Mixes.com": {
"errorMsg": "Profile Not Found",
"errorType": "message",
- "rank": 1102481,
+ "rank": 2344261,
+ "regexCheck": "^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$",
"url": "https://www.house-mixes.com/profile/{}",
"urlMain": "https://www.house-mixes.com/",
"username_claimed": "blue",
@@ -825,7 +837,7 @@
"Houzz": {
"errorMsg": "The page you requested was not found.",
"errorType": "message",
- "rank": 2022,
+ "rank": 1989,
"url": "https://houzz.com/user/{}",
"urlMain": "https://houzz.com/",
"username_claimed": "blue",
@@ -833,7 +845,7 @@
},
"HubPages": {
"errorType": "status_code",
- "rank": 3171,
+ "rank": 3121,
"url": "https://hubpages.com/@{}",
"urlMain": "https://hubpages.com/",
"username_claimed": "blue",
@@ -842,7 +854,7 @@
"Hubski": {
"errorMsg": "No such user",
"errorType": "message",
- "rank": 188361,
+ "rank": 180289,
"url": "https://hubski.com/user/{}",
"urlMain": "https://hubski.com/",
"username_claimed": "blue",
@@ -851,7 +863,8 @@
"IFTTT": {
"errorMsg": "The requested page or file does not exist",
"errorType": "message",
- "rank": 8887,
+ "rank": 9140,
+ "regexCheck": "^[A-Za-z0-9]{3,35}$",
"url": "https://www.ifttt.com/p/{}",
"urlMain": "https://www.ifttt.com/",
"username_claimed": "blue",
@@ -860,7 +873,7 @@
"ImageShack": {
"errorType": "response_url",
"errorUrl": "https://imageshack.us/",
- "rank": 37365,
+ "rank": 35265,
"url": "https://imageshack.us/user/{}",
"urlMain": "https://imageshack.us/",
"username_claimed": "blue",
@@ -868,21 +881,12 @@
},
"ImgUp.cz": {
"errorType": "status_code",
- "rank": 838319,
+ "rank": 859166,
"url": "https://imgup.cz/{}",
"urlMain": "https://imgup.cz/",
"username_claimed": "adam",
"username_unclaimed": "noonewouldeverusethis"
},
- "Insanejournal": {
- "errorMsg": "Unknown user",
- "errorType": "message",
- "rank": 29728,
- "url": "http://{}.insanejournal.com/profile",
- "urlMain": "insanejournal.com",
- "username_claimed": "blue",
- "username_unclaimed": "dlyr6cd"
- },
"Instagram": {
"errorMsg": "The link you followed may be broken",
"errorType": "message",
@@ -895,7 +899,7 @@
"Instructables": {
"errorMsg": "404: We're sorry, things break sometimes",
"errorType": "message",
- "rank": 1152,
+ "rank": 1172,
"url": "https://www.instructables.com/member/{}",
"urlMain": "https://www.instructables.com/",
"username_claimed": "blue",
@@ -903,7 +907,7 @@
},
"Investing.com": {
"errorType": "status_code",
- "rank": 326,
+ "rank": 316,
"url": "https://www.investing.com/traders/{}",
"urlMain": "https://www.investing.com/",
"username_claimed": "jenny",
@@ -911,7 +915,7 @@
},
"Issuu": {
"errorType": "status_code",
- "rank": 507,
+ "rank": 516,
"url": "https://issuu.com/{}",
"urlMain": "https://issuu.com/",
"username_claimed": "jenny",
@@ -919,7 +923,7 @@
},
"Itch.io": {
"errorType": "status_code",
- "rank": 2175,
+ "rank": 2154,
"url": "https://{}.itch.io/",
"urlMain": "https://itch.io/",
"username_claimed": "blue",
@@ -928,7 +932,7 @@
"Jimdo": {
"errorType": "status_code",
"noPeriod": "True",
- "rank": 34912,
+ "rank": 33162,
"url": "https://{}.jimdosite.com",
"urlMain": "https://jimdosite.com/",
"username_claimed": "jenny",
@@ -936,7 +940,7 @@
},
"Kaggle": {
"errorType": "status_code",
- "rank": 3534,
+ "rank": 3541,
"url": "https://www.kaggle.com/{}",
"urlMain": "https://www.kaggle.com/",
"username_claimed": "dansbecker",
@@ -944,7 +948,7 @@
},
"KanoWorld": {
"errorType": "status_code",
- "rank": 133862,
+ "rank": 136722,
"url": "https://api.kano.me/progress/user/{}",
"urlMain": "https://world.kano.me/",
"username_claimed": "blue",
@@ -952,7 +956,7 @@
},
"Keybase": {
"errorType": "status_code",
- "rank": 33496,
+ "rank": 43773,
"url": "https://keybase.io/{}",
"urlMain": "https://keybase.io/",
"username_claimed": "blue",
@@ -961,7 +965,7 @@
"Kik": {
"errorMsg": "The page you requested was not found",
"errorType": "message",
- "rank": 322417,
+ "rank": 340426,
"url": "https://ws2.kik.com/user/{}",
"urlMain": "http://kik.me/",
"username_claimed": "blue",
@@ -970,7 +974,7 @@
"Kongregate": {
"errorMsg": "Sorry, no account with that name was found.",
"errorType": "message",
- "rank": 2319,
+ "rank": 2290,
"regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$",
"url": "https://www.kongregate.com/accounts/{}",
"urlMain": "https://www.kongregate.com/",
@@ -979,7 +983,7 @@
},
"LOR": {
"errorType": "status_code",
- "rank": 25372,
+ "rank": 25688,
"url": "https://www.linux.org.ru/people/{}/profile",
"urlMain": "https://linux.org.ru/",
"username_claimed": "red",
@@ -987,7 +991,7 @@
},
"Launchpad": {
"errorType": "status_code",
- "rank": 9589,
+ "rank": 9758,
"url": "https://launchpad.net/~{}",
"urlMain": "https://launchpad.net/",
"username_claimed": "blue",
@@ -995,7 +999,7 @@
},
"LeetCode": {
"errorType": "status_code",
- "rank": 3556,
+ "rank": 3485,
"url": "https://leetcode.com/{}",
"urlMain": "https://leetcode.com/",
"username_claimed": "blue",
@@ -1004,7 +1008,7 @@
"Letterboxd": {
"errorMsg": "Sorry, we can\u2019t find the page you\u2019ve requested.",
"errorType": "message",
- "rank": 4061,
+ "rank": 3928,
"url": "https://letterboxd.com/{}",
"urlMain": "https://letterboxd.com/",
"username_claimed": "blue",
@@ -1013,7 +1017,7 @@
"Lichess": {
"errorMsg": "Page not found!",
"errorType": "message",
- "rank": 3592,
+ "rank": 3325,
"url": "https://lichess.org/@/{}",
"urlMain": "https://lichess.org",
"username_claimed": "blue",
@@ -1021,7 +1025,7 @@
},
"LiveJournal": {
"errorType": "status_code",
- "rank": 373,
+ "rank": 370,
"regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$",
"url": "https://{}.livejournal.com",
"urlMain": "https://www.livejournal.com/",
@@ -1031,7 +1035,7 @@
"LiveLeak": {
"errorMsg": "channel not found",
"errorType": "message",
- "rank": 2661,
+ "rank": 2667,
"url": "https://www.liveleak.com/c/{}",
"urlMain": "https://www.liveleak.com/",
"username_claimed": "blue",
@@ -1039,7 +1043,7 @@
},
"Lobsters": {
"errorType": "status_code",
- "rank": 185773,
+ "rank": 200678,
"regexCheck": "[A-Za-z0-9][A-Za-z0-9_-]{0,24}",
"url": "https://lobste.rs/u/{}",
"urlMain": "https://lobste.rs/",
@@ -1048,7 +1052,7 @@
},
"Medium": {
"errorType": "status_code",
- "rank": 78,
+ "rank": 82,
"url": "https://medium.com/@{}",
"urlMain": "https://medium.com/",
"username_claimed": "blue",
@@ -1057,15 +1061,24 @@
"MeetMe": {
"errorType": "response_url",
"errorUrl": "https://www.meetme.com/",
- "rank": 23095,
+ "rank": 22301,
"url": "https://www.meetme.com/{}",
"urlMain": "https://www.meetme.com/",
"username_claimed": "blue",
"username_unclaimed": "noonewouldeverusethis7"
},
+ "Memrise": {
+ "errorType": "response_url",
+ "errorUrl": "https://www.memrise.com/",
+ "rank": 5708,
+ "url": "https://www.memrise.com/user/{}/",
+ "urlMain": "https://www.memrise.com/",
+ "username_claimed": "blue",
+ "username_unclaimed": "noonewouldeverusethis7"
+ },
"MixCloud": {
"errorType": "status_code",
- "rank": 2703,
+ "rank": 2616,
"url": "https://www.mixcloud.com/{}/",
"urlMain": "https://www.mixcloud.com/",
"urlProbe": "https://api.mixcloud.com/{}/",
@@ -1074,7 +1087,7 @@
},
"MyAnimeList": {
"errorType": "status_code",
- "rank": 833,
+ "rank": 846,
"url": "https://myanimelist.net/profile/{}",
"urlMain": "https://myanimelist.net/",
"username_claimed": "blue",
@@ -1082,7 +1095,7 @@
},
"Myspace": {
"errorType": "status_code",
- "rank": 2761,
+ "rank": 2736,
"url": "https://myspace.com/{}",
"urlMain": "https://myspace.com/",
"username_claimed": "blue",
@@ -1091,7 +1104,7 @@
"NICommunityForum": {
"errorMsg": "The specified member cannot be found",
"errorType": "message",
- "rank": 7217,
+ "rank": 7329,
"url": "https://www.native-instruments.com/forum/members?username={}",
"urlMain": "https://www.native-instruments.com/forum/",
"username_claimed": "blue",
@@ -1099,7 +1112,7 @@
},
"NPM": {
"errorType": "status_code",
- "rank": 4997,
+ "rank": 5590,
"url": "https://www.npmjs.com/~{}",
"urlMain": "https://www.npmjs.com/",
"username_claimed": "kennethsweezy",
@@ -1107,7 +1120,7 @@
},
"NPM-Package": {
"errorType": "status_code",
- "rank": 4997,
+ "rank": 5590,
"url": "https://www.npmjs.com/package/{}",
"urlMain": "https://www.npmjs.com/",
"username_claimed": "blue",
@@ -1116,7 +1129,7 @@
"NameMC (Minecraft.net skins)": {
"errorMsg": "Profiles: 0 results",
"errorType": "message",
- "rank": 11751,
+ "rank": 11236,
"url": "https://namemc.com/profile/{}",
"urlMain": "https://namemc.com/",
"username_claimed": "blue",
@@ -1125,7 +1138,7 @@
"NationStates Nation": {
"errorMsg": "Was this your nation? It may have ceased to exist due to inactivity, but can rise again!",
"errorType": "message",
- "rank": 47592,
+ "rank": 46293,
"url": "https://nationstates.net/nation={}",
"urlMain": "https://nationstates.net",
"username_claimed": "the_holy_principality_of_saint_mark",
@@ -1134,7 +1147,7 @@
"NationStates Region": {
"errorMsg": "does not exist.",
"errorType": "message",
- "rank": 47592,
+ "rank": 46293,
"url": "https://nationstates.net/region={}",
"urlMain": "https://nationstates.net",
"username_claimed": "the_west_pacific",
@@ -1142,7 +1155,7 @@
},
"Newgrounds": {
"errorType": "status_code",
- "rank": 4613,
+ "rank": 4782,
"regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$",
"url": "https://{}.newgrounds.com",
"urlMain": "https://newgrounds.com",
@@ -1151,7 +1164,7 @@
},
"OK": {
"errorType": "status_code",
- "rank": 54,
+ "rank": 51,
"regexCheck": "^[a-zA-Z][a-zA-Z0-9_.-]*$",
"url": "https://ok.ru/{}",
"urlMain": "https://ok.ru/",
@@ -1161,7 +1174,7 @@
"OpenCollective": {
"errorMsg": "Open Collective - open your finances to your community",
"errorType": "message",
- "rank": 42267,
+ "rank": 43364,
"url": "https://opencollective.com/{}",
"urlMain": "https://opencollective.com/",
"username_claimed": "sindresorhus",
@@ -1169,7 +1182,7 @@
},
"OpenStreetMap": {
"errorType": "status_code",
- "rank": 7719,
+ "rank": 7940,
"url": "https://www.openstreetmap.org/user/{}",
"urlMain": "https://www.openstreetmap.org/",
"username_claimed": "blue",
@@ -1177,7 +1190,7 @@
},
"Oracle Community": {
"errorType": "status_code",
- "rank": 588,
+ "rank": 591,
"url": "https://community.oracle.com/people/{}",
"urlMain": "https://community.oracle.com",
"username_claimed": "blue",
@@ -1185,7 +1198,7 @@
},
"Otzovik": {
"errorType": "status_code",
- "rank": 1635,
+ "rank": 1639,
"url": "https://otzovik.com/profile/{}",
"urlMain": "https://otzovik.com/",
"username_claimed": "blue",
@@ -1194,7 +1207,7 @@
"OurDJTalk": {
"errorMsg": "The specified member cannot be found",
"errorType": "message",
- "rank": 753938,
+ "rank": 686507,
"url": "https://ourdjtalk.com/members?username={}",
"urlMain": "https://ourdjtalk.com/",
"username_claimed": "steve",
@@ -1202,7 +1215,7 @@
},
"PCPartPicker": {
"errorType": "status_code",
- "rank": 3240,
+ "rank": 3376,
"url": "https://pcpartpicker.com/user/{}",
"urlMain": "https://pcpartpicker.com",
"username_claimed": "blue",
@@ -1211,7 +1224,7 @@
"PSNProfiles.com": {
"errorType": "response_url",
"errorUrl": "https://psnprofiles.com/?psnId={}",
- "rank": 13996,
+ "rank": 14115,
"url": "https://psnprofiles.com/{}",
"urlMain": "https://psnprofiles.com/",
"username_claimed": "blue",
@@ -1220,7 +1233,7 @@
"Packagist": {
"errorType": "response_url",
"errorUrl": "https://packagist.org/search/?q={}&reason=vendor_not_found",
- "rank": 23264,
+ "rank": 28172,
"url": "https://packagist.org/packages/{}/",
"urlMain": "https://packagist.org/",
"username_claimed": "psr",
@@ -1229,7 +1242,7 @@
"Pastebin": {
"errorType": "response_url",
"errorUrl": "https://pastebin.com/index",
- "rank": 1193,
+ "rank": 1209,
"url": "https://pastebin.com/u/{}",
"urlMain": "https://pastebin.com/",
"username_claimed": "blue",
@@ -1237,7 +1250,7 @@
},
"Patreon": {
"errorType": "status_code",
- "rank": 362,
+ "rank": 363,
"url": "https://www.patreon.com/{}",
"urlMain": "https://www.patreon.com/",
"username_claimed": "blue",
@@ -1245,7 +1258,7 @@
},
"Periscope": {
"errorType": "status_code",
- "rank": 28405,
+ "rank": 25301,
"url": "https://www.periscope.tv/{}/",
"urlMain": "https://www.periscope.tv/",
"username_claimed": "blue",
@@ -1253,7 +1266,7 @@
},
"Pexels": {
"errorType": "status_code",
- "rank": 692,
+ "rank": 745,
"url": "https://www.pexels.com/@{}",
"urlMain": "https://www.pexels.com/",
"username_claimed": "bruno",
@@ -1261,7 +1274,7 @@
},
"Photobucket": {
"errorType": "status_code",
- "rank": 3192,
+ "rank": 3200,
"url": "https://photobucket.com/user/{}/library",
"urlMain": "https://photobucket.com/",
"username_claimed": "blue",
@@ -1269,7 +1282,7 @@
},
"Pinkbike": {
"errorType": "status_code",
- "rank": 9992,
+ "rank": 9634,
"url": "https://www.pinkbike.com/u/{}/",
"urlMain": "https://www.pinkbike.com/",
"username_claimed": "blue",
@@ -1277,7 +1290,7 @@
},
"Pinterest": {
"errorType": "status_code",
- "rank": 169,
+ "rank": 170,
"url": "https://www.pinterest.com/{}/",
"urlMain": "https://www.pinterest.com/",
"username_claimed": "blue",
@@ -1285,7 +1298,7 @@
},
"Pixabay": {
"errorType": "status_code",
- "rank": 357,
+ "rank": 378,
"url": "https://pixabay.com/en/users/{}",
"urlMain": "https://pixabay.com/",
"username_claimed": "blue",
@@ -1302,7 +1315,7 @@
"Pling": {
"errorType": "response_url",
"errorUrl": "https://www.pling.com/",
- "rank": 97406,
+ "rank": 101137,
"url": "https://www.pling.com/u/{}/",
"urlMain": "https://www.pling.com/",
"username_claimed": "blue",
@@ -1310,7 +1323,7 @@
},
"Plug.DJ": {
"errorType": "status_code",
- "rank": 50497,
+ "rank": 51660,
"url": "https://plug.dj/@/{}",
"urlMain": "https://plug.dj/",
"username_claimed": "plug-dj-rock",
@@ -1318,7 +1331,7 @@
},
"Pokemon Showdown": {
"errorType": "status_code",
- "rank": 4066,
+ "rank": 4169,
"url": "https://pokemonshowdown.com/users/{}",
"urlMain": "https://pokemonshowdown.com",
"username_claimed": "blue",
@@ -1326,7 +1339,7 @@
},
"PokerStrategy": {
"errorType": "status_code",
- "rank": 8409612,
+ "rank": 6883813,
"url": "http://www.pokerstrategy.net/user/{}/profile/",
"urlMain": "http://www.pokerstrategy.net",
"username_claimed": "blue",
@@ -1334,7 +1347,7 @@
},
"Polygon": {
"errorType": "status_code",
- "rank": 1091,
+ "rank": 1179,
"url": "https://www.polygon.com/users/{}",
"urlMain": "https://www.polygon.com/",
"username_claimed": "swiftstickler",
@@ -1343,7 +1356,7 @@
"ProductHunt": {
"errorMsg": "Product Hunt is a curation of the best new products",
"errorType": "message",
- "rank": 9124,
+ "rank": 10838,
"url": "https://www.producthunt.com/@{}",
"urlMain": "https://www.producthunt.com/",
"username_claimed": "jenny",
@@ -1351,7 +1364,7 @@
},
"PromoDJ": {
"errorType": "status_code",
- "rank": 31190,
+ "rank": 31214,
"url": "http://promodj.com/{}",
"urlMain": "http://promodj.com/",
"username_claimed": "blue",
@@ -1360,7 +1373,7 @@
"Quora": {
"errorType": "response_url",
"errorUrl": "https://www.quora.com/profile/{}",
- "rank": 217,
+ "rank": 222,
"url": "https://www.quora.com/profile/{}",
"urlMain": "https://www.quora.com/",
"username_claimed": "Matt-Riggsby",
@@ -1369,7 +1382,7 @@
"Rajce.net": {
"errorMsg": "410",
"errorType": "message",
- "rank": 1706,
+ "rank": 1703,
"url": "https://{}.rajce.idnes.cz/",
"urlMain": "https://www.rajce.idnes.cz/",
"username_claimed": "blue",
@@ -1377,7 +1390,7 @@
},
"Rate Your Music": {
"errorType": "status_code",
- "rank": 5042,
+ "rank": 5120,
"url": "https://rateyourmusic.com/~{}",
"urlMain": "https://rateyourmusic.com/",
"username_claimed": "blue",
@@ -1385,7 +1398,7 @@
},
"Redbubble": {
"errorType": "status_code",
- "rank": 1330,
+ "rank": 1307,
"url": "https://www.redbubble.com/people/{}",
"urlMain": "https://www.redbubble.com/",
"username_claimed": "blue",
@@ -1411,7 +1424,7 @@
"Repl.it": {
"errorMsg": "404",
"errorType": "message",
- "rank": 4770,
+ "rank": 4798,
"url": "https://repl.it/@{}",
"urlMain": "https://repl.it/",
"username_claimed": "blue",
@@ -1420,7 +1433,7 @@
"ResearchGate": {
"errorType": "response_url",
"errorUrl": "https://www.researchgate.net/directory/profiles",
- "rank": 146,
+ "rank": 144,
"regexCheck": "\\w+_\\w+",
"url": "https://www.researchgate.net/profile/{}",
"urlMain": "https://www.researchgate.net/",
@@ -1430,7 +1443,7 @@
"ReverbNation": {
"errorMsg": "Sorry, we couldn't find that page",
"errorType": "message",
- "rank": 8479,
+ "rank": 8202,
"url": "https://www.reverbnation.com/{}",
"urlMain": "https://www.reverbnation.com/",
"username_claimed": "blue",
@@ -1439,7 +1452,7 @@
"Roblox": {
"errorMsg": "Page cannot be found or no longer exists",
"errorType": "message",
- "rank": 122,
+ "rank": 120,
"url": "https://www.roblox.com/user.aspx?username={}",
"urlMain": "https://www.roblox.com/",
"username_claimed": "bluewolfekiller",
@@ -1447,7 +1460,7 @@
},
"RubyGems": {
"errorType": "status_code",
- "rank": 41816,
+ "rank": 44094,
"url": "https://rubygems.org/profiles/{}",
"urlMain": "https://rubygems.org/",
"username_claimed": "blue",
@@ -1455,7 +1468,7 @@
},
"Sbazar.cz": {
"errorType": "status_code",
- "rank": 14612,
+ "rank": 15615,
"url": "https://www.sbazar.cz/{}",
"urlMain": "https://www.sbazar.cz/",
"username_claimed": "blue",
@@ -1463,7 +1476,7 @@
},
"Scratch": {
"errorType": "status_code",
- "rank": 528,
+ "rank": 540,
"url": "https://scratch.mit.edu/users/{}",
"urlMain": "https://scratch.mit.edu/",
"username_claimed": "griffpatch",
@@ -1472,7 +1485,7 @@
"Scribd": {
"errorMsg": "Page not found",
"errorType": "message",
- "rank": 188,
+ "rank": 189,
"url": "https://www.scribd.com/{}",
"urlMain": "https://www.scribd.com/",
"username_claimed": "blue",
@@ -1480,7 +1493,7 @@
},
"ShitpostBot5000": {
"errorType": "status_code",
- "rank": 494320,
+ "rank": 412642,
"url": "https://www.shitpostbot.com/user/{}",
"urlMain": "https://www.shitpostbot.com/",
"username_claimed": "blue",
@@ -1489,7 +1502,7 @@
"Signal": {
"errorMsg": "Oops! That page doesn\u2019t exist or is private.",
"errorType": "message",
- "rank": 1955725,
+ "rank": 1938906,
"url": "https://community.signalusers.org/u/{}",
"urlMain": "https://community.signalusers.org",
"username_claimed": "jlund",
@@ -1497,7 +1510,7 @@
},
"Slack": {
"errorType": "status_code",
- "rank": 532,
+ "rank": 490,
"regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$",
"url": "https://{}.slack.com",
"urlMain": "https://slack.com",
@@ -1506,7 +1519,7 @@
},
"SlideShare": {
"errorType": "status_code",
- "rank": 128,
+ "rank": 127,
"url": "https://slideshare.net/{}",
"urlMain": "https://slideshare.net/",
"username_claimed": "blue",
@@ -1514,7 +1527,7 @@
},
"Smashcast": {
"errorType": "status_code",
- "rank": 156129,
+ "rank": 158255,
"url": "https://www.smashcast.tv/api/media/live/{}",
"urlMain": "https://www.smashcast.tv/",
"username_claimed": "hello",
@@ -1522,7 +1535,7 @@
},
"Smule": {
"errorType": "status_code",
- "rank": 8516,
+ "rank": 8525,
"url": "https://www.smule.com/{}",
"urlMain": "https://www.smule.com/",
"username_claimed": "blue",
@@ -1538,7 +1551,7 @@
},
"SourceForge": {
"errorType": "status_code",
- "rank": 408,
+ "rank": 412,
"url": "https://sourceforge.net/u/{}",
"urlMain": "https://sourceforge.net/",
"username_claimed": "blue",
@@ -1547,7 +1560,7 @@
"Speedrun.com": {
"errorMsg": "not found.",
"errorType": "message",
- "rank": 10329,
+ "rank": 9859,
"url": "https://speedrun.com/user/{}",
"urlMain": "https://speedrun.com/",
"username_claimed": "3Tau",
@@ -1555,7 +1568,7 @@
},
"Splits.io": {
"errorType": "status_code",
- "rank": 883578,
+ "rank": 1032877,
"url": "https://splits.io/users/{}",
"urlMain": "https://splits.io",
"username_claimed": "cambosteve",
@@ -1563,7 +1576,7 @@
},
"Sporcle": {
"errorType": "status_code",
- "rank": 3541,
+ "rank": 3530,
"url": "https://www.sporcle.com/user/{}/people",
"urlMain": "https://www.sporcle.com/",
"username_claimed": "blue",
@@ -1571,7 +1584,7 @@
},
"SportsRU": {
"errorType": "status_code",
- "rank": 1976,
+ "rank": 1985,
"url": "https://www.sports.ru/profile/{}/",
"urlMain": "https://www.sports.ru/",
"username_claimed": "blue",
@@ -1580,7 +1593,7 @@
"SportsTracker": {
"errorMsg": "\"code\":\"404\"",
"errorType": "message",
- "rank": 88130,
+ "rank": 93950,
"url": "https://www.sports-tracker.com/view_profile/{}",
"urlMain": "https://www.sports-tracker.com/",
"urlProbe": "https://www.sports-tracker.com/apiserver/v1/user/name/{}",
@@ -1597,7 +1610,7 @@
},
"Star Citizen": {
"errorType": "status_code",
- "rank": 6316,
+ "rank": 6062,
"url": "https://robertsspaceindustries.com/citizens/{}",
"urlMain": "https://robertsspaceindustries.com/",
"username_claimed": "blue",
@@ -1606,7 +1619,7 @@
"Steam": {
"errorMsg": "The specified profile could not be found",
"errorType": "message",
- "rank": 182,
+ "rank": 169,
"url": "https://steamcommunity.com/id/{}",
"urlMain": "https://steamcommunity.com/",
"username_claimed": "blue",
@@ -1615,7 +1628,7 @@
"SteamGroup": {
"errorMsg": "No group could be retrieved for the given URL",
"errorType": "message",
- "rank": 182,
+ "rank": 169,
"url": "https://steamcommunity.com/groups/{}",
"urlMain": "https://steamcommunity.com/",
"username_claimed": "blue",
@@ -1623,7 +1636,7 @@
},
"SublimeForum": {
"errorType": "status_code",
- "rank": 7702,
+ "rank": 7588,
"url": "https://forum.sublimetext.com/u/{}",
"urlMain": "https://forum.sublimetext.com/",
"username_claimed": "blue",
@@ -1631,7 +1644,7 @@
},
"T-MobileSupport": {
"errorType": "status_code",
- "rank": 1306,
+ "rank": 1312,
"url": "https://support.t-mobile.com/people/{}",
"urlMain": "https://support.t-mobile.com",
"username_claimed": "blue",
@@ -1640,7 +1653,7 @@
"TamTam": {
"errorType": "response_url",
"errorUrl": "https://tamtam.chat/",
- "rank": 95855,
+ "rank": 92134,
"url": "https://tamtam.chat/{}",
"urlMain": "https://tamtam.chat/",
"username_claimed": "blue",
@@ -1648,7 +1661,7 @@
},
"Taringa": {
"errorType": "status_code",
- "rank": 994,
+ "rank": 1020,
"url": "https://www.taringa.net/{}",
"urlMain": "https://taringa.net/",
"username_claimed": "blue",
@@ -1657,7 +1670,7 @@
"Telegram": {
"errorMsg": "