Skip to content

Architecture Overview

Architecture Overview

HookProbe’s architecture is built on three pillars: NEURO (Living Cryptography), DSM (Decentralized Security Mesh), and HTP (HookProbe Transport Protocol).

The Three Pillars

┌─────────────────────────────────────────────────────────────────────────────────┐
│ HOOKPROBE THREE PILLARS │
├─────────────────────────────────────────────────────────────────────────────────┤
│ │
│ ┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐ │
│ │ NEURO │ │ DSM │ │ HTP │ │
│ │ Protocol │ │ Decentralized │ │ Transport │ │
│ │ │ │ Security Mesh │ │ Protocol │ │
│ ├─────────────────┤ ├─────────────────┤ ├─────────────────┤ │
│ │ Living │ │ Collective │ │ Trust Fabric │ │
│ │ Cryptography │ │ Intelligence │ │ + File Transfer │ │
│ │ │ │ │ │ │ │
│ │ • TER Sensors │ │ • Microblocks │ │ • UDP 8144 │ │
│ │ • Weight Evolve │ │ • BLS Consensus │ │ • ChaCha20 │ │
│ │ • PoSF Signing │ │ • Merkle DAG │ │ • NAT Traversal │ │
│ │ • Deterministic │ │ • Byzantine FT │ │ • CRUD Files │ │
│ └─────────────────┘ └─────────────────┘ └─────────────────┘ │
│ │ │ │ │
│ └─────────────────────┼─────────────────────┘ │
│ │ │
│ ┌────────────┴────────────┐ │
│ │ QSECBIT │ │
│ │ Universal Resilience │ │
│ │ Metric (0.0-1.0) │ │
│ └─────────────────────────┘ │
│ │
└─────────────────────────────────────────────────────────────────────────────────┘

Pillar Overview

PillarFunctionInnovation
NEUROLiving CryptographyNeural weights replace static keys
DSMCollective IntelligenceByzantine fault-tolerant distributed SOC
HTPTrust FabricSimple, auditable transport protocol

System Layers

Layer 1: Hardware

Edge devices range from IoT gateways to servers:

TierHardwareRAM
SentinelIoT gateway256MB
GuardianRaspberry Pi1.5GB
FortressMini PC4GB
NexusServer16GB+

Layer 2: POD Infrastructure

The 7-POD architecture provides modular services:

PODFunction
POD-001Web UI / API Gateway
POD-002IAM / Identity
POD-003PostgreSQL Database
POD-004Cache / Queues
POD-005Metrics / Dashboards
POD-006Security Detection
POD-007AI Response Engine

Learn more about the 7-POD Stack →

Layer 3: Networking

Network security through OVS and XDP:

ComponentPurpose
OpenVSwitchVLAN segmentation, OpenFlow ACLs
XDP/eBPFKernel-level DDoS mitigation
PSK-VXLANEncrypted inter-POD tunnels
NftablesHost firewall rules

Learn more about Networking →

Layer 4: Detection

Multi-engine security detection:

EngineFunction
NAPSEAI-native IDS/NSM/IPS (unified detection)
dnsXaiAI DNS protection
Layer DetectorL2-L7 analysis

Learn more about Security Engines →

Layer 5: Intelligence

Collective threat intelligence:

ComponentFunction
DSMDecentralized consensus
MeshGlobal threat sharing
QSecBitUnified threat scoring
NEURONeural authentication

Layer 6: Monitoring

Observability stack:

ToolPurpose
PrometheusMetrics collection
GrafanaDashboards
VictoriaMetricsLong-term storage
ClickHouseAnalytics (Nexus)

Learn more about Monitoring →

Data Flow

┌─────────────────────────────────────────────────────────────────────────────────┐
│ DATA FLOW │
├─────────────────────────────────────────────────────────────────────────────────┤
│ │
│ ┌─────────┐ Raw ┌─────────┐ Qsecbit ┌─────────┐ │
│ │Guardian │ ──telemetry──► │ Nexus │ ───scores───► │ Mesh │ │
│ │Fortress │ (local) │ │ (derived) │ │ │
│ │Sentinel │ │ │ │ │ │
│ └─────────┘ └─────────┘ └─────────┘ │
│ │ │
│ ┌─────────┐ Hardened ┌─────────┐ Global ┌────┴────┐ │
│ │Guardian │ ◄───model──── │ Nexus │ ◄──updates── │ Mesh │ │
│ │Fortress │ (updates) │ │ (insights) │ │ │
│ │Sentinel │ │ │ │ │ │
│ └─────────┘ └─────────┘ └─────────┘ │
│ │
│ RAW DATA NEVER LEAVES THE EDGE │
│ │
└─────────────────────────────────────────────────────────────────────────────────┘

Security Model

Defense in Depth

Layer 1: XDP/eBPF (kernel)
└─► DDoS mitigation, rate limiting
Layer 2: Nftables (firewall)
└─► Port filtering, connection tracking
Layer 3: OVS (network)
└─► VLAN isolation, ACL enforcement
Layer 4: NAPSE (IDS/NSM/IPS)
└─► Signature + ML detection, protocol analysis
Layer 5: dnsXai (AI)
└─► ML classification
Layer 6: NEURO (identity)
└─► Neural authentication

Threat Mitigation

AttackDefense
DDoSXDP kernel filtering
Port ScanNftables rate limiting
VLAN HoppingOVS strict ACLs
Known ExploitsNAPSE signature matching
Zero-dayNAPSE ML-based anomaly detection
C2 CommunicationdnsXai ML detection
ImpersonationNEURO neural resonance

Repository Structure

hookprobe/
├── core/ # Core Intelligence
│ ├── htp/ # Transport Protocol
│ ├── qsecbit/ # Security Metric
│ └── neuro/ # Neural Resonance
├── products/ # Product Tiers
│ ├── sentinel/ # IoT Validator
│ ├── guardian/ # Travel Companion
│ ├── fortress/ # Edge Router
│ └── nexus/ # ML Brain
├── shared/ # Shared Modules
│ ├── dsm/ # Decentralized Mesh
│ ├── dnsxai/ # DNS AI
│ └── response/ # Threat Response
├── infrastructure/ # POD Deployments
│ └── pod-*/ # POD configurations
└── deploy/ # Deployment Scripts

Next Steps