Unix-native cryptographic attestation daemon for browser session continuity.
Privacy-first | Deterministic WASM parity | Silent rejection | Low overhead
ChronoSeal is a Linux-native cryptographic attestation service for browser session continuity and anti-automation defense. It runs as a small daemon, serves a browser WASM runtime, and validates signed heartbeat requests through deterministic server/client state progression.
The core idea is simple: a real browser session should be able to keep advancing a private cryptographic state, a hash chain, and a deterministic synthetic gene mutation chain. Basic HTTP clients, stale replay attempts, and incomplete automation should fail without receiving a useful failure reason.
ChronoSeal is a cost-raising attestation layer. It is not a CAPTCHA replacement, identity provider, fingerprinting product, or perfect bot blocker.
- Features
- How It Works
- Repository Layout
- Quick Start
- Build From Source
- Run Locally
- Install as a Service
- Docker
- CLI Reference
- Configuration
- HTTP API
- Browser Integration
- Storage Backends
- Operations
- Security Model
- Development
- Troubleshooting
- Further Reading
- License
- Native Unix daemon with
systemdservice support. - Axum-based HTTP service exposing
/init,/hb,/health,/metrics, and/stats. - Rust/WASM browser runtime for key generation, signing, VM execution, and mutation preview.
- Deterministic Synthetic Gene Mutation Engine shared by the server and WASM crates.
- Ed25519 signatures over canonical heartbeat payloads.
- Blake3 hash chain continuity across accepted heartbeats.
- Silent rejection semantics: invalid heartbeats still return
{"status":"ok"}. - Configurable behavioral trust checks for mouse movement, pauses, timing, and browser signals.
- Runtime storage abstraction with
sqlite-in-memory,sqlite-in-disk, andvalkeymodes. - CLI-first lifecycle, status, health, metrics, stats, config validation, key generation, and shell completions.
- Privacy-oriented design based on ephemeral session state rather than long-term identity tracking.
- Security response headers (CSP, X-Frame-Options, Referrer-Policy, Permissions-Policy, X-Content-Type-Options).
- Fingerprint validation with explicit bounds checking for aspect ratio, device pixel ratio, and hardware concurrency.
- DashMap-based concurrent rate limiter internals.
- Non-root Docker container execution.
- VM stack-depth protection.
- WASM and hashing panic-resistance safeguards.
- Progressive Web App (PWA) assets including favicon and web manifest support.
✅ ~9 MiB native daemon
✅ ~728 KiB WASM runtime
✅ Full RELRO
✅ PIE enabled
✅ Stack canaries
✅ NX enabled
ChronoSeal creates a short-lived browser attestation session and advances it through signed heartbeats.
- The browser loads the generated WASM package from
frontend/pkg. - The WASM runtime generates an Ed25519 keypair and returns the public key to JavaScript.
- The browser calls
POST /initwith the public key. - The server creates a session and returns:
session_id- initial salt
- initial hash chain head
- VM opcode program
- gene size
- mutation step
- mutation order
- heartbeat timing bounds
- For each heartbeat, the browser:
- executes the VM opcode program
- collects entropy and browser signal data
- previews the next synthetic gene commitment in WASM
- signs the canonical heartbeat payload
- posts the request to
POST /hb
- The server validates:
- session existence and expiration
- rate limit
- timestamp drift
- Ed25519 signature
- hash chain continuity
- behavioral trust checks
- mutation step
- gene commitment parity
- If the heartbeat is accepted, the server advances session state and returns the next salt and mutation order.
- If the heartbeat is rejected, the server returns only
{"status":"ok"}.
The silent failure model deliberately avoids exposing which validation failed.
.
├── Cargo.toml # Rust workspace
├── server/ # chronoseal daemon and CLI
├── shared/ # shared protocol, gene model, mutation engine
├── wasm/ # WASM runtime crate
├── frontend/ # static browser integration files
├── docs/ # architecture, API, deployment, threat model
├── scripts/ # build, install, release, dev helpers
├── chronoseal.service # systemd unit
├── Dockerfile # container image
└── docker-compose.yml # local container orchestration
Workspace members:
chronoseal-server: daemon binary crate. Binary name:chronoseal.shared: common cryptographic and mutation logic used by server and WASM.chronoseal-wasm: browser runtime compiled withwasm-pack.
For a full native install:
sudo bash scripts/install.shCheck the daemon:
chronoseal status --format json
chronoseal health
chronoseal metrics
sudo journalctl -u chronoseal -fFor local development without installing:
bash scripts/build.sh
cargo run -p chronoseal-server --bin chronoseal -- run \
--bind 127.0.0.1:3000 \
--frontend-dir frontendThen open:
http://127.0.0.1:3000
| Tool | Minimum | Purpose |
|---|---|---|
| Rust | 1.87 stable | Build server, shared crate, and tests |
| wasm-pack | 0.13 | Build browser WASM package |
| wasm32 target | current stable | WASM compilation target |
| systemd | 248+ | Optional native service management |
| Docker | 24.x | Optional container workflow |
| Docker Compose | 2.x | Optional local orchestration |
Install the WASM target and wasm-pack:
rustup target add wasm32-unknown-unknown
cargo install wasm-packBuild everything needed for the browser and server:
bash scripts/build.shThat script:
- Builds
wasm/withwasm-pack build --target web --release. - Replaces
frontend/pkgwith the generated WASM package. - Builds the
chronosealrelease binary.
Manual build:
wasm-pack build wasm --target web --release
rm -rf frontend/pkg
mv wasm/pkg frontend/pkg
cargo build -p chronoseal-server --bin chronoseal --releaseThe binary is written to:
target/release/chronoseal
Run the daemon directly from Cargo:
cargo run -p chronoseal-server --bin chronoseal -- run \
--bind 127.0.0.1:3000 \
--frontend-dir frontendProbe it:
curl http://127.0.0.1:3000/health
curl http://127.0.0.1:3000/stats
curl http://127.0.0.1:3000/metricsUse the CLI wrappers:
cargo run -p chronoseal-server --bin chronoseal -- status --bind 127.0.0.1:3000
cargo run -p chronoseal-server --bin chronoseal -- health --bind 127.0.0.1:3000
cargo run -p chronoseal-server --bin chronoseal -- stats --bind 127.0.0.1:3000 --format jsonThe installer builds the project, installs the binary, copies frontend assets, installs the systemd unit, and starts the service.
sudo bash scripts/install.shInstalled paths:
| Path | Purpose |
|---|---|
/usr/local/bin/chronoseal |
daemon and CLI binary |
/opt/chronoseal/frontend |
static frontend assets copied by installer |
/etc/systemd/system/chronoseal.service |
service unit |
/run/chronoseal.pid |
default PID file |
Service commands:
sudo systemctl status chronoseal
sudo systemctl restart chronoseal
sudo systemctl disable --now chronoseal
sudo journalctl -u chronoseal -fBuild and run with Compose:
docker compose up -d --buildThe provided container exposes port 3000.
curl http://127.0.0.1:3000/healthImportant: the Dockerfile copies frontend/ from the working tree. Build the WASM package into frontend/pkg before building the container if you need the browser runtime inside the image:
bash scripts/build.sh
docker compose up -d --buildChronoSeal containers run as a dedicated non-root user by default.
This reduces the impact of potential container compromise and follows container security best practices.
Run:
chronoseal --helpGlobal options:
| Option | Environment | Description |
|---|---|---|
--config <path> |
CHRONOSEAL_CONFIG |
Explicit TOML config path |
| `--format <text | json | yaml>` |
| `--output <text | json | yaml>` |
--log <filter> |
CHRONOSEAL_LOG |
Tracing filter, for example info or chronoseal=debug |
Commands:
| Command | Description |
|---|---|
chronoseal run |
Run the daemon |
chronoseal status |
Check configured daemon reachability and PID state |
chronoseal health |
Perform an HTTP health probe |
chronoseal config check |
Validate and print effective configuration |
chronoseal generate keypair |
Generate an Ed25519 keypair |
chronoseal version |
Print version/build information |
chronoseal db-type |
List database backend support status |
chronoseal metrics |
Fetch Prometheus metrics from the running daemon |
chronoseal stats |
Fetch service statistics from the running daemon |
chronoseal completion <shell> |
Generate shell completions |
Examples:
chronoseal run --bind 127.0.0.1:3000 --frontend-dir frontend
chronoseal run --db-type sqlite-in-memory
chronoseal status --format json
chronoseal health --config /etc/chronoseal/config.toml
chronoseal config check --output yaml
chronoseal generate keypair --format json
chronoseal completion bash > chronoseal.bashConfiguration precedence:
- CLI flags
CHRONOSEAL_*environment variables- TOML config file
- built-in defaults
Default config discovery:
- path from
CHRONOSEAL_CONFIG, if it exists /etc/chronoseal/config.toml$XDG_CONFIG_HOME/chronoseal/config.toml~/.config/chronoseal/config.toml
Example:
bind = "0.0.0.0:3000"
db_type = "sqlite-in-memory"
pid_file = "/run/chronoseal.pid"
db_path = "/var/lib/chronoseal/chronoseal.sqlite"
frontend_dir = "/usr/share/chronoseal/frontend"
log_file = "/var/log/chronoseal/chronoseal.jsonl"
heartbeat_min_interval_ms = 12000
heartbeat_max_interval_ms = 25000
expiration_minutes = 30
rate_limit_count = 5
rate_limit_window_secs = 10
max_timestamp_drift_ms = 30000
min_mouse_total_dist = 10.0
max_mouse_avg_speed = 2.0
min_pause_count = 1
require_mouse_activity = true
gene_size = 512
mutation_rounds = 4Common environment variables:
| Variable | Description |
|---|---|
CHRONOSEAL_CONFIG |
Config file path |
CHRONOSEAL_BIND |
Bind address, for example 127.0.0.1:3000 |
CHRONOSEAL_DB_TYPE |
sqlite-in-memory, sqlite-in-disk, or valkey |
CHRONOSEAL_DB_PATH |
SQLite database path |
CHRONOSEAL_FRONTEND_DIR |
Static frontend directory served at / |
CHRONOSEAL_PID_FILE |
PID file path |
CHRONOSEAL_LOG |
Tracing filter |
CHRONOSEAL_LOG_FILE |
Optional JSON log file |
CHRONOSEAL_STATE_DIR |
Base state directory used for default db_path |
CHRONOSEAL_HEARTBEAT_MIN_INTERVAL_MS |
Minimum accepted heartbeat interval |
CHRONOSEAL_HEARTBEAT_MAX_INTERVAL_MS |
Maximum accepted heartbeat interval |
CHRONOSEAL_EXPIRATION_MINUTES |
Session lifetime |
CHRONOSEAL_RATE_LIMIT_COUNT |
Requests allowed in the rate-limit window |
CHRONOSEAL_RATE_LIMIT_WINDOW_SECS |
Rate-limit window length |
CHRONOSEAL_MAX_TIMESTAMP_DRIFT_MS |
Accepted client timestamp drift |
CHRONOSEAL_MIN_MOUSE_TOTAL_DIST |
Minimum mouse movement distance |
CHRONOSEAL_MAX_MOUSE_AVG_SPEED |
Maximum average mouse speed |
CHRONOSEAL_MIN_PAUSE_COUNT |
Minimum detected pause count |
CHRONOSEAL_REQUIRE_MOUSE_ACTIVITY |
Enable or disable mouse activity requirement |
CHRONOSEAL_GENE_SIZE |
Synthetic gene buffer size |
CHRONOSEAL_MUTATION_ROUNDS |
Mutation rounds per program |
Validate configuration:
chronoseal config check --format yamlChronoSeal exposes a small HTTP surface:
| Method | Path | Purpose |
|---|---|---|
POST |
/init |
Start a browser attestation session |
POST |
/hb |
Submit a signed heartbeat |
GET |
/health |
Health probe |
GET |
/metrics |
Prometheus metrics |
GET |
/stats |
Runtime statistics |
GET |
/ |
Static frontend files from frontend_dir |
Request:
{
"public_key": "hex-encoded 32-byte Ed25519 verifying key"
}Response:
{
"session_id": "64-char hex string",
"salt": "32-char hex string",
"opcodes_b64": "base64-encoded VM program",
"initial_hash": "64-char hex string",
"expires_at": 1234567890123,
"heartbeat_min_interval_ms": 12000,
"heartbeat_max_interval_ms": 25000,
"gene_size": 512,
"mutation_step": 1,
"mutation_order_b64": "base64-encoded mutation program"
}Request:
{
"session_id": "64-char hex",
"prev_hash": "64-char hex",
"timestamp": 1234567890123,
"entropy_data": {
"events": [
{ "x": 412.0, "y": 308.5, "t": 1234.567 }
]
},
"stack_state": {
"stack": [2971406957, 1234567890],
"ip": 42
},
"fingerprint": {
"aspectRatio": "1.7777777778",
"devicePixelRatio": 2,
"hardwareConcurrency": 8
},
"mutation_step": 1,
"gene_commitment": "64-char hex",
"signature": "128-char hex"
}Accepted response:
{
"status": "ok",
"next_salt": "32-char hex string",
"next_mutation_step": 2,
"next_mutation_order_b64": "base64-encoded mutation program"
}Rejected response:
{
"status": "ok"
}ChronoSeal validates browser fingerprint inputs before processing.
| Field | Accepted Range |
|---|---|
| aspectRatio | finite positive value |
| devicePixelRatio | > 0 |
| hardwareConcurrency | 1..=256 |
Invalid values including NaN, Infinity, negative values, malformed numeric strings, and out-of-range CPU counts are rejected.
Detailed API semantics are documented in docs/API.md.
The frontend imports the generated WASM module from frontend/pkg.
import init, {
generate_keypair,
get_public_key,
sign_message,
compute_next_hash,
run_program,
init_gene_state,
preview_gene_commitment,
commit_gene_preview,
discard_gene_preview,
current_gene_commitment
} from './pkg/chronoseal_wasm.js';Call await init() before invoking exported functions.
WASM exports:
| Function | Purpose |
|---|---|
generate_keypair() |
Generate a browser-local Ed25519 keypair and return public key hex |
get_public_key() |
Return current public key hex |
sign_message(msg) |
Sign a canonical UTF-8 payload and return signature hex |
compute_next_hash(prev, ts, entropy, stack, salt) |
Compute next Blake3 hash-chain value |
run_program(b64) |
Execute a base64 VM program and return stack state |
init_gene_state(gene_size) |
Initialize the synthetic gene buffer |
preview_gene_commitment(order_b64, session_id, mutation_step, rounds) |
Preview next gene commitment |
commit_gene_preview() |
Commit the previewed gene mutation after accepted heartbeat |
discard_gene_preview() |
Discard previewed mutation after rejection or error |
current_gene_commitment(session_id, mutation_step) |
Return current committed gene commitment |
String-returning WASM functions return an empty string on error. Boolean-returning functions indicate success or failure directly.
Set storage mode with db_type or CHRONOSEAL_DB_TYPE.
| Backend | Description |
|---|---|
sqlite-in-memory |
Default ephemeral session storage. State is lost on restart. |
sqlite-in-disk |
SQLite database persisted at db_path. |
valkey |
Valkey-compatible backend mode. |
For Valkey mode, the server reads CHRONOSEAL_VALKEY_ADDR (defaulting to 127.0.0.1:6666) and establishes a thread-safe connection pool using r2d2 and the redis client crate. It leverages native Valkey sets for session ID indexing and native key expiration for automatic session cleanup. If the Valkey connection fails, the server falls back to in-memory SQLite and logs a warning.
To quickly run a local Valkey/Redis instance for testing or production:
# Option A: Start a local Valkey/Redis server on port 6666
valkey-server --port 6666 --bind 127.0.0.1
# Or
redis-server --port 6666 --bind 127.0.0.1
# Option B: Spin up via Docker
docker run -d --name chronoseal-valkey -p 6666:6379 valkey/valkey:latestConfigure ChronoSeal to use it:
export CHRONOSEAL_DB_TYPE=valkey
export CHRONOSEAL_VALKEY_ADDR=127.0.0.1:6666If your Valkey or Redis server requires credentials or secure TLS:
- Password Only:
redis://:your_password@127.0.0.1:6666 - Username & Password:
redis://your_username:your_password@127.0.0.1:6666 - Secure Connection (SSL/TLS):
rediss://your_username:your_password@secure-host.example.com:6379
chronoseal health
curl http://127.0.0.1:3000/healthchronoseal status --format jsonchronoseal metrics
curl http://127.0.0.1:3000/metricschronoseal stats --format json
curl http://127.0.0.1:3000/statssudo journalctl -u chronoseal -fUse RUST_LOG=info or CHRONOSEAL_LOG=info for normal production operation. Avoid debug logging in production because internal identifiers may appear in logs.
ChronoSeal should run behind TLS in production. Terminate HTTPS at a reverse proxy such as nginx, Caddy, HAProxy, or a cloud load balancer, then proxy to the local daemon.
Example nginx location:
location / {
proxy_pass http://127.0.0.1:3000;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}ChronoSeal is designed to raise the cost of automation and replay attacks.
It helps defend against:
- replayed heartbeats
- stale hash chain state
- forged heartbeat signatures
- mutation commitment tampering
- session cloning using only a stolen
session_id - simple scripted clients that do not run the WASM runtime
- basic browser automation with weak interaction simulation
- malformed browser fingerprint payloads
- invalid numeric fingerprint values
- protocol abuse through oversized fingerprint attributes
It does not claim to stop:
- real users intentionally acting as bots
- fully resourced browser farms
- attackers with complete control of a real browser and realistic input
- server-side application vulnerabilities
- account abuse outside ChronoSeal's attestation boundary
- long-term identity or fraud decisions by itself
Privacy posture:
- Sessions are short-lived.
- The private key is generated in the browser runtime and is not sent to the server.
- ChronoSeal validates continuity and plausibility rather than creating persistent user identities.
- Invalid heartbeats are rejected silently to reduce oracle feedback.
Read the full model in docs/THREAT_MODEL.md.
Run the standard checks:
cargo fmt --check
cargo check --workspace
cargo test --workspace
cargo clippy --workspace --all-targets -- -D warningsFormat:
cargo fmtBuild WASM during frontend/runtime changes:
wasm-pack build wasm --target web
rm -rf frontend/pkg
mv wasm/pkg frontend/pkgBuild release artifacts:
bash scripts/build.shcargo test -p chronoseal-server fingerprint
cargo test -p chronoseal-serverThe fingerprint validation suite verifies:
- aspect ratio bounds
- device pixel ratio bounds
- hardware concurrency bounds
- malformed numeric input handling
Generate shell completion:
chronoseal completion bash > chronoseal.bash
chronoseal completion zsh > _chronosealRebuild the WASM package and make sure frontend/pkg/chronoseal_wasm.js and the .wasm file exist:
bash scripts/build.shThe .wasm file must be served as application/wasm. The built-in static file service handles this for normal ChronoSeal deployments.
Check that the daemon is running and that the CLI is probing the correct bind address:
sudo systemctl status chronoseal
chronoseal health --bind 127.0.0.1:3000
curl http://127.0.0.1:3000/healthThat is the expected response for rejected heartbeats. Common causes include:
- invalid signature
- stale
prev_hash - stale
mutation_step - mismatched
gene_commitment - timestamp drift beyond the configured window
- insufficient mouse movement or pause data
- rate limiting
- expired session
Use local development logs and tests to debug integration issues. Avoid debug logs in production.
Ensure the daemon user can create and write the configured database path:
sudo mkdir -p /var/lib/chronoseal
sudo chown -R chronoseal:chronoseal /var/lib/chronosealUse:
db_type = "sqlite-in-disk"
db_path = "/var/lib/chronoseal/chronoseal.sqlite"Check precedence. CLI flags override environment variables, environment variables override config files, and config files override built-in defaults.
Print the effective config:
chronoseal config check --format yaml- Added security response headers.
- Hardened browser fingerprint validation.
- Improved WASM-side error handling.
- Improved hashing safety.
- Added VM stack-depth protection.
- Refactored rate limiter internals using DashMap.
- Improved cleanup task efficiency.
- Improved configuration validation.
- Improved deployment hardening.
- Added favicon and web manifest assets.
- Added CSP defense-in-depth support.
- Reduced protocol-state logging in browser consoles.
- 38/38 server tests passing.
- Additional fingerprint validation test coverage.
ChronoSeal is intentionally designed to maintain a small deployment footprint while providing browser attestation, cryptographic verification, session continuity, and WASM execution capabilities.
Typical v1.0.2 release artifact sizes:
| Component | Approximate Size |
|---|---|
Native daemon (chronoseal) |
~9.1 MiB |
Browser runtime (chronoseal_wasm.wasm) |
~728 KiB |
WASM static library (libchronoseal_wasm.rlib) |
~188 KiB |
Example:
chronoseal
9501232 bytes
≈ 9.06 MiB
chronoseal_wasm.wasm
745569 bytes
≈ 728 KiB
These compact artifact sizes help:
- reduce deployment overhead
- minimize container image growth
- improve cold-start performance
- reduce browser download size
- simplify edge and self-hosted deployments
ChronoSeal intentionally avoids heavyweight runtime dependencies and large browser frameworks, allowing the complete attestation stack to remain compact while preserving functionality.
- Architecture
- API Reference
- Deployment Guide
- Threat Model
- Design Philosophy
- Privacy Policy
- WASM Build Guide
- Refactoring v0.6.0
- Contributing
- Security Policy
ChronoSeal is licensed under either of:
- MIT, see LICENSE
- Apache-2.0, see LICENSE-APACHE
at your option.