Category: Security & Access Management Applies to: All public-facing forms Availability: All workspaces — no setup required
NIZU Shield is a built-in, invisible bot protection system that secures every public form in your workspace — without third-party services, external API calls, tracking scripts, or API keys.
Unlike reCAPTCHA, nothing is sent to an outside provider. No cookies are set, no visitor data leaves your server, and your users never see a checkbox, a puzzle, or a "select all the traffic lights" challenge. Protection runs silently in the background while the visitor fills in the form.
This makes NIZU Shield a strong fit for organizations with strict data-protection requirements (GDPR, internal privacy policies, EU data-residency expectations), and for anyone who simply wants forms that work — everywhere, instantly, with zero configuration.
NIZU Shield covers all seven public forms out of the box:
All six validating controllers enforce the same checks server-side, so coverage is consistent across the entire platform with no per-form configuration.
NIZU Shield combines three independent layers. Every layer is validated server-side — a bot must defeat all three to get a submission through.
When a protected form is rendered, the visitor's browser receives a small cryptographic puzzle: it must find a nonce such that:
SHA-256(salt + nonce) → begins with four leading zerosSolving this requires roughly 65,000 hash attempts, which a modern browser completes in about one second using the native Web Crypto API — silently, while the visitor is still typing. The visitor notices nothing.
What this proves is simple but powerful: a real JavaScript engine actually rendered the page. The overwhelming majority of form-spam bots never load or execute the page at all — they scrape the form once and then POST directly to the endpoint, thousands of times. Without a valid proof-of-work solution, every one of those submissions is rejected before it touches your data.
For a legitimate visitor the cost is one second of invisible background computation. For a spammer trying to submit at scale, the cost multiplies with every single attempt — turning cheap bulk spam into an expensive operation.
Each form contains a decoy field named email_repeat that is visually hidden from human visitors. People never see it, so they never fill it.
Bots, however, parse the raw HTML and auto-fill every field they find — including the trap. Any submission that arrives with the honeypot populated is rejected immediately.
Every challenge issued by the server is HMAC-signed with a per-workspace secret and carries the timestamp of when the form was rendered. The secret is generated automatically into your workspace settings the first time a protected form is rendered — there is nothing to create, copy, or configure.
On submission, the server rejects any request that is:
| Condition | Why it's blocked |
|---|---|
| Submitted in under 2 seconds | No human reads and completes a form that fast — this is automation. |
| Older than 2 hours | Stale challenges can't be stockpiled and used later. |
| Tampered with | Any modification to the challenge breaks the HMAC signature. |
| Reused | Each challenge is single-use. A solved challenge cannot be replayed for bulk submissions. |
Because the signature is bound to your workspace's own secret, a challenge harvested from one workspace is useless against any other.
Each layer targets a different class of bot:
A failure in any single layer doesn't compromise protection, and all decisions are made server-side, where a bot can't interfere.
NIZU Shield is implemented as a third verification protocol alongside the existing reCAPTCHA v2 and reCAPTCHA v3 options. It plugs into the same validation pipeline, which means:
| NIZU Shield | reCAPTCHA v2 | reCAPTCHA v3 | |
|---|---|---|---|
| External service | None | ||
| API keys required | No | Yes | Yes |
| Visitor data shared with third party | No | Yes | Yes |
| Visible to users | Invisible | Checkbox / image puzzles | Invisible |
| Works without Google connectivity | Yes | No | No |
| GDPR data-transfer considerations | None | Yes | Yes |
| Setup effort | Zero | Keys + domain config | Keys + domain config |
If your workspace currently uses reCAPTCHA and you want to remove the external dependency, switch the protocol to NIZU Shield in Settings → Security. Existing forms pick up the change immediately.