Skip to content

reory/osint_dashboard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

2 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸ•΅πŸ½ OSINT Username Intelligence Dashboard

Last Commit Repo Size License

Maigret Engine FastAPI Python Pydantic Uvicorn SQLite Django

A powerful, full-stack Open Source Intelligence (OSINT) workstation that automates username footprinting across the web. The platform utilizes an asynchronous decoupled architecture to execute background investigations, stream network telemetry, and compile raw data into a clean, human-readable visual intelligence dossier.


πŸ“Έ Screenshots

main dashboard1 view discovered profiles1 main dashboard2 view discovered profiles2


πŸš€ Key Features

  • Decoupled Architecture: Utilizes a Django web user interface backed by a high-performance, asynchronous FastAPI scanning engine.
  • Automated Target Scouting: Leverages Maigret via robust CLI execution pipelines to scan across 100+ top platforms simultaneously.
  • Windows-Hardened Pipelines: Built-in environment encoding overrides to completely prevent terminal-pipe string glitches (UnicodeDecodeError).
  • Disk-Reader File Syncing: Bypasses buggy network webhooks on local machines by dynamically mapping and analyzing raw JSON report footprints right off the disk.
  • Beautiful Intelligence Dossiers: Automatically extracts profile imagery, user bios, tags, location vectors, and platform metrics from raw nested data streams.

πŸ“‚ Project Structure

osint_dashboard/
β”‚
β”œβ”€β”€ api/                       # FASTAPI ASYNC SCANNING ENGINE
β”‚   β”œβ”€β”€ main.py                # Core background worker & Pydantic request models
β”‚   └── requirements.txt       # Engine specific dependencies (fastapi, pydantic, uvicorn)
β”‚
β”œβ”€β”€ core/                      # DJANGO WEB APPLICATION ROOT
β”‚   β”œβ”€β”€ manage.py              # Django management CLI wrapper
β”‚   β”œβ”€β”€ core/                  # Main settings and project routing configuration
β”‚   β”‚   β”œβ”€β”€ settings.py
β”‚   β”‚   └── urls.py
β”‚   β”‚
β”‚   └── scanner/               # WEB DASHBOARD APPLICATION INTERFACE
β”‚       β”œβ”€β”€ models.py          # Database schema (TargetSearch tracking, DiscoveredProfile)
β”‚       β”œβ”€β”€ views.py           # Human-readable JSON engine logic & web handlers
β”‚       β”œβ”€β”€ urls.py            # App routing paths
β”‚       └── templates/
β”‚           └── scanner/
β”‚               β”œβ”€β”€ dashboard.html # Search entry center & historic hunt listing
β”‚               └── results.html   # Modern cleaned OSINT visual dossier
β”‚
└── reports/                   # Disk storage directory for raw Maigret output
└── screenshots                # Images of the dashboard
└── tests/                     # Pytest/Hypothesis suite
|   β”œβ”€β”€ test_api_worker.py
β”‚   β”œβ”€β”€ test_models.py
|   β”œβ”€β”€ test_views_logic.py

πŸ› οΈ Installation & Setup

Prerequisites Python 3.11+ installed (Verified stable on Python 3.13)

Windows OS (PowerShell / Command Prompt access)

Global Tools Installation

Ensure maigret is installed and registered globally on your computer terminal:

pip install maigret

Configure the FastAPI Async Worker

Open a fresh terminal window, navigate to your API folder, and spin up the engine:

cd C:\Users\Admin\Desktop\code\osint_dashboard\api
pip install -r requirements.txt
uvicorn api.main:app --host 127.0.0.1 --port 8001 --reload
  • The background scanner is now operational on port 8001.

Configure the Django Web UI Front-End

Open a second terminal window, navigate to your core project directory, prepare your database migrations, and activate the server:

cd C:\Users\Admin\Desktop\code\osint_dashboard\core
pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
python manage.py runserver 127.0.0.1:8000
  • The web front-end interface is now operational on port 8000.

🎯 How To Run An Investigation

  • Fire up your web browser and open http://127.0.0.1:8000/.

  • Input a target username (e.g., reory35) into the dashboard form search bar and click Initiate Scout Search.

  • The dashboard UI logs the status as pending and immediately pushes the workload to the FastAPI worker via a background thread.

  • Once the scan is marked complete, click View Intelligence Feeds to pull the disk-parsed visual dossier straight into view.


πŸ›£οΈ Future Roadmap
  • Email & Domain OSINT: Integrate tools like theHarvester or holehe directly into the worker subprocess arrays.

  • Biometric Pfp Matching: Add automated image similarity scanning across confirmed profile avatar images using Pillow and DeepFace.

  • Interactive Graphs: Implement interactive relationship network webs using vis.js or cytoscape.js.

  • Dossier Exports: One-click automated PDF intelligence report generation using WeasyPrint.


  • Built by Roy Peters 😁 LinkedIn

About

A powerful, full-stack Open Source Intelligence (OSINT) workstation that automates username footprinting across the web. The platform utilizes an asynchronous decoupled architecture to execute background investigations, stream network telemetry, and compile raw data into a clean, human-readable visual intelligence dossier.

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Packages

 
 
 

Contributors