steve-bate / WhatsMyName

This repository has the unified data required to perform user enumeration on various websites. Content is in a JSON file and can easily be used in other projects.

Home Page:https://whatsmyname.app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WhatsMyName

This repository has the unified data required to perform user and username enumeration on various websites. Content is in a JSON file and can easily be used in other projects such as the ones below:

whatsmyname

Tools/Web Sites Using WhatsMyName

  • https://whatsmyname.app/ - Chris Poulter created this site which draws the project's JSON file into an easy to use web interface.
    • Filters for category and in search results.
    • Exports to CSV and other formats.
    • Pulls the latest version of the project's JSON file when run.
    • Submit a username in the URL using https://whatsmyname.app/?q=USERNAME like https://whatsmyname.app/?q=john
  • Spiderfoot uses this in the sfp_account module. There is also this video showing how to use this project using the Spiderfoot Command Line Interface (CLI).
  • Recon-ng - The Profiler Module uses this project's JSON content.
  • sn0int downloads and uses the JSON file in the kpcyrd/whatsmyname module, see https://twitter.com/sn0int/status/1228046880459907073 for details and instructions.
  • WMN_screenshooter a helper script that is based on web_accounts_list_checker.py and uses Selenium to try and grab screenshots of identified profile pages.
  • LinkScope uses this in the Whats My Name resolution under the Online Identity category.
  • Blackbird uses the Whats My Name list in its search.

Content

Format

See CONTRIBUTING

Command Line Arguments

If you just want to run this script to check user names on sites and don't wish to use it in combination with another tool (like https://whatsmyname.app or one noted above), then you can use the Python script @yooper made for us, whats_my_name.py as shown below.

There are quite a few command line options available:

  • Check for the user yooper, print out in a table format into console

python whats_my_name.py -u yooper -c social

  • Check for the users yooper and maxim, defaults to outputing json to stdout, only returns the found results.

python whats_my_name.py -u yooper maxim

  • Check for the users yooper and maxim, defaults to outputing json to stdout, returns the not found and found results.

python whats_my_name.py -u yooper maxim -a

  • Check for the users yooper and maxim, defaults to outputing json to stdout, returns the sites where no matches were found.

python whats_my_name.py -u yooper maxim -n

  • Check for the user yooper, on social sites

python whats_my_name.py -u yooper -c social

  • Check for the user yooper, on social sites, using a different web browser agent

python whats_my_name.py -u yooper -c social --user_agent_platform 'Firefox on macOS'

  • Check for the user yooper, print out in a csv format into console

python whats_my_name.py -u yooper -c social --format csv

  • Check for the user yooper, print out in a json (default) format into console

python whats_my_name.py -u yooper -c social --format json

  • Check for the user yooper, dump out response content and response headers, used for debugging purposes

python whats_my_name.py -u yooper -s zhihu --verbose --format csv

  • Check for the user whether they exist or not and get the response from the server, used for debugging

python whats_my_name.py -u yooper -a -s zillow --verbose --format csv

Installation

Check the INSTALLATION.md file

License

Creative Commons License
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.

About

This repository has the unified data required to perform user enumeration on various websites. Content is in a JSON file and can easily be used in other projects.

https://whatsmyname.app/

License:Other


Languages

Language:Python 100.0%