B.W.A TLS-Gate // Security Policy & Key Guarding

🛡️ Our Security Perspective

"Bits do not compromise, and neither does B.W.A."

In a world of constant surveillance and corporate remote telemetry, we enforce absolute local sovereignty. Security is not an afterthought; it is baked organically into our hardware and architecture workflows.


🔒 1. Safe Credentials Management

The active code contains placeholder credentials:

$soap_user = "tester";
$soap_pw = ".....";

CRITICAL INSTRUCTION: NEVER commit production passwords or authorization tokens to raw GitHub/GitLab repositories.
* Suggested Fix: Utilize environment variables or isolated local config files loaded outside the Web-Root directories to store sensitive API credentials:
php // Recommended Secure Credential Resolution: $soap_user = getenv('BWA_SOAP_USER') ?: "tester"; $soap_pw = getenv('BWA_SOAP_PASS') ?: ".....";


🔑 2. Cryptographic Enforcements

We strictly enforce modern cryptographic algorithms. Legacy protocols are deprecated across the entire CrumbForest network.

  • RSA Key Strength: All keypairs generated via genCSR must utilize a signature minimum of 2048-bit (defaulting to 2048/4096-bit).
  • Digest Algorithm: Legacy SHA-1 is completely banned for root or domain verification certificates. All local hashes are signed in sha256 as verified during the RC1 audit.

📡 3. Telemetry & Sovereignty Guardrails

  1. Air-Gap Capable: This code operates 100% offline. sample.html does not require internet capability to load stylesheets, fonts, icons, or libraries (Zero external CDNs).
  2. Local Session Limits: No database engines are attached to store user configurations. Temporary states are held purely inside the local browser context via localStorage or temporary RAM. No cookielogging permitted.

To report security concerns, contact the waldmitte Core-IT nodes directly. Keep the forest safe, keep the code clean.