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.
9 lines
284 B
Python
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"]
|