espilon-source/tools/C3PO/hp_dashboard/__init__.py
Eun0us 79c2a4d4bf c3po: full server rewrite with modular routes and honeypot dashboard
Replace monolithic CLI and web server with route-based Flask API.
New routes: api_commands, api_build, api_can, api_monitor, api_ota,
api_tunnel. Add honeypot security dashboard with real-time SSE,
MITRE ATT&CK mapping, kill chain analysis.

New TUI with commander/help modules. Add session management,
tunnel proxy core, CAN bus data store. Docker support.
2026-02-28 20:12:27 +01:00

9 lines
284 B
Python

from .hp_store import HpStore
from .hp_routes import create_hp_blueprint
from .hp_commander import HpCommander
from .hp_alerts import HpAlertEngine
from .hp_geo import HpGeoLookup
__all__ = ["HpStore", "HpCommander", "HpAlertEngine", "HpGeoLookup",
"create_hp_blueprint"]