Case Study — When "Just Slap AI on It" Would Have Cost You Every Sale
Client: ValorHub (self-owned)
Live proof: The book is on sale at valorhub.eu. The payment and download flows below have been handling real money since May 2026.
Timeline: One week.
The pattern:
Why a solo operator should read this
You sell something digital direct from your site — a PDF, a course, a template, a licence. Two things are probably happening right now that you can't see:
- A stranger can get your product for free. Not by hacking. By pretending to be your payment provider — sending your server a fake "purchase complete" message. Your server ships the file. You never see the miss until your monthly numbers stop matching your delivery count.
- A paying customer can share the download link with the whole internet. They forward the email, someone posts the link in a Discord, and now the link works for everyone who ever sees it. Forever.
Neither shows up as an error. That's what makes them expensive — you find out from a piracy site or a bookkeeping surprise, months later.
Both are common because the two default patterns — "trust the webhook, ship the file" and "email a direct link to the file" — are what every quick-start guide teaches. Nobody adds a checkpoint until they've been burned.
I fixed both on my own site. Two small checks. Once installed, they run themselves.
Fix 1 — verify every purchase is real
When a real customer pays, the provider sends a small message to my server: "purchase complete, deliver the product." Anyone with a laptop can send the same message pretending to be the provider. Unless my server checks who really sent it, the product ships to a stranger.
The fix has been standard practice for over a decade: every real message is cryptographically signed. My server re-computes what the signature should be for that specific message and compares. Match — deliver. Mismatch — reject. Fake purchases never touch the delivery logic.
Fix 2 — make shared links revocable
The download link contains a unique ID tied to one customer's purchase. On click, my server asks the database: "is this ID still valid?" Yes → serve the file. No → block. The customer's browser never sees the file's real address — only the checkpoint.
If a link ends up on Reddit tomorrow, I flip that one purchase to "revoked" and the link stops working. Every forwarded copy, every screenshot, every cached URL. One click.
The file itself lives in private storage that only my server can read. The customer never sees a URL to the file — only a URL to the check. That's the difference between "shared once, gone forever" and "shared once, revoked in seconds."
What working with me looks like
Clarity call — €300 (~60 min). For operators who want to know whether they need this at all before spending on a build. I look at your setup on a call, tell you which of the two checks (if any) you already have, and where the gaps are. Deliverable: a one-page written summary you can hand to any freelancer. If your setup is already fine, I tell you so and refund €150 — I'd rather have you keep the money than sell you something you don't need.
Install — €2,500–€3,500 (~1 week). Both checks installed on your live site, verified against real traffic, with a written runbook so you or anyone else can maintain it. One month of fake purchases on a €19 product silently costs €100–€300. One shared link on a forum with 20k members can eat 6–12 months of a small operator's revenue. This install stops both, once.
Contact: info@valorhub.eu · linkedin.com/in/maksymdonets · Munich (CET)