commit
2204bb2b87
@ -1,4 +1,6 @@
|
|||||||
.git/
|
.git/
|
||||||
.vscode/
|
.vscode/
|
||||||
|
screenshot/
|
||||||
|
tests/
|
||||||
*.txt
|
*.txt
|
||||||
!/requirements.txt
|
!/requirements.txt
|
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 92 KiB |
After Width: | Height: | Size: 1.3 MiB |
@ -0,0 +1,87 @@
|
|||||||
|
# List Of Sites Removed From Sherlock
|
||||||
|
|
||||||
|
This is a list of sites implemented in such a way that the current design of
|
||||||
|
Sherlock is not capable of determining if a given username exists or not.
|
||||||
|
They are listed here in the hope that things may change in the future
|
||||||
|
so they may be re-included.
|
||||||
|
|
||||||
|
## LinkedIn
|
||||||
|
|
||||||
|
This was attempted to be added around 2019-08-26, but the pull request was never merged.
|
||||||
|
It turns out that LinkedIn requires that you have an account before they will let you
|
||||||
|
check for other account. So, this site will not work with the current design of
|
||||||
|
Sherlock.
|
||||||
|
|
||||||
|
## StreamMe
|
||||||
|
|
||||||
|
On 2019-04-07, I get a Timed Out message from the website. It has not
|
||||||
|
been working earlier either (for some weeks). It takes about 21s before
|
||||||
|
the site finally times out, so it really makes getting the results from
|
||||||
|
Sherlock a pain.
|
||||||
|
|
||||||
|
If the site becomes available in the future, we can put it back in.
|
||||||
|
|
||||||
|
```
|
||||||
|
"StreamMe": {
|
||||||
|
"errorType": "status_code",
|
||||||
|
"rank": 31702,
|
||||||
|
"url": "https://www.stream.me/{}",
|
||||||
|
"urlMain": "https://www.stream.me/",
|
||||||
|
"username_claimed": "blue",
|
||||||
|
"username_unclaimed": "noonewouldeverusethis7"
|
||||||
|
},
|
||||||
|
```
|
||||||
|
|
||||||
|
## BlackPlanet
|
||||||
|
|
||||||
|
This site has always returned a false positive. The site returns the exact
|
||||||
|
same text for a claimed or an unclaimed username. The site must be rendering
|
||||||
|
all of the different content using Javascript in the browser. So, there is
|
||||||
|
no way distinguish between the results with the current design of Sherlock.
|
||||||
|
|
||||||
|
```
|
||||||
|
"BlackPlanet": {
|
||||||
|
"errorMsg": "My Hits",
|
||||||
|
"errorType": "message",
|
||||||
|
"rank": 110021,
|
||||||
|
"url": "http://blackplanet.com/{}",
|
||||||
|
"urlMain": "http://blackplanet.com/"
|
||||||
|
},
|
||||||
|
```
|
||||||
|
|
||||||
|
## Fotolog
|
||||||
|
|
||||||
|
Around 2019-02-09, I get a 502 HTTP error (bad gateway) for any access. On
|
||||||
|
2019-03-10, the site is up, but it is in maintenance mode.
|
||||||
|
|
||||||
|
It does not seem to be working, so there is no sense in including it in
|
||||||
|
Sherlock.
|
||||||
|
|
||||||
|
```
|
||||||
|
"Fotolog": {
|
||||||
|
"errorType": "status_code",
|
||||||
|
"rank": 47777,
|
||||||
|
"url": "https://fotolog.com/{}",
|
||||||
|
"urlMain": "https://fotolog.com/"
|
||||||
|
},
|
||||||
|
```
|
||||||
|
|
||||||
|
## Google Plus
|
||||||
|
|
||||||
|
On 2019-04-02, Google shutdown Google Plus. While the content for some
|
||||||
|
users is available after that point, it is going away. And, no one will
|
||||||
|
be able to create a new account. So, there is no value is keeping it in
|
||||||
|
Sherlock.
|
||||||
|
|
||||||
|
Good-bye [Google Plus](https://en.wikipedia.org/wiki/Google%2B)...
|
||||||
|
|
||||||
|
```
|
||||||
|
"Google Plus": {
|
||||||
|
"errorType": "status_code",
|
||||||
|
"rank": 1,
|
||||||
|
"url": "https://plus.google.com/+{}",
|
||||||
|
"urlMain": "https://plus.google.com/",
|
||||||
|
"username_claimed": "davidbrin1",
|
||||||
|
"username_unclaimed": "noonewouldeverusethis7"
|
||||||
|
},
|
||||||
|
```
|
@ -1,14 +1,11 @@
|
|||||||
beautifulsoup4
|
beautifulsoup4>=4.8.0
|
||||||
bs4
|
bs4>=0.0.1
|
||||||
certifi
|
certifi>=2019.6.16
|
||||||
chardet
|
colorama>=0.4.1
|
||||||
colorama
|
lxml>=4.4.0
|
||||||
idna
|
PySocks>=1.7.0
|
||||||
lxml
|
requests>=2.22.0
|
||||||
PySocks
|
requests-futures>=1.0.0
|
||||||
requests
|
soupsieve>=1.9.2
|
||||||
requests-futures
|
stem>=1.7.1
|
||||||
soupsieve
|
torrequest>=0.1.0
|
||||||
stem
|
|
||||||
torrequest
|
|
||||||
urllib3
|
|
||||||
|
@ -1,138 +1,180 @@
|
|||||||
## List Of Supported Sites (135 Sites In Total!)
|
## List Of Supported Sites (177 Sites In Total!)
|
||||||
1. [500px](https://500px.com/)
|
1. [500px](https://500px.com/)
|
||||||
2. [9GAG](https://9gag.com/)
|
2. [9GAG](https://9gag.com/)
|
||||||
3. [About.me](https://about.me/)
|
3. [About.me](https://about.me/)
|
||||||
4. [Academia.edu](https://www.academia.edu/)
|
4. [Academia.edu](https://www.academia.edu/)
|
||||||
5. [AngelList](https://angel.co/)
|
5. [AngelList](https://angel.co/)
|
||||||
6. [Aptoide](https://en.aptoide.com/)
|
6. [Anobii](https://www.anobii.com/)
|
||||||
7. [AskFM](https://ask.fm/)
|
7. [Aptoide](https://en.aptoide.com/)
|
||||||
8. [BLIP.fm](https://blip.fm/)
|
8. [Archive.org](https://archive.org)
|
||||||
9. [Badoo](https://badoo.com/)
|
9. [AskFM](https://ask.fm/)
|
||||||
10. [Bandcamp](https://www.bandcamp.com/)
|
10. [BLIP.fm](https://blip.fm/)
|
||||||
11. [Basecamp](https://basecamp.com/)
|
11. [Badoo](https://badoo.com/)
|
||||||
12. [Behance](https://www.behance.net/)
|
12. [Bandcamp](https://www.bandcamp.com/)
|
||||||
13. [BitBucket](https://bitbucket.org/)
|
13. [Basecamp](https://basecamp.com/)
|
||||||
14. [BlackPlanet](http://blackplanet.com/)
|
14. [Behance](https://www.behance.net/)
|
||||||
15. [Blogger](https://www.blogger.com/)
|
15. [BitBucket](https://bitbucket.org/)
|
||||||
16. [BuzzFeed](https://buzzfeed.com/)
|
16. [BitCoinForum](https://bitcoinforum.com)
|
||||||
17. [Canva](https://www.canva.com/)
|
17. [Blogger](https://www.blogger.com/)
|
||||||
18. [Carbonmade](https://carbonmade.com/)
|
18. [Brew](https://www.brew.com/)
|
||||||
19. [CashMe](https://cash.me/)
|
19. [BuyMeACoffee](https://www.buymeacoffee.com/)
|
||||||
20. [Cloob](https://www.cloob.com/)
|
20. [BuzzFeed](https://buzzfeed.com/)
|
||||||
21. [Codecademy](https://www.codecademy.com/)
|
21. [Canva](https://www.canva.com/)
|
||||||
22. [Codementor](https://www.codementor.io/)
|
22. [Carbonmade](https://carbonmade.com/)
|
||||||
23. [Codepen](https://codepen.io/)
|
23. [CashMe](https://cash.me/)
|
||||||
24. [Coderwall](https://coderwall.com/)
|
24. [Cent](https://cent.co/)
|
||||||
25. [ColourLovers](https://www.colourlovers.com/)
|
25. [Cloob](https://www.cloob.com/)
|
||||||
26. [Contently](https://contently.com/)
|
26. [Codecademy](https://www.codecademy.com/)
|
||||||
27. [Coroflot](https://coroflot.com/)
|
27. [Codechef](https://www.codechef.com/)
|
||||||
28. [CreativeMarket](https://creativemarket.com/)
|
28. [Codementor](https://www.codementor.io/)
|
||||||
29. [Crevado](https://crevado.com/)
|
29. [Codepen](https://codepen.io/)
|
||||||
30. [Crunchyroll](https://www.crunchyroll.com/)
|
30. [Coderwall](https://coderwall.com/)
|
||||||
31. [DailyMotion](https://www.dailymotion.com/)
|
31. [Codewars](https://www.codewars.com)
|
||||||
32. [Designspiration](https://www.designspiration.net/)
|
32. [ColourLovers](https://www.colourlovers.com/)
|
||||||
33. [DeviantART](https://deviantart.com)
|
33. [Contently](https://contently.com/)
|
||||||
34. [Disqus](https://disqus.com/)
|
34. [Coroflot](https://coroflot.com/)
|
||||||
35. [Dribbble](https://dribbble.com/)
|
35. [CreativeMarket](https://creativemarket.com/)
|
||||||
36. [EVE Online](https://eveonline.com)
|
36. [Crevado](https://crevado.com/)
|
||||||
37. [Ebay](https://www.ebay.com/)
|
37. [Crunchyroll](https://www.crunchyroll.com/)
|
||||||
38. [Ello](https://ello.co/)
|
38. [DEV Community](https://dev.to/)
|
||||||
39. [Etsy](https://www.etsy.com/)
|
39. [DailyMotion](https://www.dailymotion.com/)
|
||||||
40. [EyeEm](https://www.eyeem.com/)
|
40. [Designspiration](https://www.designspiration.net/)
|
||||||
41. [Facebook](https://www.facebook.com/)
|
41. [DeviantART](https://deviantart.com)
|
||||||
42. [Flickr](https://www.flickr.com/)
|
42. [Discogs](https://www.discogs.com/)
|
||||||
43. [Flipboard](https://flipboard.com/)
|
43. [Disqus](https://disqus.com/)
|
||||||
44. [Fotolog](https://fotolog.com/)
|
44. [Docker Hub](https://hub.docker.com/)
|
||||||
45. [Foursquare](https://foursquare.com/)
|
45. [Dribbble](https://dribbble.com/)
|
||||||
46. [Giphy](https://giphy.com/)
|
46. [Duolingo](https://www.duolingo.com/)
|
||||||
47. [GitHub](https://www.github.com/)
|
47. [EVE Online](https://eveonline.com)
|
||||||
48. [GitLab](https://gitlab.com/)
|
48. [Ebay](https://www.ebay.com/)
|
||||||
49. [Gitee](https://gitee.com/)
|
49. [Ello](https://ello.co/)
|
||||||
50. [GoodReads](https://www.goodreads.com/)
|
50. [Etsy](https://www.etsy.com/)
|
||||||
51. [Google Plus](https://plus.google.com/)
|
51. [EyeEm](https://www.eyeem.com/)
|
||||||
52. [Gravatar](http://en.gravatar.com/)
|
52. [Facebook](https://www.facebook.com/)
|
||||||
53. [Gumroad](https://www.gumroad.com/)
|
53. [Fandom](https://www.fandom.com/)
|
||||||
54. [HackerNews](https://news.ycombinator.com/)
|
54. [Filmogs](https://www.filmo.gs/)
|
||||||
55. [HackerOne](https://hackerone.com/)
|
55. [Flickr](https://www.flickr.com/)
|
||||||
56. [House-Mixes.com](https://www.house-mixes.com/)
|
56. [Flightradar24](https://www.flightradar24.com/)
|
||||||
57. [Houzz](https://houzz.com/)
|
57. [Flipboard](https://flipboard.com/)
|
||||||
58. [HubPages](https://hubpages.com/)
|
58. [Foursquare](https://foursquare.com/)
|
||||||
59. [IFTTT](https://www.ifttt.com/)
|
59. [Furaffinity](https://www.furaffinity.net)
|
||||||
60. [ImageShack](https://imageshack.us/)
|
60. [Giphy](https://giphy.com/)
|
||||||
61. [Imgur](https://imgur.com/)
|
61. [GitHub](https://www.github.com/)
|
||||||
62. [Instagram](https://www.instagram.com/)
|
62. [GitLab](https://gitlab.com/)
|
||||||
63. [Instructables](https://www.instructables.com/)
|
63. [Gitee](https://gitee.com/)
|
||||||
64. [Investing.com](https://www.investing.com/)
|
64. [GoodReads](https://www.goodreads.com/)
|
||||||
65. [Issuu](https://issuu.com/)
|
65. [Gravatar](http://en.gravatar.com/)
|
||||||
66. [Itch.io](https://itch.io/)
|
66. [Gumroad](https://www.gumroad.com/)
|
||||||
67. [Jimdo](https://jimdosite.com/)
|
67. [HackerNews](https://news.ycombinator.com/)
|
||||||
68. [Kaggle](https://www.kaggle.com/)
|
68. [HackerOne](https://hackerone.com/)
|
||||||
69. [KanoWorld](https://world.kano.me/)
|
69. [HackerRank](https://hackerrank.com/)
|
||||||
70. [Keybase](https://keybase.io/)
|
70. [House-Mixes.com](https://www.house-mixes.com/)
|
||||||
71. [Kik](http://kik.me/)
|
71. [Houzz](https://houzz.com/)
|
||||||
72. [Kongregate](https://www.kongregate.com/)
|
72. [HubPages](https://hubpages.com/)
|
||||||
73. [Launchpad](https://launchpad.net/)
|
73. [IFTTT](https://www.ifttt.com/)
|
||||||
74. [Letterboxd](https://letterboxd.com/)
|
74. [ImageShack](https://imageshack.us/)
|
||||||
75. [LiveJournal](https://www.livejournal.com/)
|
75. [Imgur](https://imgur.com/)
|
||||||
76. [Mastodon](https://mstdn.io/)
|
76. [Instagram](https://www.instagram.com/)
|
||||||
77. [Medium](https://medium.com/)
|
77. [Instructables](https://www.instructables.com/)
|
||||||
78. [MeetMe](https://www.meetme.com/)
|
78. [Investing.com](https://www.investing.com/)
|
||||||
79. [MixCloud](https://www.mixcloud.com/)
|
79. [Issuu](https://issuu.com/)
|
||||||
80. [MyAnimeList](https://myanimelist.net/)
|
80. [Itch.io](https://itch.io/)
|
||||||
81. [NameMC (Minecraft.net skins)](https://namemc.com/)
|
81. [Jimdo](https://jimdosite.com/)
|
||||||
82. [Newgrounds](https://newgrounds.com)
|
82. [Kaggle](https://www.kaggle.com/)
|
||||||
83. [Pastebin](https://pastebin.com/)
|
83. [KanoWorld](https://world.kano.me/)
|
||||||
84. [Patreon](https://www.patreon.com/)
|
84. [Keybase](https://keybase.io/)
|
||||||
85. [Pexels](https://www.pexels.com/)
|
85. [Kik](http://kik.me/)
|
||||||
86. [Photobucket](https://photobucket.com/)
|
86. [Kongregate](https://www.kongregate.com/)
|
||||||
87. [Pinterest](https://www.pinterest.com/)
|
87. [Launchpad](https://launchpad.net/)
|
||||||
88. [Pixabay](https://pixabay.com/)
|
88. [LeetCode](https://leetcode.com/)
|
||||||
89. [Plug.DJ](https://plug.dj/)
|
89. [Letterboxd](https://letterboxd.com/)
|
||||||
90. [ProductHunt](https://www.producthunt.com/)
|
90. [LiveJournal](https://www.livejournal.com/)
|
||||||
91. [Quora](https://www.quora.com/)
|
91. [Mastodon](https://mstdn.io/)
|
||||||
92. [Rajce.net](https://www.rajce.idnes.cz/)
|
92. [Medium](https://medium.com/)
|
||||||
93. [Reddit](https://www.reddit.com/)
|
93. [MeetMe](https://www.meetme.com/)
|
||||||
94. [Repl.it](https://repl.it/)
|
94. [MixCloud](https://www.mixcloud.com/)
|
||||||
95. [ReverbNation](https://www.reverbnation.com/)
|
95. [MyAnimeList](https://myanimelist.net/)
|
||||||
96. [Roblox](https://www.roblox.com/)
|
96. [Myspace](https://myspace.com/)
|
||||||
97. [Scribd](https://www.scribd.com/)
|
97. [NPM](https://www.npmjs.com/)
|
||||||
98. [Slack](https://slack.com)
|
98. [NPM-Package](https://www.npmjs.com/)
|
||||||
99. [SlideShare](https://slideshare.net/)
|
99. [NameMC (Minecraft.net skins)](https://namemc.com/)
|
||||||
100. [Smashcast](https://www.smashcast.tv/)
|
100. [NationStates Nation](https://nationstates.net)
|
||||||
101. [SoundCloud](https://soundcloud.com/)
|
101. [NationStates Region](https://nationstates.net)
|
||||||
102. [SourceForge](https://sourceforge.net/)
|
102. [Newgrounds](https://newgrounds.com)
|
||||||
103. [Spotify](https://open.spotify.com/)
|
103. [OK](https://ok.ru/)
|
||||||
104. [Star Citizen](https://robertsspaceindustries.com/)
|
104. [OpenCollective](https://opencollective.com/)
|
||||||
105. [Steam](https://steamcommunity.com/)
|
105. [Packagist](https://packagist.org/)
|
||||||
106. [StreamMe](https://www.stream.me/)
|
106. [Pastebin](https://pastebin.com/)
|
||||||
107. [Taringa](https://taringa.net/)
|
107. [Patreon](https://www.patreon.com/)
|
||||||
108. [Telegram](https://t.me/)
|
108. [PayPal](https://www.paypal.me/)
|
||||||
109. [Tinder](https://tinder.com/)
|
109. [Pexels](https://www.pexels.com/)
|
||||||
110. [TradingView](https://www.tradingview.com/)
|
110. [Photobucket](https://photobucket.com/)
|
||||||
111. [Trakt](https://www.trakt.tv/)
|
111. [Pinterest](https://www.pinterest.com/)
|
||||||
112. [Trip](https://www.trip.skyscanner.com/)
|
112. [Pixabay](https://pixabay.com/)
|
||||||
113. [TripAdvisor](https://tripadvisor.com/)
|
113. [PlayStore](https://play.google.com/store)
|
||||||
114. [Twitch](https://www.twitch.tv/)
|
114. [Plug.DJ](https://plug.dj/)
|
||||||
115. [Twitter](https://www.twitter.com/)
|
115. [Pokemon Showdown](https://pokemonshowdown.com)
|
||||||
116. [Unsplash](https://unsplash.com/)
|
116. [ProductHunt](https://www.producthunt.com/)
|
||||||
117. [VK](https://vk.com/)
|
117. [Quora](https://www.quora.com/)
|
||||||
118. [VSCO](https://vsco.co/)
|
118. [Rajce.net](https://www.rajce.idnes.cz/)
|
||||||
119. [Venmo](https://venmo.com/)
|
119. [Rate Your Music](https://rateyourmusic.com/)
|
||||||
120. [Vimeo](https://vimeo.com/)
|
120. [Reddit](https://www.reddit.com/)
|
||||||
121. [VirusTotal](https://www.virustotal.com/)
|
121. [Repl.it](https://repl.it/)
|
||||||
122. [Wattpad](https://www.wattpad.com/)
|
122. [ResearchGate](https://www.researchgate.net/)
|
||||||
123. [We Heart It](https://weheartit.com/)
|
123. [ReverbNation](https://www.reverbnation.com/)
|
||||||
124. [WebNode](https://www.webnode.cz/)
|
124. [Roblox](https://www.roblox.com/)
|
||||||
125. [Wikia](http://www.wikia.com/)
|
125. [Scratch](https://scratch.mit.edu/)
|
||||||
126. [Wikipedia](https://www.wikipedia.org/)
|
126. [Scribd](https://www.scribd.com/)
|
||||||
127. [Wix](https://wix.com/)
|
127. [Signal](https://community.signalusers.org)
|
||||||
128. [WordPress](https://wordpress.com)
|
128. [Slack](https://slack.com)
|
||||||
129. [YouPic](https://youpic.com/)
|
129. [SlideShare](https://slideshare.net/)
|
||||||
130. [YouTube](https://www.youtube.com/)
|
130. [Smashcast](https://www.smashcast.tv/)
|
||||||
131. [Younow](https://www.younow.com/)
|
131. [SoundCloud](https://soundcloud.com/)
|
||||||
132. [Zhihu](https://www.zhihu.com/)
|
132. [SourceForge](https://sourceforge.net/)
|
||||||
133. [devRant](https://devrant.com/)
|
133. [Speedrun.com](https://speedrun.com/)
|
||||||
134. [iMGSRC.RU](https://imgsrc.ru/)
|
134. [Splits.io](https://splits.io)
|
||||||
135. [last.fm](https://last.fm/)
|
135. [Spotify](https://open.spotify.com/)
|
||||||
|
136. [Star Citizen](https://robertsspaceindustries.com/)
|
||||||
|
137. [Steam](https://steamcommunity.com/)
|
||||||
|
138. [SteamGroup](https://steamcommunity.com/)
|
||||||
|
139. [Taringa](https://taringa.net/)
|
||||||
|
140. [Telegram](https://t.me/)
|
||||||
|
141. [Tellonym.me](https://tellonym.me/)
|
||||||
|
142. [TikTok](https://www.tiktok.com/)
|
||||||
|
143. [Tinder](https://tinder.com/)
|
||||||
|
144. [TradingView](https://www.tradingview.com/)
|
||||||
|
145. [Trakt](https://www.trakt.tv/)
|
||||||
|
146. [Trello](https://trello.com/)
|
||||||
|
147. [Trip](https://www.trip.skyscanner.com/)
|
||||||
|
148. [TripAdvisor](https://tripadvisor.com/)
|
||||||
|
149. [Twitch](https://www.twitch.tv/)
|
||||||
|
150. [Twitter](https://www.twitter.com/)
|
||||||
|
151. [Unsplash](https://unsplash.com/)
|
||||||
|
152. [VK](https://vk.com/)
|
||||||
|
153. [VSCO](https://vsco.co/)
|
||||||
|
154. [Venmo](https://venmo.com/)
|
||||||
|
155. [Vimeo](https://vimeo.com/)
|
||||||
|
156. [Virgool](https://virgool.io/)
|
||||||
|
157. [VirusTotal](https://www.virustotal.com/)
|
||||||
|
158. [Wattpad](https://www.wattpad.com/)
|
||||||
|
159. [We Heart It](https://weheartit.com/)
|
||||||
|
160. [WebNode](https://www.webnode.cz/)
|
||||||
|
161. [Wikipedia](https://www.wikipedia.org/)
|
||||||
|
162. [Wix](https://wix.com/)
|
||||||
|
163. [WordPress](https://wordpress.com)
|
||||||
|
164. [WordPressOrg](https://wordpress.org/)
|
||||||
|
165. [YouNow](https://www.younow.com/)
|
||||||
|
166. [YouPic](https://youpic.com/)
|
||||||
|
167. [YouTube](https://www.youtube.com/)
|
||||||
|
168. [Zhihu](https://www.zhihu.com/)
|
||||||
|
169. [authorSTREAM](http://www.authorstream.com/)
|
||||||
|
170. [boingboing.net](https://boingboing.net/)
|
||||||
|
171. [devRant](https://devrant.com/)
|
||||||
|
172. [gfycat](https://gfycat.com/)
|
||||||
|
173. [iMGSRC.RU](https://imgsrc.ru/)
|
||||||
|
174. [last.fm](https://last.fm/)
|
||||||
|
175. [mixer.com](https://mixer.com/)
|
||||||
|
176. [osu!](https://osu.ppy.sh/)
|
||||||
|
177. [segmentfault](https://segmentfault.com/)
|
||||||
|
|
||||||
Alexa.com rank data fetched at (2019-02-02 12:19:32.483528 UTC)
|
Alexa.com rank data fetched at (2019-08-25 00:32:19.603917 UTC)
|
||||||
|
Loading…
Reference in new issue