secubox-deb/packages/secubox-soc-web/index.html
CyberMind-FR f5b114590c feat(soc): Add hierarchical SOC system with multi-tier deployment
Implements complete Security Operations Center architecture with:

Phase 1-4: Base SOC packages
- secubox-soc-agent: Edge node metrics collector with HMAC-signed push
- secubox-soc-gateway: Central aggregation hub with node registry
- secubox-console: TUI dashboard with SOC screens (fleet/alerts/node)
- secubox-soc-web: React web dashboard with cyberpunk theme

Phase 5: Hierarchical Mode
- Mode configuration (edge/regional/central)
- Regional SOC enrollment with token-based auth
- Regional-to-central aggregation with signed push
- Cross-region threat correlation
- Global view for central SOC with regional breakdown

New packages: secubox-soc-agent, secubox-soc-gateway, secubox-soc-web
Updated: secubox-console v1.1.0

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-04-01 07:08:08 +02:00

14 lines
377 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/soc/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SecuBox SOC Dashboard</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>