Search for a username across hundreds of social networks.
S

Search for a username across hundreds of social networks.

Search for a username across hundreds of social networks.

6,651 stars
N/A forks
N/A contributors

README

Project documentation from GitHub

Blackbird: Find a Username Across the Web

Ever wondered if that perfect username you just thought up is actually free anywhere else? Or maybe you're doing some OSINT research and need to see where a particular handle pops up online. Manually checking hundreds of sites is a special kind of tedium. That's where Blackbird comes in.

It's a clever, no-nonsense tool that automates the search for a username across a massive list of social networks, forums, and websites. Think of it as a reconnaissance drone for usernames.

What It Does

Blackbird is a Python-based OSINT tool designed for a single, focused task: checking the availability of a username on hundreds of online platforms. You feed it a username, and it systematically queries a long list of sites, returning clear results on where that name is registered and where it's not. It saves you from the endless copy-pasting and tab-switching.

Why It's Cool

The beauty of Blackbird is in its simplicity and effectiveness. It's not a bloated suite; it does one job and does it well. The project maintains a data.json file that acts as its database of target URLs and the specific patterns it looks for to determine if a username exists on that platform. This makes the tool both transparent and extensible.

For developers, it's a neat example of practical Python scripting for automation. You can easily see how the requests are built and handled. It's also incredibly useful for:

  • Branding & Security: Securing your handle across platforms to protect your brand or personal identity.
  • Research: Quickly mapping an individual's or organization's digital footprint.
  • Curiosity: Just plain satisfying that itch to know if "CoolDev42" is taken on MySpace (it probably is).

How to Try It

Getting started is straightforward. You'll need Python 3 and pip installed.

  1. Clone the repository:

    git clone https://github.com/p1ngul1n0/blackbird.git
    cd blackbird
    
  2. Install the required dependency (it's just requests):

    pip install -r requirements.txt
    
  3. Run it with a username of your choice:

    python blackbird.py -u your_target_username
    

Sit back and watch as it flies through the list, giving you a clean, color-coded report in your terminal.

Final Thoughts

Blackbird is a great example of a utility that solves a specific, re

Did you like this issue?

Join our weekly newsletter

Love discovering amazing projects?

Help us continue bringing you the best open-source discoveries every week.

Back to Projects
Last updated: Dec 28, 2025