Sherlock is an OSINT tool used to find usernames across hundreds of social media platforms. It helps in identifying online profiles linked to a single username and is widely used during reconnaissance and investigations.
Installation
Update Termux and install required packages:
apt update && apt upgrade -y && pkg install git -y && pkg install golang -yClone the Go-based Sherlock repository:
git clone https://github.com/mesuutt/sherlock.gitMove into the Sherlock directory:
cd sherlockInitialize Go module:
go mod init sherlockInstall required Go dependencies:
go get github.com/fatih/color && go get github.com/spf13/cobraBuild the Sherlock binary:
go buildRun Sherlock:
./sherlockUsage Commands
Search for a username:
./sherlock usernameSearch multiple usernames:
./sherlock user1 user2Show help menu:
./sherlock --helpUse verbose mode (if supported):
./sherlock username --verboseMake Sherlock globally accessible (optional):
mv sherlock $PREFIX/binNow you can run it from anywhere:
sherlock username