Skip to content
Vol. 1 · Ed. 2026
CyberGlossary
Entry № 311

Data Loss Prevention (DLP)

Reviewed byCybersecurity entrepreneur & security researcher

What is Data Loss Prevention (DLP)?

Data Loss Prevention (DLP)A set of technologies and policies that detect and block unauthorized exfiltration of sensitive data across endpoints, networks, email, and cloud services.


Data Loss Prevention (DLP) is a control category that inspects content in motion, at rest, and in use, then enforces policies to keep regulated or confidential data inside trusted boundaries. DLP engines combine pattern matching, lexical rules, exact data matching, machine learning, and document fingerprinting to recognize PII, payment data, source code, or intellectual property. Typical enforcement actions include blocking an outbound email, quarantining a file, requiring justification, or redacting content before it leaves the environment. Mature deployments link DLP to data classification, IAM, and SIEM/SOAR so that incidents are triaged, evidence is preserved, and policies are tuned to cut false positives while supporting GDPR, HIPAA, and PCI DSS obligations.

Channels, detection, and the insider problem

DLP is usually deployed across three enforcement points: endpoint agents (blocking USB copy, print, clipboard and screenshot), network/email gateways (inspecting SMTP, web uploads and cloud sync), and cloud/API connectors that scan data at rest in SaaS and object storage. Detection quality hinges on identifying the right content: regex alone flags too much, so serious programs layer exact data matching (hashing rows of a real customer database), document fingerprinting for proprietary files, and dictionaries for regulated terms. PCI DSS Requirement 4 and GDPR Article 32 are common drivers, but the most valuable rule is often the least clever — alert when a single user exports thousands of records at once.

The hardest cases are insiders and endpoint egress rather than mass hacks. In 2022 Yahoo sued departing research scientist Qian Sang, alleging he downloaded roughly 570,000 files of the company's AdLearn intellectual property to personal devices minutes after receiving a competitor's job offer — exactly the "in-use" exfiltration DLP is meant to catch. Because motivated insiders can photograph a screen or use encrypted channels, DLP works best as one layer of a broader program: least-privilege access, user-activity monitoring (UEBA), and encryption, tuned continuously to keep false positives from training staff to ignore alerts.

flowchart TD
  D[Sensitive data<br/>PII / PCI / source code] --> C{DLP inspection}
  C -->|Endpoint| E[USB / print / clipboard]
  C -->|Network / email| N[SMTP / web upload]
  C -->|Cloud / API| S[SaaS / object storage]
  E --> P{Policy match?}
  N --> P
  S --> P
  P -->|Yes| B[Block / quarantine / redact<br/>+ alert to SIEM]
  P -->|No| A[Allow]

Examples

  1. 01

    An endpoint agent blocks a user from copying a customer database to a USB drive.

  2. 02

    A cloud DLP rule strips credit-card numbers from outgoing support-portal attachments.

Frequently asked questions

What is Data Loss Prevention (DLP)?

A set of technologies and policies that detect and block unauthorized exfiltration of sensitive data across endpoints, networks, email, and cloud services. It belongs to the Privacy & Data Protection category of cybersecurity.

What does Data Loss Prevention (DLP) mean?

A set of technologies and policies that detect and block unauthorized exfiltration of sensitive data across endpoints, networks, email, and cloud services.

How do you defend against Data Loss Prevention (DLP)?

Defences for Data Loss Prevention (DLP) typically combine technical controls and operational practices, as detailed in the full definition above.

What are other names for Data Loss Prevention (DLP)?

Common alternative names include: Information Leak Prevention, Data Leakage Prevention.

Related terms

See also