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

推荐订阅源

罗磊的独立博客
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
IT之家
IT之家
B
Blog
博客园_首页
博客园 - 司徒正美
有赞技术团队
有赞技术团队
博客园 - 聂微东
I
InfoQ
美团技术团队
GbyAI
GbyAI
阮一峰的网络日志
阮一峰的网络日志
H
Help Net Security
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
WordPress大学
WordPress大学
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Cloudflare Blog

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
How to Prevent License Key Sharing
Nico · 2026-06-27 · via DEV Community

Nico

Originally published on the Keylight blog.

Once an app has paying customers, one key inevitably shows up in a forum or a group chat, working for everyone who pastes it. The instinct is to clamp down hard. But aggressive anti-sharing measures hurt honest customers far more reliably than they hurt sharers. This post is about preventing key sharing in a way that does not make your real customers collateral damage.

Accept what you cannot prevent

Start with an honest premise: you cannot make key sharing impossible. A determined person with one machine can always run one legitimate-looking copy. Any scheme that claims otherwise is either lying or about to break something for paying customers.

So the goal is not "zero sharing." The goal is to make a license key behave like what it is meant to be — a license for one person and their handful of devices — rather than a master key to your product. That is an achievable, well-defined target. "Stop all piracy" is not.

The mechanism: device activation limits

The tool that actually works is the device activation limit. Each key is valid for a bounded number of devices. When the app runs on a machine for the first time, it activates: it registers that device with the licensing server, which checks the count against the limit and admits or refuses it.

Devices are recognised by a fingerprint — a stable identifier derived from the machine's hardware and install characteristics, hashed before it leaves the device so the server stores an opaque token, not a description of anyone's computer. The fingerprint's only job is equality: same device, or new device?

This is what stops the forum-posted key. The key still works — but only on the first N machines that activate it. The hundred-and-first install is refused. Sharing is capped at the limit you set, instead of being unlimited. The mechanics are covered in full in the app activation system guide.

Why hard blocks backfire

Here is where most anti-sharing schemes go wrong: they treat every ambiguous signal as guilt and respond with a hard block.

A customer reinstalls macOS and their fingerprint shifts slightly — hard block, "this license is invalid." A customer replaces a drive — hard block. A customer is the first person to legitimately install on their new laptop, but the key is at its limit because the old one was never removed — hard block.

Every one of those is a paying customer hitting a wall you built for pirates. They do not experience it as anti-piracy; they experience it as your app being broken and hostile. You will lose more goodwill from these false positives than you ever lose revenue to the actual sharers, because there are far more honest customers than dishonest ones.

The fix is two principles.

Be generous. A limit of one device is hostile — most people have a laptop and a desktop. Three to five for a personal license stops a key being shared across an organisation while being invisible to any real customer. The limit should constrain sharing, not normal multi-machine use.

Degrade gracefully. When something is ambiguous, do not hard-block. If a periodic re-check cannot reach the server, keep running on the last valid license — do not lock the customer out over your own outage. Reserve the hard "no" for the unambiguous case: a genuinely new device, genuinely past a generous limit.

Deactivation is the other half

A device limit without deactivation is a trap that springs on honest customers. People replace computers constantly. If activations only ever accumulate, every loyal customer eventually hits the limit on hardware they no longer own.

The answer is self-service deactivation: a customer portal listing the customer's activated devices, each with a remove button. Removing a device frees a slot instantly. The customer rearranges their own machines without a support ticket, and the limit stays meaningful because it is never the thing blocking a legitimate move.

In the app, hitting the limit should surface as a clear, actionable message — not a dead end:

await licensing.activate(key: enteredKey)

if case .invalid = licensing.state {
    // activationError explains the limit was reached;
    // point the customer at the portal to free a device.
    showActivationError(licensing.activationError)
}

The balance

Preventing license key sharing is a balance, not a war. A generous device limit plus painless self-service deactivation caps sharing at a reasonable number while being effectively invisible to every honest customer. A stingy one-device limit with hard blocks and no deactivation barely inconveniences a determined sharer and reliably angers the people paying you.

Aim for the first. If you have an anti-sharing edge case worth a deeper post, send us your feedback.

FAQ

How do I stop customers sharing license keys?

Bind each key to a limited number of devices with an activation limit. The licensing system records each device and refuses activations past the limit, so one key cannot supply an unlimited number of installs.

How do I avoid punishing legitimate customers with anti-sharing measures?

Set a generous device limit, make deactivation self-service so customers can move between machines, and degrade gracefully rather than hard-blocking on an ambiguous signal.

Can license key sharing ever be fully prevented?

No. One person with one device can always run one copy. The realistic goal is to make a key behave like a personal license, not a site license — which activation limits achieve.