
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
@walwarden/verifier
Advanced tools
Offline Evidence bundle verifier for Walwarden — verifies Manifest signatures and Audit-chain integrity.
Offline verifier for Walwarden Evidence bundles.
walwarden-verify checks that every Manifest in a Walwarden Evidence bundle was signed by the publishing organization's Ed25519 key, and that the Audit chain over that bundle matches its on-write algorithm. The CLI is read-only on disk, requires no network, and depends only on Node ≥20 — an auditor can run it on their own machine without trusting any Walwarden surface.
# One-shot, no global install:
npx @walwarden/verifier --bundle <evidence-bundle.tgz> --pubkey <pubkey.pem>
# Local install:
npm install -g @walwarden/verifier
walwarden-verify --bundle <evidence-bundle.tgz> --pubkey <pubkey.pem>
The publishing organization's public key is at:
https://walwarden.com/.well-known/walwarden-pubkey.pem
After a key rotation, prior keys remain downloadable at:
https://walwarden.com/.well-known/walwarden-pubkey-{YYYY-MM-DD}.pem
manifest.json inside the Evidence bundle has a signature field, the signature is valid Ed25519 over the manifest's canonical JSON form (with signature stripped), and the signature verifies against the supplied public key.checksumSha256. Bundles without artifacts skip this with a SKIP line — the auditor sees the omission rather than a silent pass.audit_events.json is intact:
seq starts at 1 and increases by 1 with no gapsprevHash equals the previous row's hashhash equals sha256(prevHash || canonicalJson({ at, jobId, kind, payload }))Default human-readable form, one line per check:
OK: manifest signature valid for backup_job=job_alpha
OK: manifest artifact sha256 matches for backup_job=job_alpha (a3c8f1b6e7…)
OK: audit chain intact through seq=42 (42 audit events)
OK: 1 manifests verified, 42 audit events chain-intact
Failure lines are deliberately verbatim so dashboard surfaces and runbooks can quote them without copy-paste drift:
FAIL: audit chain broken at seq=23, computed_hash=<64hex>, stored_hash=<64hex>
FAIL: manifest signature invalid for backup_job=<id>
Pass --json to emit one JSON object instead. Stable shape:
{
"ok": true,
"manifestResults": [...],
"chainResult": {...},
"summary": { "manifestsVerified": 1, "manifestsTotal": 1, "auditEventCount": 42, "chainOk": true }
}
| Code | Meaning |
|---|---|
| 0 | Every Manifest signature verified and the Audit chain is intact. |
| 1 | At least one Manifest signature did not verify, or the Audit chain diverged. The offending backup_job_id and audit-event seq are named on stdout. |
| 2 | Usage error (missing flag, unreadable file, malformed PEM, etc.). |
Walwarden Evidence bundle is a .tar.gz containing:
manifests/<backup_job_id>.manifest.json (one or more)
audit_events.json
artifacts/<artifact_key> (optional)
Manifest format follows @walwarden/core's BackupManifest (schemaVersion: 1) with a sibling signature: string (base64-encoded raw 64-byte Ed25519 signature). audit_events.json is a JSON array of stored audit-event rows (seq, at, kind, jobId, payload, prevHash, hash).
This package is published from the Walwarden monorepo at noncelogic/walwarden. The published tarball includes a pre-built dist/ (emitted by npm run build in this package, wired through the prepack step) so an auditor running npx @walwarden/verifier invokes the compiled JS directly — no TypeScript loader, no workspace dev dependencies, only Node ≥20.
The verifier is zero runtime dependencies by design — an auditor's npx install must be quick and its supply-chain footprint small.
FAQs
Offline Evidence bundle verifier for Walwarden — verifies Manifest signatures and Audit-chain integrity.
We found that @walwarden/verifier demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.