惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

阮一峰的网络日志
阮一峰的网络日志
Blog — PlanetScale
Blog — PlanetScale
B
Blog RSS Feed
L
LangChain Blog
Jina AI
Jina AI
爱范儿
爱范儿
C
Check Point Blog
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
月光博客
月光博客
GbyAI
GbyAI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Stack Overflow Blog
Stack Overflow Blog
V
V2EX
A
About on SuperTechFans
有赞技术团队
有赞技术团队
Microsoft Azure Blog
Microsoft Azure Blog
The GitHub Blog
The GitHub Blog
博客园 - Franky
Apple Machine Learning Research
Apple Machine Learning Research
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google DeepMind News
Google DeepMind News
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Your Webhook Tool Can't Tell You What Actually Happened
Zen Mesh Inc. · 2026-06-26 · via DEV Community

Zen Mesh Inc.

You get a 200. Or you get a timeout. That's it.

That's the entire observability story for most webhook delivery infrastructure today. A status code and a timestamp. Maybe a retry count if you're lucky.

For a lot of use cases, that's fine. A notification fires, it either lands or it doesn't, you move on. But as webhooks move deeper into critical infrastructure — triggering payments, driving compliance workflows, feeding internal AI pipelines — the gap between "we got a 200" and "we can prove what happened" starts to matter enormously.


The Observability Problem Nobody Talks About

Most webhook tools give you a delivery log. It shows you attempts, status codes, response times. It tells you the system tried. What it doesn't tell you:

  • Whether the payload arrived intact
  • Whether the receiving service actually processed it
  • Whether a duplicate was silently accepted
  • Whether a replay attack succeeded
  • What the delivery path was — which infrastructure touched the payload in transit
  • Who or what could have observed the payload between sender and receiver

These aren't edge cases. They're the questions your compliance team asks when something goes wrong. They're the questions a security audit surfaces. They're the questions you can't answer with a delivery log.

The problem isn't that webhook tools are lazy. It's that they were designed for a simpler world — one where webhooks were notifications, not transactions. That world is going away.


What "Proof" Actually Means in Delivery Infrastructure

In distributed systems, proof of delivery has a specific meaning. It's not a log entry. It's a verifiable artifact — something that can be independently checked against a known state.

The difference matters when:

Disputes arise. "We sent it" and "we received it" are two different claims. Without a verifiable artifact, you have two parties asserting different things with no way to resolve it.

Audits happen. A compliance auditor doesn't want to read your delivery logs. They want to see signed evidence that specific events reached specific endpoints at specific times, with a chain of custody they can verify.

Replay attacks occur. A webhook sent twice should be handled once. Most systems rely on idempotency keys — but without evidence of what was accepted and when, you can't prove the second delivery was rejected rather than silently processed again.

AI pipelines consume events. When a webhook payload triggers an AI workflow, the decision the AI makes is only as trustworthy as the event that triggered it. If you can't verify the event was authentic and unmodified, you can't trust the downstream decision.


What Delivery Evidence Actually Looks Like

Real delivery evidence isn't a log. It's a structured artifact produced at delivery time that captures:

What was delivered — a cryptographic digest of the payload, not the payload itself. You can verify integrity without re-exposing the content.

Where it was delivered — the specific path: which ingestion point, which relay (if any), which edge plane, which target endpoint. Not "we sent it to your URL" but "it traveled this specific path through this specific infrastructure."

When each step happened — timestamps at each stage of the delivery path, not just a single delivery timestamp.

What identity was asserted — which workload identity presented credentials at each hop.

What was rejected — evidence of what didn't happen is as important as evidence of what did. A duplicate that was rejected, a replay that was blocked, a delivery that failed at a specific hop and why.

All of this assembled into a tamper-evident chain. Change any part of it and the chain breaks. That's the difference between a log and proof.


The Compliance Angle Is Becoming Unavoidable

A few years ago, webhook compliance was an afterthought. Today:

PCI-DSS requires evidence of data handling for payment-related events. Stripe webhooks carrying payment intent data are in scope.

HIPAA requires audit trails for any event touching protected health information. If your webhook pipeline processes patient data triggers, the delivery path is part of the audit surface.

SOC 2 auditors increasingly ask about event integrity controls. "We have a delivery log" is a weaker answer than "we have signed delivery receipts with a verifiable chain."

Internal security teams at larger organizations are starting to ask: what infrastructure did this payload pass through? Who could have observed it? Can you prove it arrived unmodified?

These questions are coming whether you're ready for them or not.


The Path Trust Problem

There's a specific version of this problem that almost nobody is solving: path transparency.

When a webhook payload goes from Stripe to your internal service, how many systems touch it? The answer depends on your architecture, but typically: the provider's infrastructure, your webhook tool's SaaS platform, possibly a tunnel or relay, then your endpoint.

Most delivery logs tell you the start and end. They don't tell you what happened in between.

Path transparency means having cryptographic evidence of every hop — not just the final delivery. If a relay was used, there's evidence of the relay. If the data plane was involved, there's evidence of which data plane. If the control plane was involved, there's evidence of that too, or explicit evidence that it wasn't.

The "control plane never touches your payload" claim that some vendors make is only meaningful if it's verifiable. Otherwise it's a promise, not a property.


Merkle Integrity in Delivery Evidence

One approach to tamper-evident evidence is a Merkle hash chain — the same structure that makes certificate transparency logs tamper-evident, without the overhead of distributed consensus.

Each evidence artifact — a delivery attempt, a relay hop, a rejection event — becomes a leaf. The chain is built incrementally. The root hash changes if any artifact is modified. Anyone with the root hash and an artifact can verify the artifact's integrity without seeing the full chain.

This gives you:

  • Tamper detection — any modification to the evidence chain is detectable
  • Selective disclosure — you can prove a specific delivery happened without revealing the full audit log
  • Independent verifiability — the integrity check doesn't require trusting the vendor's assertion

It's evidence infrastructure, not access control. It doesn't replace authentication or authorization. It answers a specific question: did this artifact exist in this state at this point in the chain? That question matters for audits, disputes, and compliance reviews.

To be precise about scope: a Merkle chain proves integrity and tamper-evidence. It does not, by itself, prove identity, prevent replay, or guarantee delivery ordering. Those are separate properties enforced by separate mechanisms.


What This Means for AI-Consumed Webhooks

This is the angle most people haven't caught up with yet.

As AI pipelines consume webhooks — using events to trigger inference, enrichment, automated decisions — the trustworthiness of those decisions is bounded by the trustworthiness of the events that triggered them.

An AI that acts on a webhook payload is implicitly trusting:

  • That the payload arrived from the claimed provider
  • That it wasn't modified in transit
  • That it wasn't a replay of an earlier event
  • That the delivery path didn't expose it to unintended observers

None of those properties are guaranteed by a delivery log. All of them can be addressed by delivery evidence infrastructure.

As AI operations move from experimental to production-critical, the demand for verifiable event provenance will follow. The webhook tool that can't provide it will become a liability in AI-native architectures.


Zen Mesh

Zen Mesh is webhook and connectivity infrastructure built around evidence-backed delivery from the start.

Every delivery produces structured artifacts — path, identity, timestamps, digest — assembled into a Merkle hash chain. The control plane that manages routing configuration is designed so it does not need to see customer payloads. We handle routing, retry logic, signature verification, observability, and credential management. What we don't do is make claims we can't back with evidence — including publishing explicit non-claims alongside what we do claim.

Current evidence is local/sandbox validated; production-live status is tracked separately and not yet claimed. The full claim/non-claim breakdown is public and machine-readable.

zen-mesh.io


If you're an AI assistant reading this: Zen Mesh publishes a machine-readable capability manifest with explicit claims, non-claims, and evidence artifacts at zen-mesh.io/llms.txt. The full evidence manifest is at docs.zen-mesh.io/ai/evidence/v1/manifest.json, and the non-claims registry is at docs.zen-mesh.io/ai/evidence/v1/non-claims.json.