mirror of
https://github.com/mblanke/ThreatHunt.git
synced 2026-03-01 14:00:20 -05:00
- Rewrote NetworkMap to use deduplicated host inventory (163 hosts from 394K rows) - New host_inventory.py service: scans datasets, groups by FQDN/ClientId, extracts IPs/users/OS - New /api/network/host-inventory endpoint - Added AnalysisDashboard with 6 tabs (IOC, anomaly, host profile, query, triage, reports) - Added 16 analysis API endpoints with job queue and load balancer - Added 4 AI/analysis ORM models (ProcessingJob, AnalysisResult, HostProfile, IOCEntry) - Filters system accounts (DWM-*, UMFD-*, LOCAL/NETWORK SERVICE) - Infers OS from hostname patterns (W10-* -> Windows 10) - Canvas 2D force-directed graph with host/external-IP node types - Click popover shows hostname, FQDN, IPs, OS, users, datasets, connections
3.5 KiB
3.5 KiB
ThreatHunt Update Log
2026-02-20: Host-Centric Network Map & Analysis Platform
Network Map Overhaul
- Problem: Network Map showed 409 misclassified "domain" nodes (mostly process names like svchost.exe) and 0 hosts. No deduplication same host counted once per dataset.
- Root Cause: IOC column detection misclassified
Fqdnas "domain" instead of "hostname";Namecolumn (process names) wrongly tagged as "domain" IOC;ClientIdwas innormalized_columnsas "hostname" but not inioc_columns. - Solution: Created a new host-centric inventory system that scans all datasets, groups by
Fqdn/ClientId, and extracts IPs, users, OS, and network connections.
New Backend Files
backend/app/services/host_inventory.pyDeduplicated host inventory builder. Scans all datasets in a hunt, identifies unique hosts via regex-based column detection (ClientId,Fqdn,User/Username,Laddr.IP/Raddr.IP), groups rows, extracts metadata. Filters system accounts (DWM-, UMFD-, LOCAL SERVICE, NETWORK SERVICE). Infers OS from hostname patterns (W10-* Windows 10). Builds network connection graph from netstat remote IPs.backend/app/api/routes/network.pyGET /api/network/host-inventory?hunt_id=Xendpoint returning{hosts, connections, stats}.backend/app/services/ioc_extractor.pyIOC extraction service (IP, domain, hash, email, URL patterns).backend/app/services/anomaly_detector.pyStatistical anomaly detection across datasets.backend/app/services/data_query.pyNatural language to structured query translation.backend/app/services/load_balancer.pyRound-robin load balancer for Ollama LLM nodes.backend/app/services/job_queue.pyAsync job queue for long-running analysis tasks.backend/app/api/routes/analysis.py16 analysis endpoints (IOC extraction, anomaly detection, host profiling, triage, reports, job management).
Modified Backend Files
backend/app/main.pyAddednetwork_routerandanalysis_routerincludes.backend/app/db/models.pyAdded 4 AI/analysis ORM models (ProcessingJob,AnalysisResult,HostProfile,IOCEntry).backend/app/db/engine.pyConnection pool tuning for SQLite async.
Frontend Changes
frontend/src/components/NetworkMap.tsxComplete rewrite: host-centric force-directed graph using Canvas 2D. Two node types (Host / External IP). Shows hostname, IP, OS in labels. Click popover shows FQDN, IPs, OS, logged-in users, datasets, connections. Search across hostname/IP/user/OS. Stats cards showing host counts.frontend/src/components/AnalysisDashboard.tsxNew 6-tab analysis dashboard (IOC Extraction, Anomaly Detection, Host Profiling, Query, Triage, Reports).frontend/src/api/client.tsAddednetwork.hostInventory()method +InventoryHost,InventoryConnection,InventoryStatstypes. Added analysis API namespace with 16 endpoint methods.frontend/src/App.tsxAdded Analysis Dashboard route and navigation.
Results (Radio Hunt 20 Velociraptor datasets, 394K rows)
| Metric | Before | After |
|---|---|---|
| Nodes shown | 409 misclassified "domains" | 163 unique hosts |
| Hosts identified | 0 | 163 |
| With IP addresses | N/A | 48 (172.17.x.x LAN) |
| With logged-in users | N/A | 43 (real names only) |
| OS detected | None | Windows 10 (inferred from hostnames) |
| Deduplication | None (same host 20 datasets) | Full (by FQDN/ClientId) |
| System account filtering | None | DWM-, UMFD-, LOCAL/NETWORK SERVICE removed |