作者 | 弗拉德
来源 | 弗拉德(公众号:fulade_me)

不知道有没有小伙伴跟我一样,常常在注册账号的时候输入了昵称往往会反回一个“用户名已存在”,然后尝试了好几个昵称之后才能成功。
今天介绍的这款工具可以帮助我们迅速的检索各大网站有没有我们自己的用户昵称,同样它也可以帮助我们快速的查询同一个用户名都注册了哪些网站。
简介
sherloc,在Github上面已经有24k的Star数,它的名字取自于电影《神探夏洛克》的英文名字——sherlock。
sherlock主要使用Python3来开发完成的,这使得它具有更多的灵活性,可以运行在Windows、Mac以及Linux操作系统上。
安装步骤
我们这里以Linux为例
1 2 3 4 5 6 7 8
| $ git clone https://github.com/sherlock-project/sherlock.git
$ cd sherlock
$ python3 -m pip install -r requirements.txt
|
得益于Python良好的包管理工具,使得我们的安装非常的简单和方便,只需要几个命令就可搞定。
使用方法
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| $ python3 sherlock --help usage: sherlock [-h] [--version] [--verbose] [--folderoutput FOLDEROUTPUT] [--output OUTPUT] [--tor] [--unique-tor] [--csv] [--site SITE_NAME] [--proxy PROXY_URL] [--json JSON_FILE] [--timeout TIMEOUT] [--print-all] [--print-found] [--no-color] [--browse] [--local] USERNAMES [USERNAMES ...]
Sherlock: Find Usernames Across Social Networks (Version 0.14.0)
optional arguments: -h, --help --version --verbose, -v, -d, --debug --folderoutput FOLDEROUTPUT, -fo FOLDEROUTPUT --output OUTPUT, -o OUTPUT --tor, -t --unique-tor, -u --csv --site SITE_NAME --proxy PROXY_URL, -p PROXY_URL --json JSON_FILE, -j JSON_FILE --timeout TIMEOUT --print-all --print-found --no-color --browse, -b --local, -l
|
使用方法也很简单,搜索单个名字,只需要在命令行输入:
python3 sherlock username
比如我们搜索川建国
搜索结果如下:

同时搜索多个名字
python3 sherlock tony heisenberg johnson
搜索结果如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
| [*] Checking username tony on: [+] 3dnews: http://forum.3dnews.ru/member.php?username=tony [+] 7Cups: https://www.7cups.com/@tony [+] 9GAG: https://www.9gag.com/u/tony [+] About.me: https://about.me/tony [+] Academia.edu: https://independent.academia.edu/tony [+] AllTrails: https://www.alltrails.com/members/tony .... [+] Anobii: https://www.anobii.com/tony/profile [+] Apple Discussions: https://discussions.apple.com/profile/tony [+] Archive.org: https://archive.org/details/@tony [+] Asciinema: https://asciinema.org/~tony [+] AskFM: https://ask.fm/tony
[*] Checking username heisenberg on: [+] 9GAG: https://www.9gag.com/u/heisenberg [+] About.me: https://about.me/heisenberg [+] Academia.edu: https://independent.academia.edu/heisenberg [+] AllTrails: https://www.alltrails.com/members/heisenberg [+] Anobii: https://www.anobii.com/heisenberg/profile [+] Archive.org: https://archive.org/details/@heisenberg ... [+] Asciinema: https://asciinema.org/~heisenberg [+] AskFM: https://ask.fm/heisenberg [+] Audiojungle: https://audiojungle.net/user/heisenberg [+] BLIP.fm: https://blip.fm/heisenberg [+] BOOTH: https://heisenberg.booth.pm/
[*] Checking username johnson on: [+] 7Cups: https://www.7cups.com/@johnson [+] 9GAG: https://www.9gag.com/u/johnson [+] About.me: https://about.me/johnson [+] Academia.edu: https://independent.academia.edu/johnson [+] AllTrails: https://www.alltrails.com/members/johnson ... [+] Anobii: https://www.anobii.com/johnson/profile [+] Archive.org: https://archive.org/details/@johnson [+] Audiojungle: https://audiojungle.net/user/johnson [+] BLIP.fm: https://blip.fm/johnson [+] Bandcamp: https://www.bandcamp.com/johnson
|
多个搜索结果会按顺序来展示
支持Docker
作者也增加了对docker的支持,我们只需要执行docker build -t mysherlock-image .
就可以在docker中使用sherklock了。
更多有关docker的使用方法可以去github主页查看
实现原理
作者是把每一个用户的URL地址都去请求一下,如果有返回有结果就代表存在这个昵称,如果没有返回结果或者是404,就意味着不存在当前的用户。
比如请求:https://www.about.me/tony
,可以请求到结果就代表存在这个昵称,如果没有相应的返回就是没有这个昵称。
