RedactNode
Sovereign AI Governance for Malaysia & SEA

The Security Layer Between Your Data and AI

A self-hosted governance gateway for Southeast Asian enterprises. RedactNode detects Malaysian PII locally, tokenizes identifiers before dispatch to public LLMs, and records immutable SHA-256 audit trails.

01 / Browser

Tanda Guard Chrome MV3 extension intercepts unmasked prompts directly on web chat interfaces.

02 / Gateway

FastAPI proxy masks Malaysian MyKad, phone numbers, and secrets before external transit.

03 / Portal

Safe Zone Next.js portal provides protected document chat, OCR redaction, and audited reveals.

Interactive Policy Boundary

See how RedactNode intercepts sensitive data in real-time

Test a sample enterprise prompt containing Malaysian identifiers or secrets. Toggle between a protected Tanda Gateway transit and an unmanaged direct submission.

Sample Inquiries:
Client Prompt / Internal RequestEditable
Deterministic Entities Detected (2)Zero LLM Leakage
[MYKAD_1](Malaysian NRIC)[PHONE_1](Malaysian Mobile)
Sanitized Payload to Provider
ACTION: TOKENIZE
Patient Tan Ah Beng (MyKad: [MYKAD_1], Tel: [PHONE_1]) discharged with hypertension. Review medication schedule.
Audit Hash Chain:sha256:7f4a28...b991 (Recorded)
Transient Token Store:Redis TTL 3600s (Scoped)

Raw PII remains inside your self-hosted perimeter. Third-party providers receive only contextual tokens, allowing safe reasoning without permanent identifier exposure.

Regulatory & Compliance Alignment

Architected for environments where data mishandling has statutory consequences

Malaysian PDPA (Act 709)

Enforces strict consent boundaries and cross-border transfer controls before prompt data reaches external providers.

BNM RMiT Guidelines

Aligns with Bank Negara Malaysia risk management rules for third-party technology and cloud integrations.

MOH Health Data Sovereignty

Guarantees patient identification numbers (MyKad) and clinical notes stay strictly inside approved perimeters.

Hash-Chained Audit Trails

Immutable SHA-256 verification records for internal compliance officer review and direct SIEM webhook export.

Architectural Enforcement Pillars

Three distinct checkpoints. One verifiable boundary.

RedactNode does not rely on employee policy compliance or manual reminders. It enforces zero-leak privacy across the browser, application gateway, and governance portal.

Pillar 01 / Browser Layer

Tanda Guard

A Chrome Manifest V3 enterprise extension deployed across staff workstations. Intercepts prompt inputs on ChatGPT, Claude, and Gemini before transmission.

  • Local DOM inspection prior to network dispatch
  • Blocks unmasked paste flows of Malaysian NRIC & Phone numbers
  • One-click handoff to masked Safe Zone workspace
Pillar 02 / Protected Gateway

Tanda Proxy Gateway

An asynchronous, high-throughput FastAPI gateway running in customer infrastructure. Evaluates prompt payloads before external transit.

  • Presidio & spaCy engines with strict Malaysian rule sets
  • Bidirectional stream masking with temporary Redis TTL
  • ONNX-backed prompt injection & secret scanning
Pillar 03 / Workspace & Audit

Safe Zone Portal

An authenticated Next.js portal providing sanctioned AI chat, document extraction, manual PDF redaction, and compliance administration.

  • In-memory PDF & image OCR with permanent redaction
  • Role-based access control (Admin, Employee, Reviewer)
  • Hash-chained audit log with CSV export & SIEM webhooks
Operational Telemetry

One policy boundary. Every way your enterprise uses AI.

RedactNode acts as the verifiable gatekeeper between your workforce and external AI providers. Every request answers two non-negotiable questions: can this sensitive data leave the boundary, and is this model approved?

Live Policy Execution Stream

Real-time evaluation events across customer infrastructure

GATEWAY_STATUS: ACTIVE
TimestampApplication / TargetDetected EntityPolicy StandardAction
14:32:11ChatGPT Web (Tanda Guard)MyKad NRIC (850315-14-5521)PDPA Act 709TOKENIZE
14:31:05Claude 3.7 (API Gateway)AWS_ACCESS_KEY_IDSecrets DefenseBLOCK
14:28:40Gemini 2.5 (Tanda Guard)Public General InquiryBaseline PolicyALLOW
14:20:19Safe Zone PortalClinical PDF (IC 910214...)MOH SovereigntyREDACT
14:15:52Internal HR CopilotMaybank Account (514012...)BNM RMiTTOKENIZE
Developer & Gateway Integration

An OpenAI-compatible drop-in boundary

Integrate internal microservices, automated agents, or LangChain / LlamaIndex workflows with zero architectural rewrites. Change the base URL to point at your self-hosted Tanda Proxy.

OpenAI & Anthropic compatible — Standard `/v1/chat/completions` schema
Streaming-safe tokenization — Intercepts identifiers mid-stream without breaking SSE chunks
Docker & Kubernetes native — Packaged as a lightweight container with Prometheus metrics
1from fastapi import FastAPI
2from redactnode.gateway import RedactNodeMiddleware
3
4app = FastAPI()
5
6# Mount the RedactNode Malaysian compliance boundary
7app.add_middleware(
8    RedactNodeMiddleware,
9    ruleset="malaysia_strict",      # MyKad, Phone, Banking IDs
10    audit_chain=True,               # Immutable SHA-256 hash log
11    token_ttl_seconds=3600,         # Transient token lifecycle
12    injection_shield="onnx_v2"      # Scan prompt injection & secrets
13)
14
15@app.post("/v1/chat/completions")
16async def chat_proxy(request: Request):
17    # Upstream receives sanitized context:
18    # "Customer [PERSON_1] with NRIC [MYKAD_1] requested loan status."
19    response = await dispatch_to_llm(request.sanitized_payload)
20
21    # Internal authorized caller receives unmasked response
22    return response.restore_tokens()
Sector Implementations

Targeted controls for regulated Malaysian operations

Every sector handles different classes of sensitive data. RedactNode applies specific detection rules and retention thresholds to match your operational boundaries.

Healthcare & Clinics

Hospital Networks & Private Practice

Sanitize Clinical Summaries & Patient Inquiries

Enable physicians and administrative staff to summarize diagnostic notes and patient records without transmitting MyKad numbers, mobile contacts, or health identifiers to public LLMs.

Enforced Safeguards:

  • Automatic redaction of Malaysian NRIC (MyKad)
  • Temporary token mapping for clinical session context
  • No patient data persisted in external provider training logs
Financial Services

Commercial Banks, Takaful & Fintech

Safeguard Customer KYC, Account & Audit Details

Provide compliance and underwriting teams with a controlled AI path that masks Malaysian banking account formats, tax identifiers, and credit references under Bank Negara Malaysia RMiT standards.

Enforced Safeguards:

  • Masking of Malaysian bank account formats & tax IDs
  • Verifiable hash chains for every outbound prompt
  • Direct integration into existing core banking proxies
GLCs & Enterprise

Government-Linked Companies & Corporate Legal

Protect Tender Submissions & Internal Contracts

Empower legal, procurement, and commercial teams to analyze confidential tender documents and vendor contracts while preserving internal trade secrets and unannounced commercial terms.

Enforced Safeguards:

  • In-memory PDF and DOCX permanent redaction
  • Role-based permission matrix for document reveal approval
  • Audited internal reveal logging with user confirmation reason
Higher Education

Public & Private Universities

Controlled Academic Research & Student Records

Deploy Tanda Guard across university faculties to stop accidental pasting of student identification data and grant researchers a sanctioned portal for working with field datasets.

Enforced Safeguards:

  • Browser checkpoint on university workstations
  • Sanctioned Safe Zone portal for student research analysis
  • Configurable rule sets by department or research group
Deployment Architecture

Single-tenant architecture. Built for your infrastructure.

RedactNode is not a multi-tenant public cloud. Every deployment runs within the customer's designated perimeter so raw identifiers never cross unmanaged boundaries.

Self-Hosted Docker

Developer & Local Staging

Single-node testing

Deploy RedactNode on a local machine or staging VPC to benchmark gateway latency, masking fidelity, and audit format.

Included Capabilities:

  • Docker Compose stack with automated Caddy TLS
  • FastAPI Tanda Proxy with OpenAI-compatible API
  • Malaysian PII detection (MyKad, Phone, Banking)
  • Local Safe Zone portal for document review
  • In-memory Redis mapping store
Managed 30-Day Evaluation

Enterprise PoV Pilot

Private VPC / Cloud

A structured, 30-day proof-of-value deployment for compliance, legal, or IT governance teams in Malaysian organizations.

Included Capabilities:

  • Dedicated single-tenant deployment in customer VPC
  • Tanda Guard extension rollout for pilot users
  • Custom Malaysian compliance rules (PDPA 2026 / BNM)
  • Hash-chained audit log with CSV and SIEM export
  • Assisted deployment and security architectural review
Air-Gapped / Sovereign

High-Assurance Cluster

Dedicated Infrastructure

For GLCs, banks, and healthcare networks requiring air-gapped operations, custom retention, and regulatory sign-off.

Included Capabilities:

  • Air-gapped and isolated network deployment options
  • PostgreSQL audit persistence with retention policies
  • Permanent OCR document sanitization (PDF & DOCX)
  • Role-based access control with audit reveal approval
  • Custom SLA, compliance attestations, and dedicated engineer support
Operational AI Governance

Deploy an evaluation node on your own infrastructure

Validate gateway latency, test Malaysian PII detection rules with sample enterprise workloads, and review the hash-chained audit format inside your security boundary.