🕵️Advanced Usage
Verbose
Verbose mode provides more detailed information during the tool's execution.
python blackbird.py --username username1 --verbose
Filter
The filter
command allows you to filter the sites to be searched based on various conditions. You can use a variety of operators and logical connectors to create complex filter expressions.
python blackbird.py --filter "name~Mastodon and cat=social or e_code<=200" --username crash
Check below for details to create your own filter search.
Enhanced Instagram Account Metadata Extraction
The tool is able to extract additional, such as obfuscated email and phone number information. To take advantage of the enhanced Instagram account metadata extraction functionality, you need to set the INSTAGRAM_SESSION_ID
in your .env
file.
Permute
If you`re stuck in your investigation, you can use --permute
to generate variations of a given username.
python blackbird.py --username balestek 86 --permute
This will generate a list of 12 combinations:
You can go even further and use --permuteall
to generate more variations.
No NSFW
If you wish to exclude NSFW sites from the search, simply use the --no-nsfw
argument.
python blackbird.py --username username1 --no-nsfw
Proxy
Use the --proxy
argument to route all HTTP requests through a proxy.
python blackbird.py --username username1 --proxy "http://myproxy:9090"
Timeout
To modify the server response timeout, use the --timeout
argument followed by the desired timeout duration in seconds.
python blackbird.py --username username1 --timeout 30
No Update
Use the --no-update
argument to instruct the tool not to check for updates in the WhatsMyName list.
python blackbird.py --username username1 --no-update
Last updated