In cybersecurity one of the first steps in an investigation is Open Source Intelligence (OSINT) gathering. OSINT helps analysts understand a targetβs digital footprint using publicly available information.
One of the most powerful OSINT tools for username reconnaissance is Sherlock.
π What is Sherlock?
Sherlock is a Python-based OSINT tool that allows you to search for a username across hundreds of social media platforms.
It helps investigators:
Identify where a username exists online
Map digital footprints across platforms
Support forensic investigations and threat intelligence
Perform ethical reconnaissance in cybersecurity labs
βοΈ Installation
- Clone the repository
git clone https://github.com/sherlock-project/sherlock.git
- Navigate into the directory
cd sherlock
- Install dependencies
pip3 install -r requirements.txt
π Basic Usage
π Search a username across platforms
python3 sherlock username123
πΎ Save results to a file
python3 sherlock username123 --output results.txt
π Save results in JSON format (useful for analysis)
python3 sherlock username123 --output results.json --json
Top comments (0)