Secrets Engineering Platform

Every API key, token, and secret. Discovered, validated, and watched.

SE Validator finds the credentials sprawled across your repos, cloud accounts, and developer machines, then continuously checks them against public exposure and provider revocation without ever taking custody of the secret itself.

No raw secrets sent to us Open-source agent Deploy in < 10 min

Validates secrets for

AWS
GCP
Azure
GitHub
GitLab
Stripe
OpenAI
Anthropic
Slack
Vault
1Password
+ 80 more

Full provider list at docs.sevalidator.com/providers

Architecture

We can't leak what we never receive.

The first question any security buyer asks a credential-monitoring vendor is: "so I'm giving you all my secrets?" The answer is no. SE Validator is built so your raw credentials never leave your network.

Zero-custody validation

The open-source agent runs inside your infrastructure. It computes a salted HMAC fingerprint of each secret locally, and only fingerprints are sent to our API. We literally cannot decrypt or replay them.

Provider-side revocation checks

To check if a credential still works, the agent calls the provider's own validation endpoint (e.g., aws sts get-caller-identity) from inside your network. Result is a yes/no boolean, never the credential itself.

Open-source agent, auditable wire format

The agent's source is on GitHub. Wire format is documented; you can run it through a proxy and verify exactly what crosses the boundary.

Self-hosted option

On the Enterprise tier the entire stack (agent, validation service, and exposure-monitoring database) runs in your VPC. No data crosses your perimeter at all.

What actually leaves your network

LOCAL
Secret discovered in repo / env / vault. Stays on agent host.
LOCAL
HMAC-SHA256 computed with per-tenant salt. Raw secret zeroized.
WIRE
Fingerprint + provider type + last-rotated date sent over mTLS.
US
We compare against known-leaked fingerprint corpus, return result.
LOCAL
Agent calls provider directly to verify validity. Reports yes/no.

Verify yourself: read the threat model · audit the agent

Capabilities

What SE Validator does, end to end

Four jobs, one platform. Each can be turned on independently.

Discovery

Continuously scans your repos, CI logs, container images, cloud config, and developer laptops for credentials. 90+ provider patterns, custom-pattern support.

Validation

Checks each credential against the issuing provider to confirm it's live, what scopes it has, and when it expires. Caught a stale token? It tells you which service still uses it.

Exposure monitoring

Compares your credential fingerprints against public GitHub, paste sites, npm/PyPI packages, and our leaked-credential corpus. Hash-only, so your secret is never queried in plaintext.

Auto-rotation

Triggers rotation through your existing secrets manager (Vault, AWS SM, Doppler, 1Password) when a credential ages out, leaks, or fails validation. Zero-touch for supported providers.

Compliance artifacts

Audit-ready evidence packages mapped to SOC 2 CC6.1, ISO 27001 A.9.4, PCI-DSS 8.2.1, and HIPAA §164.312(a). Export to PDF or push to Drata / Vanta / Secureframe.

API + CLI + CI plugin

Block PRs that introduce new secrets via the GitHub / GitLab app. Wire findings into your SIEM via webhook or our REST API. Full API reference.

Onboarding

From signup to first finding in under 10 minutes

Three commands. No agents to babysit, no inbound network rules.

1

Install the agent

Single binary. Run as a daemon, a Kubernetes DaemonSet, or a one-shot CI step. Static builds for Linux, macOS, and Windows will be available on GitHub Releases.

2

Point it at what you want scanned

Pass a repo URL, a directory, an AWS account, or a Vault path. The agent walks the target, fingerprints credentials locally, and streams findings to your dashboard.

3

Wire up your response paths

Slack, PagerDuty, Jira, GitHub Issues, or a generic webhook. Choose what severity triggers what action. Define an auto-rotation policy if you want zero-touch.

Pricing

Honest, predictable pricing

Priced by tracked credentials, not by seat or by scan. Annual billing available.

Free

Solo developers and small open-source projects.

$0
Up to 25 tracked credentials
  • Discovery + validation
  • Public-leak monitoring
  • 1 repo / 1 cloud account
  • Community support
Start free

Business

Regulated workloads & compliance programs.

$0.30 / credential / mo
Min $999/mo · volume tiers apply
  • Everything in Team
  • SOC 2 / ISO / PCI evidence export
  • Drata / Vanta / Secureframe sync
  • Custom secret patterns
  • Audit-log export to SIEM
  • 99.9% uptime SLA
Contact sales

Enterprise

Air-gapped, self-hosted, large estates.

Custom
Self-hosted & air-gapped options
  • Everything in Business
  • Self-hosted in your VPC
  • Custom DPA & security review
  • Dedicated support engineer
  • Tailored pen-test access
  • 99.95% SLA + financial penalties
Talk to us

Free for accredited security researchers and OSS maintainers. Apply here.

Trust & Compliance

Independently verified, transparently reported.

The full trust center, including current pen-test summaries, sub-processors, vulnerability disclosure policy, and DPA, lives at trust.sevalidator.com.

SOC 2 Type II Since 2015

Audited annually by an independent CPA firm. Report available under NDA via the Trust Center.

Request SOC 2 report

Annual third-party penetration test

Performed annually by an independent firm. Executive summary published; full report under NDA.

Read summary

Encryption at rest & in transit

AES-256 for all stored data. TLS 1.3 for every network connection. Per-tenant key isolation, with customer-managed keys (BYOK) on the Enterprise tier.

See the details

Sub-processors & data residency

A live list of every sub-processor we use, what data they touch, and their certifications. US, EU, and customer-region deployments.

See list

Live status & incident history

Uptime over the trailing 90 days, every incident we've had, and what we did about it.

status.sevalidator.com

GDPR & DPA

Standard Contractual Clauses, EU sub-processor option, signed DPA available before contract.

Download DPA
FAQ

The questions security teams actually ask

Do you ever see my raw secrets?

No. The agent runs inside your network and computes an HMAC-SHA256 fingerprint locally using a per-tenant salt. Only the fingerprint, the provider type, and a few non-sensitive metadata fields are sent to our service over mTLS. We have no way to recover the original secret. Even under subpoena, all we could hand over is fingerprints.

What happens if SE Validator is itself breached?

An attacker who compromised our service would obtain (a) fingerprints they cannot reverse, (b) provider types, (c) the names and emails of customer admins. They would not obtain credentials. We publish our breach-response playbook at trust.sevalidator.com/incident-response.

Can I self-host the whole thing?

Yes, on the Enterprise tier. Helm chart and Terraform module for AWS, GCP, and Azure. Air-gapped installs supported. We publish offline update bundles signed with our release key.

How is SE Validator different from GitGuardian / TruffleHog / Spectral?

Those products focus on finding secrets in code. SE Validator does that too, but its primary job is validating and continuously verifying credentials end-to-end, including provider-side liveness checks, scope inspection, and auto-rotation. We're complementary to scanners and integrate with them via webhook.

What does "SE" stand for?

Secrets Engineering. The discipline of treating credentials and tokens as first-class infrastructure (versioned, monitored, owned, rotated) rather than configuration afterthoughts.

Where is the company based?

SE Validator does business out of San Francisco, CA. Cap table summary, registered agent, and company background are available on request.

Can I see the agent source before installing it?

Yes. It's Apache-2.0 licensed at github.com/sevalidator/agent. Build it yourself, audit the wire format, run it through a proxy and verify exactly what crosses the boundary.

Stop guessing what your secret sprawl looks like.

Install the agent against one repo. Get a free credential inventory and exposure report in under ten minutes. No credit card.

Start free trial