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.
- Decoupled Architecture: Utilizes a Django web user interface backed by a high-performance, asynchronous FastAPI scanning engine.
- Automated Target Scouting: Leverages
Maigretvia 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.
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.pyPrerequisites Python 3.11+ installed (Verified stable on Python 3.13)
Windows OS (PowerShell / Command Prompt access)
Ensure maigret is installed and registered globally on your computer terminal:
pip install maigretOpen 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.
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.
-
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.



