LoadBear
Security

What keeps your data yours.

Each protection here is a real mechanism in the running code — not a label. Here's each one, in plain terms.
The mechanisms

Eight protections, one by one.

No badges below — just what the code does, translated to what it means for your business.
01Isolation

Your workspace is walled off from the rest.

You share the platform with other businesses. You don't share the data. Every database query is scoped to your workspace before it runs, so another customer's workspace doesn't read yours — and yours doesn't read theirs.

The mechanism: the workspace filter is the query default — it sits on 769 workspace-scoped queries across the app.

02Privacy

Private stays private — even from the owner.

Inside a single workspace, each person's Compass conversations, priorities, and interventions belong to them. Even the workspace owner doesn't see another member's private threads — they're scoped to the user, not just to the workspace.

The mechanism: Compass chats and inbox rows are scoped by user as well as by workspace, so a member's private work isn't visible to anyone else.

03Access

Knowledge access is a posture you set.

Your Brain is the workspace's shared memory, and access to it runs through one control point. You set the access posture on your knowledge — open, restricted, or locked — and a locked collection denies everyone except the owner and admins. You decide how open each part is.

The mechanism: a single access-control chokepoint resolves open, restricted, and locked postures, with per-member overrides and per-type role gates.

04Audit

The important actions leave a record.

Actions across the platform are written to an audit log — who did what, and when. High-stakes operations record their trail, so the important moves can be read back later instead of vanishing.

The mechanism: 77 audit-log write points across the app, plus one shared logging helper the routes call.

05Consent

Opt-outs are checked before we email.

Marketing and outreach email checks the suppression list — the do-not-contact and unsubscribe record — before it sends. Transactional messages you trigger yourself — a login code, a receipt, a booking confirmation — are exempt by design.

The mechanism: one consent gate reads the suppression record in front of the send path, before an email leaves.

06Encryption

Your provider keys are encrypted at rest.

When you connect your own provider keys — the credentials LoadBear uses to act for you — they're encrypted with AES-GCM before they land in the database. It's the secret columns that are encrypted, not the entire database, and that's the honest scope.

The mechanism: bring-your-own-key credentials are sealed with AES-GCM, a fresh initialization vector per value, at the point they're stored.

07Fetch

One guarded door for fetching the web.

When the platform fetches a URL for you — a site to render, a link you handed it — the request goes through one guarded door. It validates the address, blocks private and internal network ranges, and re-checks the destination on each redirect — defense in depth against requests that try to reach inside.

The mechanism: a single guard validates the URL, refuses private, loopback, link-local, and metadata addresses, refuses URLs carrying embedded credentials, and re-validates each redirect hop.

08Export

Your data is yours to take.

You can export your workspace's data. The export leaves out the auth and session tables by design — logins, one-time codes, reset tokens — and redacts secret columns like keys and passwords. You get your business data; the security plumbing stays out of the file.

The mechanism: the exporter skips session, auth, reset, rate-limit, and migration tables, and redacts token, secret, password, api-key, and credential columns.

The honest version

Architecture, not a badge.

Each protection above is a mechanism you can point to in the running code — not a logo in a footer. That's the posture: security you can check, not security you take on faith. And what we don't claim, plainly: no compliance certifications yet. When that changes, it lands on this page with the work behind it — not before.
Talk to a human

Questions about any of this?

Pick whichever fits.