SIEM Integration
Veilio pushes real-time audit events to your SIEM or security stack. Veilio does not replace your SIEM — it feeds it.
Who is this for?
Security teams (CISO, SOC) monitoring tokenization and detokenization
Compliance / DPO teams needing centralized audit trails
Enterprise customers on Splunk, Microsoft Sentinel, QRadar, Elastic, or custom collectors
Enterprise plan required (or on-premise deployment).
Setup (dashboard)
Sign in as the organization Owner.
Open Dashboard → Webhooks.
Choose Generic webhook or Splunk HEC.
Enter your HTTPS collector URL.
Select event filters (which
event_typevalues to forward).Create — copy the signing secret (generic webhook only; shown once).
Click Test to send a
SIEM_TESTevent.
Event payload
No plaintext PII is ever included in SIEM payloads.
Event type catalogue
Configure which events to forward per destination. All types below are available as dashboard filters.
event_type
Severity
When emitted
TOKENIZE
medium
A new token is created
DETOKENIZE
high
Plaintext is revealed via detokenize
SHRED
high
A token is cryptographically destroyed
API_KEY_CREATE
high
A new API key is created
API_KEY_DELETE
high
An API key is revoked or deleted
USER_CREATE
medium
A new user account is created
USER_UPDATE
medium
User profile or settings updated
USER_LOGIN
medium
Successful dashboard login
SIEM_TEST
low
Manual test from Webhooks dashboard
Recommended filters for SOC
Data exfiltration monitoring
DETOKENIZE, SHRED
Credential / key hygiene
API_KEY_CREATE, API_KEY_DELETE
Access anomalies
USER_LOGIN, DETOKENIZE
Full audit trail
All event types
Signature verification (generic webhook)
Header: X-Veilio-Signature: t=<unix_timestamp>,v1=<hmac_sha256_hex>
Signed string: <unix_timestamp>.<raw_json_body>
Verification steps
Parse
tandv1from the header.Reject if
tis older than 5 minutes (replay protection).Compute
HMAC-SHA256(secret, t + "." + rawBody)as hex.Compare with
v1using a constant-time comparison.
Node.js example
Splunk HEC
URL:
https://<host>:8088/services/collector/eventProvide your HEC token in the Veilio form.
Optional: Splunk index and sourcetype (
_jsonby default).Authorization header:
Splunk <token>
Common SIEM mappings
Splunk
Use Splunk HEC destination type in Veilio
Microsoft Sentinel
Logic App or Azure Function behind generic webhook → map event_type to incidents
QRadar
Custom HTTPS log source → parse JSON, use event_type as category
Elastic / OpenSearch
Ingest pipeline on generic webhook; index by organization_id + event_type
Palo Alto XSOAR
Webhook integration → incident mapping on DETOKENIZE + SHRED
Sentinel quick pattern
Create a Logic App with When a HTTP request is received.
Paste the URL into Veilio generic webhook.
Filter on
event_type == "DETOKENIZE"for high-severity alerts.Forward to Sentinel via the built-in connector.
Reliability and delivery log
Async delivery with 3 retries (0s, 2s, 8s backoff)
10s HTTP timeout per attempt
Delivery status visible in Dashboard → Webhooks (per destination)
Failed deliveries include
outcome: "failure"anderrorin the payload when applicable
Idempotency: use event_id as a deduplication key in your SIEM — Veilio generates a unique ID per event.
Related links
Security Best Practices
Troubleshooting
Last updated
Was this helpful?
