Sherlock - OSINT Tool for Username Tracking
=============================================
Step 1: Install Sherlock on Kali Linux / Ubuntu / Debian
=============================================
# Update system and install required packages
sudo apt update && sudo apt install python3 python3-pip git -y
# Clone Sherlock repository from GitHub
git clone [Link]
# Navigate to the Sherlock directory
cd sherlock
# Install required dependencies
pip3 install -r [Link]
=============================================
Step 2: Run Sherlock
=============================================
# Check a single username
python3 sherlock username
# Check multiple usernames at once
python3 sherlock user1 user2 user3
# Save results to a file
python3 sherlock username --output [Link]
# Check username on specific sites (Example: Facebook & Twitter)
python3 sherlock username --site facebook twitter
# Run Sherlock using Tor for anonymity (Make sure Tor service is running)
python3 sherlock username --tor
=============================================
Step 3: Export Results
=============================================
# Export results as JSON file
python3 sherlock username --json
# Export results as CSV file
python3 sherlock username --csv
=============================================
Step 4: Uninstall Sherlock (if needed)
=============================================
# Navigate back and remove Sherlock
cd ..
rm -rf sherlock
=============================================
End of Guide
=============================================