AIEGES Shield
AIEGES Shield is the zero-trust security layer for AI workflows. It intercepts prompts across 13+ AI platforms, classifies threats with a Rust-native Aho-Corasick engine in sub-millisecond latency, and sanitizes traffic through a Deno gateway with AES-SIV PII redaction and cryptographic secret substitution.
Three-tier security cascade
Shield operates as a high-performance security funnel. Traffic flows through three stages: browser interception, Aho-Corasick classification, and gateway-level sanitization.
The browser extension intercepts prompts across 13+ AI platforms, detects secrets, and offers vault storage. The Aho-Corasick classifier runs 365+ threat signatures at sub-millisecond latency using a Rust-native WASM engine. The unified gateway performs context-aware redaction with AES-SIV encryption and routes audit records to the sovereign audit ledger.
Deploy the gateway
The gateway runs as a Docker Compose stack with the Multinex Gateway on port 8080, sovereign audit ledger, graph memory store, and Prometheus + Grafana observability.
# Gateway quickstart
cd products/munx-aieges-shield/gateway
docker compose up --build
# Services exposed:
# Port 8080 — Multinex Gateway (MCP entry point)
# Port 3000 — Grafana observability dashboardGateway configuration
Shield's gateway is configured through shield.toml with sections for the gateway proxy and compliance policy enforcement.
# shield.toml
[shield]
gateway_port = 8090
proxy_enabled = true
[compliance]
enable_pii_redaction = true
block_prompt_injection = trueVertical compliance shields
AIEGES Shield ships with industry-specific pattern sets, each tuned for the regulatory requirements of its vertical.
- Legal Shield — Attorney-client privilege, ITAR, case numbers (50+ patterns)
- Healthcare Shield — HIPAA, PHI, medical record numbers, diagnosis data (75+ patterns)
- Financial Shield — PCI-DSS, SOX, SWIFT/IBAN, wire transfer routing (70+ patterns)
- Web3 Shield — Seed phrases, wallet addresses, private keys (20+ patterns)
Extension quick start
The browser extension provides immediate coverage on public AI surfaces. Install from the Chrome Web Store or build from source.
# Build from source
cd products/munx-aieges-shield/extension
pnpm install && pnpm build
# Load in Chrome:
# chrome://extensions → Developer mode → Load unpacked → select dist/Internal Implementation Details
The following section contains restricted technical specifications, internal state machine diagrams, and low-level kernel integration details. Access is limited to L4 clearance.
Engineering Clearance
Deployment internals and security boundary specifications are restricted. Enter your clearance code to proceed.
Multinex Secure Gateway