Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tarranprior/blackstar
✈️ An asynchronous and lightweight reconnaissance tool which searches for usernames across common social networking platforms. Built with Python.
https://github.com/tarranprior/blackstar
intelligence osint python social-networks usernames
Last synced: 19 days ago
JSON representation
✈️ An asynchronous and lightweight reconnaissance tool which searches for usernames across common social networking platforms. Built with Python.
- Host: GitHub
- URL: https://github.com/tarranprior/blackstar
- Owner: tarranprior
- License: mit
- Created: 2022-06-03T22:25:36.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-25T17:34:34.000Z (12 months ago)
- Last Synced: 2024-11-17T06:15:56.888Z (3 months ago)
- Topics: intelligence, osint, python, social-networks, usernames
- Language: Python
- Homepage: https://github.com/tarranprior/blackstar
- Size: 30.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Blackstar
An asynchronous and lightweight open-source intelligence tool which searches for usernames across common social networking platforms.```
______ _ _
,d8 (____ \| | | | _
,d888" ,d ____) ) | _____ ____| | _ ___ _| |_ _____ ____
888888888,d88 | __ (| |(____ |/ ___) |_/ )/___|_ _|____ |/ ___)
=888888888888888K | |__) ) |/ ___ ( (___| _ (|___ | | |_/ ___ | |
888888888"Y88 |______/ \_)_____|\____)_| \_|___/ \__)_____|_|
"Y888, "Y
"Y8 An open-source intelligence tool for blazing-fast
username enumeration.
```## Disclaimer
This tool was made for educational purposes only.## Prerequisites
* Python
* [Poetry](https://python-poetry.org/docs) (or the [pip](https://pypi.org/project/pip/) package management tool.)## Installation
1. Clone the repository:
```bash
git clone https://github.com/tarranprior/blackstar
```2. Change the directory:
```bash
cd blackstar
```3. Install the dependencies:
```bash
# Install using Poetry:
poetry install# Install using pip:
pip install -r requirements.txt
```## Usage
```bash
blackstar.py [-h] [-u USERNAME] [-t TIMEOUT] [--show-all]
```### Results.json - Example
```json
{
"parameters": {
"username": "example",
"date": "01/01/2001 00:00:00",
"total_sites": 100,
"search_duration": "3.02s"
},
"results": [
{
"site": "9GAG",
"url": "https://9gag.com/u/example",
"response_status": "200 OK",
"success": true
},
{
"site": "About.me",
"url": "https://about.me/example",
"response_status": "404 Not Found",
"success": false
},
{
"site": "AskFM",
"url": "https://ask.fm/example",
"response_status": "200 OK",
"success": true
},
]
}
```## License
This project is licensed under the [MIT](https://github.com/tarranprior/blackstar/blob/main/LICENSE) License.