Skip to main content Skills Marketplace Discover and explore AI skills built by the community.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Copy promptShow prompt details A direct command skips the review prompt. Inspect the source before running it.
npx skills add https://github.com/iamlalitpandit/RudraX --skill sherlockThe command stays on one line. Scroll horizontally to inspect it before copying.
Prefer a local copy? Download the files currently available to SkillsMP.
Download Zip Downloading... More from this repository
Related occupations SOC
Based on SOC occupation classification
name sherlock description OSINT username search across 400+ social networks. Hunt down social media accounts by username. metadata {"category":"security","emoji":"🔍","color":"dark-red","vibe":"Trust, but verify.","original_name":"sherlock"}
🎛️ DEPUTY CHIEF OF STAFF REPORTING PROTOCOL
PRIORITY DIRECTIVE : If this task was assigned to you by the agents-orchestrator, treat it as HIGHEST PRIORITY and execute immediately.
Upon Task Completion, you MUST:
Report BACK to the Deputy Chief of Staff with:
Task completion status (✅ COMPLETE / ⚠️ PARTIAL / ❌ FAILED)
Summary of outputs produced
Any blockers encountered and how they were resolved
Files created or modified (full paths)
Quality assessment of your own output
Sherlock OSINT Username Search
Hunt down social media accounts by username across 400+ social networks using the Sherlock Project .
When to Use
User asks to find accounts associated with a username
User wants to check username availability across platforms
User is conducting OSINT or reconnaissance research
User asks "where is this username registered?" or similar
Requirements
Sherlock CLI installed: pipx install sherlock-project or pip install sherlock-project
Alternatively: Docker available (docker run -it --rm sherlock/sherlock)
Network access to query social platforms
Procedure
1. Check if Sherlock is Installed Before doing anything else , verify sherlock is available:
Offer to install: pipx install sherlock-project (recommended) or pip install sherlock-project
Do NOT try multiple installation methods — pick one and proceed
If installation fails, inform the user and stop
2. Extract Username Extract the username directly from the user's message if clearly stated.
Examples where you should NOT use clarify:
"Find accounts for nasa" → username is nasa
"Search for johndoe123" → username is johndoe123
"Check if alice exists on social media" → username is alice
"Look up user bob on social networks" → username is bob
Multiple potential usernames mentioned ("search for alice or bob")
Ambiguous phrasing ("search for my username" without specifying)
No username mentioned at all ("do an OSINT search")
When extracting, take the exact username as stated — preserve case, numbers, underscores, etc.
3. Build Command Default command (use this unless user specifically requests otherwise):
sherlock --print-found --no-color "<username>" --timeout 90
Optional flags (only add if user explicitly requests):
--nsfw — Include NSFW sites (only if user asks)
--tor — Route through Tor (only if user asks for anonymity)
Do NOT ask about options via clarify — just run the default search. Users can request specific options if needed.
4. Execute Search Run via the terminal tool. The command typically takes 30-120 seconds depending on network conditions and site count.
{
"command" : "sherlock --print-found --no-color \"target_username\"" ,
"timeout" : 180
}
5. Parse and Present Results Sherlock outputs found accounts in a simple format. Parse the output and present:
Summary line: "Found X accounts for username 'Y'"
Categorized links: Group by platform type if helpful (social, professional, forums, etc.)
Output file location: Sherlock saves results to <username>.txt by default
[+] Instagram: https://instagram.com/username
[+] Twitter: https://twitter.com/username
[+] GitHub: https://github.com/username
Present findings as clickable links when possible.
Pitfalls
No Results Found If Sherlock finds no accounts, this is often correct — the username may not be registered on checked platforms. Suggest:
Checking spelling/variation
Trying similar usernames with ? wildcard: sherlock "user?name"
The user may have privacy settings or deleted accounts
Timeout Issues Some sites are slow or block automated requests. Use --timeout 120 to increase wait time, or --site to limit scope.
Tor Configuration --tor requires Tor daemon running. If user wants anonymity but Tor isn't available, suggest:
Installing Tor service
Using --proxy with an alternative proxy
False Positives Some sites always return "found" due to their response structure. Cross-reference unexpected results with manual checks.
Rate Limiting Aggressive searches may trigger rate limits. For bulk username searches, add delays between calls or use --local with cached data.
Installation
pipx (recommended) pipx install sherlock-project
pip pip install sherlock-project
Docker docker pull sherlock/sherlock
docker run -it --rm sherlock/sherlock <username>
Linux packages Available on Debian 13+, Ubuntu 22.10+, Homebrew, Kali, BlackArch.
Ethical Use This tool is for legitimate OSINT and research purposes only. Remind users:
Only search usernames they own or have permission to investigate
Respect platform terms of service
Do not use for harassment, stalking, or illegal activities
Consider privacy implications before sharing results
Verification After running sherlock, verify:
Output lists found sites with URLs
<username>.txt file created (default output) if using file output
If --print-found used, output should only contain [+] lines for matches
Example Interaction User: "Can you check if the username 'johndoe123' exists on social media?"
Check sherlock --version (verify installed)
Username provided — proceed directly
Run: sherlock --print-found --no-color "johndoe123" --timeout 90
Parse output and present links
User: "Search for username 'alice' including NSFW sites"
Check sherlock installed
Username + NSFW flag both provided
Run: sherlock --print-found --no-color --nsfw "alice" --timeout 90
Present results