Merge branch 'master' into patch-9

pull/280/head
Irfaq Syed 5 years ago committed by GitHub
commit 6206e5d8be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -34,7 +34,7 @@ $ git clone https://github.com/sherlock-project/sherlock.git
# change the working directory to sherlock # change the working directory to sherlock
$ cd sherlock $ cd sherlock
# install python3 and python3-pip if not exist # install python3 and python3-pip if they are not installed
# install the requirements # install the requirements
$ pip3 install -r requirements.txt $ pip3 install -r requirements.txt
@ -52,7 +52,7 @@ usage: sherlock.py [-h] [--version] [--verbose] [--rank]
[--print-found] [--print-found]
USERNAMES [USERNAMES ...] USERNAMES [USERNAMES ...]
Sherlock: Find Usernames Across Social Networks (Version 0.7.5) Sherlock: Find Usernames Across Social Networks (Version 0.7.9)
positional arguments: positional arguments:
USERNAMES One or more usernames to check with social networks. USERNAMES One or more usernames to check with social networks.
@ -97,7 +97,7 @@ optional arguments:
``` ```
For example to search for an user: For example to search for only one user:
``` ```
python3 sherlock.py user123 python3 sherlock.py user123
@ -117,15 +117,15 @@ If you have docker installed you can build an image and run this as a container.
docker build -t mysherlock-image . docker build -t mysherlock-image .
``` ```
Once the image is built sherlock can be invoked by running the following: Once the image is built, sherlock can be invoked by running the following:
``` ```
docker run --rm -t mysherlock-image user123 docker run --rm -t mysherlock-image user123
``` ```
The optional ```--rm``` flag removes the container filesystem on completion to prevent cruft build-up. See https://docs.docker.com/engine/reference/run/#clean-up---rm The optional ```--rm``` flag removes the container filesystem on completion to prevent cruft build-up. See: https://docs.docker.com/engine/reference/run/#clean-up---rm
The optional ```-t``` flag allocates a pseudo-TTY which allows colored output. See https://docs.docker.com/engine/reference/run/#foreground The optional ```-t``` flag allocates a pseudo-TTY which allows colored output. See: https://docs.docker.com/engine/reference/run/#foreground
It is possible to use the following command to access the saved results: It is possible to use the following command to access the saved results:
@ -133,9 +133,9 @@ It is possible to 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 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"``` option tells docker create (or use) the folder `results` in the The ```-v "$PWD/results:/opt/sherlock/results"``` option tells docker to create (or use) the folder `results` in the
present working directory and to mount it at `/opt/sherlock/results` on the docker container. present working directory and to mount it at `/opt/sherlock/results` on the docker container.
The `-o /opt/sherlock/results/text.txt` option tells `sherlock` to output the result The `-o /opt/sherlock/results/text.txt` option tells `sherlock` to output the result.
Or you can simply use "Docker Hub" to run `sherlock`: Or you can simply use "Docker Hub" to run `sherlock`:
``` ```
@ -154,7 +154,7 @@ to understand the issues.
If you are contributing to Sherlock, then Thank You! If you are contributing to Sherlock, then Thank You!
Before creating a pull request with new development, please run the tests Before creating a pull request with new development, please run the tests
to ensure that all is well. It would also be a good idea to run the tests to ensure that everything is working great. It would also be a good idea to run the tests
before starting development to distinguish problems between your before starting development to distinguish problems between your
environment and the Sherlock software. environment and the Sherlock software.
@ -167,7 +167,7 @@ $ python3 -m unittest tests.all --buffer --verbose
``` ```
Note that we do currently have 100% test coverage. Unfortunately, some of Note that we do currently have 100% test coverage. Unfortunately, some of
the sites that Sherlock checks are not always reliable, so it is not uncommon the sites that Sherlock checks are not always reliable, so it is common
to get response errors. to get response errors.
## Stargazers over time ## Stargazers over time

File diff suppressed because it is too large Load Diff

@ -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

@ -26,7 +26,7 @@ from torrequest import TorRequest
from load_proxies import load_proxies_from_csv, check_proxy_list from load_proxies import load_proxies_from_csv, check_proxy_list
module_name = "Sherlock: Find Usernames Across Social Networks" module_name = "Sherlock: Find Usernames Across Social Networks"
__version__ = "0.7.5" __version__ = "0.8.0"
amount = 0 amount = 0

@ -1,164 +1,172 @@
## List Of Supported Sites (161 Sites In Total!) ## List Of Supported Sites (171 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. [Anobii](https://www.anobii.com/) 6. [Anobii](https://www.anobii.com/)
7. [Aptoide](https://en.aptoide.com/) 7. [Aptoide](https://en.aptoide.com/)
8. [Archive.org](https://archive.org) 8. [Archive.org](https://archive.org)
9. [AskFM](https://ask.fm/) 9. [AskFM](https://ask.fm/)
10. [BLIP.fm](https://blip.fm/) 10. [BLIP.fm](https://blip.fm/)
11. [Badoo](https://badoo.com/) 11. [Badoo](https://badoo.com/)
12. [Bandcamp](https://www.bandcamp.com/) 12. [Bandcamp](https://www.bandcamp.com/)
13. [Basecamp](https://basecamp.com/) 13. [Basecamp](https://basecamp.com/)
14. [Behance](https://www.behance.net/) 14. [Behance](https://www.behance.net/)
15. [BitBucket](https://bitbucket.org/) 15. [BitBucket](https://bitbucket.org/)
16. [BitCoinForum](https://bitcoinforum.com) 16. [BitCoinForum](https://bitcoinforum.com)
17. [Blogger](https://www.blogger.com/) 17. [Blogger](https://www.blogger.com/)
18. [BuzzFeed](https://buzzfeed.com/) 18. [Brew](https://www.brew.com/)
19. [Canva](https://www.canva.com/) 19. [BuyMeACoffee](https://www.buymeacoffee.com/)
20. [Carbonmade](https://carbonmade.com/) 20. [BuzzFeed](https://buzzfeed.com/)
21. [CashMe](https://cash.me/) 21. [Canva](https://www.canva.com/)
22. [Cent](https://cent.co/) 22. [Carbonmade](https://carbonmade.com/)
23. [Cloob](https://www.cloob.com/) 23. [CashMe](https://cash.me/)
24. [Codecademy](https://www.codecademy.com/) 24. [Cent](https://cent.co/)
25. [Codechef](https://www.codechef.com/) 25. [Cloob](https://www.cloob.com/)
26. [Codementor](https://www.codementor.io/) 26. [Codecademy](https://www.codecademy.com/)
27. [Codepen](https://codepen.io/) 27. [Codechef](https://www.codechef.com/)
28. [Coderwall](https://coderwall.com/) 28. [Codementor](https://www.codementor.io/)
29. [ColourLovers](https://www.colourlovers.com/) 29. [Codepen](https://codepen.io/)
30. [Contently](https://contently.com/) 30. [Coderwall](https://coderwall.com/)
31. [Coroflot](https://coroflot.com/) 31. [ColourLovers](https://www.colourlovers.com/)
32. [CreativeMarket](https://creativemarket.com/) 32. [Contently](https://contently.com/)
33. [Crevado](https://crevado.com/) 33. [Coroflot](https://coroflot.com/)
34. [Crunchyroll](https://www.crunchyroll.com/) 34. [CreativeMarket](https://creativemarket.com/)
35. [DEV Community](https://dev.to/) 35. [Crevado](https://crevado.com/)
36. [DailyMotion](https://www.dailymotion.com/) 36. [Crunchyroll](https://www.crunchyroll.com/)
37. [Designspiration](https://www.designspiration.net/) 37. [DEV Community](https://dev.to/)
38. [DeviantART](https://deviantart.com) 38. [DailyMotion](https://www.dailymotion.com/)
39. [Discogs](https://www.discogs.com/) 39. [Designspiration](https://www.designspiration.net/)
40. [Disqus](https://disqus.com/) 40. [DeviantART](https://deviantart.com)
41. [Docker Hub](https://hub.docker.com/) 41. [Discogs](https://www.discogs.com/)
42. [Dribbble](https://dribbble.com/) 42. [Disqus](https://disqus.com/)
43. [EVE Online](https://eveonline.com) 43. [Docker Hub](https://hub.docker.com/)
44. [Ebay](https://www.ebay.com/) 44. [Dribbble](https://dribbble.com/)
45. [Ello](https://ello.co/) 45. [EVE Online](https://eveonline.com)
46. [Etsy](https://www.etsy.com/) 46. [Ebay](https://www.ebay.com/)
47. [EyeEm](https://www.eyeem.com/) 47. [Ello](https://ello.co/)
48. [Facebook](https://www.facebook.com/) 48. [Etsy](https://www.etsy.com/)
49. [Fandom](https://www.fandom.com/) 49. [EyeEm](https://www.eyeem.com/)
50. [Filmogs](https://www.filmo.gs/) 50. [Facebook](https://www.facebook.com/)
51. [Flickr](https://www.flickr.com/) 51. [Fandom](https://www.fandom.com/)
52. [Flipboard](https://flipboard.com/) 52. [Filmogs](https://www.filmo.gs/)
53. [Foursquare](https://foursquare.com/) 53. [Flickr](https://www.flickr.com/)
54. [Giphy](https://giphy.com/) 54. [Flightradar24](https://www.flightradar24.com/)
55. [GitHub](https://www.github.com/) 55. [Flipboard](https://flipboard.com/)
56. [GitLab](https://gitlab.com/) 56. [Foursquare](https://foursquare.com/)
57. [Gitee](https://gitee.com/) 57. [Giphy](https://giphy.com/)
58. [GoodReads](https://www.goodreads.com/) 58. [GitHub](https://www.github.com/)
59. [Gravatar](http://en.gravatar.com/) 59. [GitLab](https://gitlab.com/)
60. [Gumroad](https://www.gumroad.com/) 60. [Gitee](https://gitee.com/)
61. [HackerNews](https://news.ycombinator.com/) 61. [GoodReads](https://www.goodreads.com/)
62. [HackerOne](https://hackerone.com/) 62. [Gravatar](http://en.gravatar.com/)
63. [HackerRank](https://hackerrank.com/) 63. [Gumroad](https://www.gumroad.com/)
64. [House-Mixes.com](https://www.house-mixes.com/) 64. [HackerNews](https://news.ycombinator.com/)
65. [Houzz](https://houzz.com/) 65. [HackerOne](https://hackerone.com/)
66. [HubPages](https://hubpages.com/) 66. [HackerRank](https://hackerrank.com/)
67. [IFTTT](https://www.ifttt.com/) 67. [House-Mixes.com](https://www.house-mixes.com/)
68. [ImageShack](https://imageshack.us/) 68. [Houzz](https://houzz.com/)
69. [Imgur](https://imgur.com/) 69. [HubPages](https://hubpages.com/)
70. [Instagram](https://www.instagram.com/) 70. [IFTTT](https://www.ifttt.com/)
71. [Instructables](https://www.instructables.com/) 71. [ImageShack](https://imageshack.us/)
72. [Investing.com](https://www.investing.com/) 72. [Imgur](https://imgur.com/)
73. [Issuu](https://issuu.com/) 73. [Instagram](https://www.instagram.com/)
74. [Itch.io](https://itch.io/) 74. [Instructables](https://www.instructables.com/)
75. [Jimdo](https://jimdosite.com/) 75. [Investing.com](https://www.investing.com/)
76. [Kaggle](https://www.kaggle.com/) 76. [Issuu](https://issuu.com/)
77. [KanoWorld](https://world.kano.me/) 77. [Itch.io](https://itch.io/)
78. [Keybase](https://keybase.io/) 78. [Jimdo](https://jimdosite.com/)
79. [Kik](http://kik.me/) 79. [Kaggle](https://www.kaggle.com/)
80. [Kongregate](https://www.kongregate.com/) 80. [KanoWorld](https://world.kano.me/)
81. [Launchpad](https://launchpad.net/) 81. [Keybase](https://keybase.io/)
82. [LeetCode](https://leetcode.com/) 82. [Kik](http://kik.me/)
83. [Letterboxd](https://letterboxd.com/) 83. [Kongregate](https://www.kongregate.com/)
84. [LiveJournal](https://www.livejournal.com/) 84. [Launchpad](https://launchpad.net/)
85. [Mastodon](https://mstdn.io/) 85. [LeetCode](https://leetcode.com/)
86. [Medium](https://medium.com/) 86. [Letterboxd](https://letterboxd.com/)
87. [MeetMe](https://www.meetme.com/) 87. [LiveJournal](https://www.livejournal.com/)
88. [MixCloud](https://www.mixcloud.com/) 88. [Mastodon](https://mstdn.io/)
89. [MyAnimeList](https://myanimelist.net/) 89. [Medium](https://medium.com/)
90. [Myspace](https://myspace.com/) 90. [MeetMe](https://www.meetme.com/)
91. [NPM](https://npmjs.com/) 91. [MixCloud](https://www.mixcloud.com/)
92. [NameMC (Minecraft.net skins)](https://namemc.com/) 92. [MyAnimeList](https://myanimelist.net/)
93. [NationStates Nation](https://nationstates.net) 93. [Myspace](https://myspace.com/)
94. [NationStates Region](https://nationstates.net) 94. [NPM](https://www.npmjs.com/)
95. [Newgrounds](https://newgrounds.com) 95. [NPM-Package](https://www.npmjs.com/)
96. [OK](https://ok.ru/) 96. [NameMC (Minecraft.net skins)](https://namemc.com/)
97. [Pastebin](https://pastebin.com/) 97. [NationStates Nation](https://nationstates.net)
98. [Patreon](https://www.patreon.com/) 98. [NationStates Region](https://nationstates.net)
99. [Pexels](https://www.pexels.com/) 99. [Newgrounds](https://newgrounds.com)
100. [Photobucket](https://photobucket.com/) 100. [OpenCollective](https://opencollective.com/)
101. [Pinterest](https://www.pinterest.com/) 101. [OK](https://ok.ru/)
102. [Pixabay](https://pixabay.com/) 102. [Packagist](https://packagist.org/)
103. [Plug.DJ](https://plug.dj/) 103. [Pastebin](https://pastebin.com/)
104. [Pokemon Showdown](https://pokemonshowdown.com) 104. [Patreon](https://www.patreon.com/)
105. [ProductHunt](https://www.producthunt.com/) 105. [Pexels](https://www.pexels.com/)
106. [Quora](https://www.quora.com/) 106. [Photobucket](https://photobucket.com/)
107. [Rajce.net](https://www.rajce.idnes.cz/) 107. [Pinterest](https://www.pinterest.com/)
108. [Rate Your Music](https://rateyourmusic.com/) 108. [Pixabay](https://pixabay.com/)
109. [Reddit](https://www.reddit.com/) 109. [PlayStore](https://play.google.com/store)
110. [Repl.it](https://repl.it/) 110. [Plug.DJ](https://plug.dj/)
111. [ResearchGate](https://www.researchgate.net/) 111. [Pokemon Showdown](https://pokemonshowdown.com)
112. [ReverbNation](https://www.reverbnation.com/) 112. [ProductHunt](https://www.producthunt.com/)
113. [Roblox](https://www.roblox.com/) 113. [Quora](https://www.quora.com/)
114. [Scratch](https://scratch.mit.edu/) 114. [Rajce.net](https://www.rajce.idnes.cz/)
115. [Scribd](https://www.scribd.com/) 115. [Rate Your Music](https://rateyourmusic.com/)
116. [Signal](https://community.signalusers.org) 116. [Reddit](https://www.reddit.com/)
117. [Slack](https://slack.com) 117. [Repl.it](https://repl.it/)
118. [SlideShare](https://slideshare.net/) 118. [ResearchGate](https://www.researchgate.net/)
119. [Smashcast](https://www.smashcast.tv/) 119. [ReverbNation](https://www.reverbnation.com/)
120. [SoundCloud](https://soundcloud.com/) 120. [Roblox](https://www.roblox.com/)
121. [SourceForge](https://sourceforge.net/) 121. [Scratch](https://scratch.mit.edu/)
122. [Speedrun.com](https://speedrun.com/) 122. [Scribd](https://www.scribd.com/)
123. [Splits.io](https://splits.io) 123. [Signal](https://community.signalusers.org)
124. [Spotify](https://open.spotify.com/) 124. [Slack](https://slack.com)
125. [Star Citizen](https://robertsspaceindustries.com/) 125. [SlideShare](https://slideshare.net/)
126. [Steam](https://steamcommunity.com/) 126. [Smashcast](https://www.smashcast.tv/)
127. [SteamGroup](https://steamcommunity.com/) 127. [SoundCloud](https://soundcloud.com/)
128. [Taringa](https://taringa.net/) 128. [SourceForge](https://sourceforge.net/)
129. [Telegram](https://t.me/) 129. [Speedrun.com](https://speedrun.com/)
130. [Tinder](https://tinder.com/) 130. [Splits.io](https://splits.io)
131. [TradingView](https://www.tradingview.com/) 131. [Spotify](https://open.spotify.com/)
132. [Trakt](https://www.trakt.tv/) 132. [Star Citizen](https://robertsspaceindustries.com/)
133. [Trip](https://www.trip.skyscanner.com/) 133. [Steam](https://steamcommunity.com/)
134. [TripAdvisor](https://tripadvisor.com/) 134. [SteamGroup](https://steamcommunity.com/)
135. [Twitch](https://www.twitch.tv/) 135. [Taringa](https://taringa.net/)
136. [Twitter](https://www.twitter.com/) 136. [Telegram](https://t.me/)
137. [Unsplash](https://unsplash.com/) 137. [TikTok](https://www.tiktok.com/)
138. [VK](https://vk.com/) 138. [Tinder](https://tinder.com/)
139. [VSCO](https://vsco.co/) 139. [TradingView](https://www.tradingview.com/)
140. [Venmo](https://venmo.com/) 140. [Trakt](https://www.trakt.tv/)
141. [Vimeo](https://vimeo.com/) 141. [Trello](https://trello.com/)
142. [Virgool](https://virgool.io/) 142. [Trip](https://www.trip.skyscanner.com/)
143. [VirusTotal](https://www.virustotal.com/) 143. [TripAdvisor](https://tripadvisor.com/)
144. [Wattpad](https://www.wattpad.com/) 144. [Twitch](https://www.twitch.tv/)
145. [We Heart It](https://weheartit.com/) 145. [Twitter](https://www.twitter.com/)
146. [WebNode](https://www.webnode.cz/) 146. [Unsplash](https://unsplash.com/)
147. [Wikipedia](https://www.wikipedia.org/) 147. [VK](https://vk.com/)
148. [Wix](https://wix.com/) 148. [VSCO](https://vsco.co/)
149. [WordPress](https://wordpress.com) 149. [Venmo](https://venmo.com/)
150. [YouNow](https://www.younow.com/) 150. [Vimeo](https://vimeo.com/)
151. [YouPic](https://youpic.com/) 151. [Virgool](https://virgool.io/)
152. [YouTube](https://www.youtube.com/) 152. [VirusTotal](https://www.virustotal.com/)
153. [Zhihu](https://www.zhihu.com/) 153. [Wattpad](https://www.wattpad.com/)
154. [authorSTREAM](http://www.authorstream.com/) 154. [We Heart It](https://weheartit.com/)
155. [boingboing.net](https://boingboing.net/) 155. [WebNode](https://www.webnode.cz/)
156. [devRant](https://devrant.com/) 156. [Wikipedia](https://www.wikipedia.org/)
157. [gfycat](https://gfycat.com/) 157. [Wix](https://wix.com/)
158. [iMGSRC.RU](https://imgsrc.ru/) 158. [WordPress](https://wordpress.com)
159. [last.fm](https://last.fm/) 159. [WordPressOrg](https://wordpress.org/)
160. [mixer.com](https://mixer.com/) 160. [YouNow](https://www.younow.com/)
161. [osu!](https://osu.ppy.sh/) 161. [YouPic](https://youpic.com/)
162. [YouTube](https://www.youtube.com/)
Alexa.com rank data fetched at (2019-07-20 20:48:31.349173 UTC) 163. [Zhihu](https://www.zhihu.com/)
164. [authorSTREAM](http://www.authorstream.com/)
165. [boingboing.net](https://boingboing.net/)
166. [devRant](https://devrant.com/)
167. [gfycat](https://gfycat.com/)
168. [iMGSRC.RU](https://imgsrc.ru/)
169. [last.fm](https://last.fm/)
170. [mixer.com](https://mixer.com/)
171. [osu!](https://osu.ppy.sh/)

Loading…
Cancel
Save