By · Last updated 2026-05-31

ब्लॉग पर वापस जाएँGDPR और अनुपालन

SSN से परे: आंतरिक ID अज्ञातीकरण

हर संगठन के पास आंतरिक पहचानकर्ता होते हैं — employee IDs, account numbers, order IDs — जो संदर्भ में व्यक्तिगत रूप से पहचाने जाने योग्य हैं लेकिन मानक उपकरण उन्हें छोड़ देते हैं।

May 31, 20267 मिनट पढ़ें
custom PII detectionorganizational identifiersre-identification riskGDPR pseudonymizationcustom entity

SSN से परे: आपके संगठन की आंतरिक IDs को अज्ञात करना

आपका GDPR उपकरण ईमेल पते हटाता है। यह phone numbers हटाता है। यह नाम हटाता है। आप support exports उससे गुजारते हैं। फिर आप आउटपुट अपनी analytics टीम के साथ साझा करते हैं।

आपके customer account numbers अभी भी हर ticket में हैं। आपके order IDs अभी भी वहाँ हैं। आपके internal user IDs भी अभी भी वहाँ हैं।

ये IDs अपने आप में हानिरहित लगती हैं। lookup table के बिना, वे किसी व्यक्ति का नाम नहीं देतीं। लेकिन आपकी analytics टीम के पास वह table है। आपके CRM के पास है। आपके support database के पास है। access वाला कोई भी सेकंडों में व्यक्ति को ढूंढ सकता है।

यह एक GDPR विफलता है। उपकरण नहीं टूटा। इसे कभी आपकी IDs खोजने के लिए नहीं कहा गया।

मानक PII उपकरण क्या पहचानते हैं

मानक PII उपकरण सार्वभौमिक प्रारूप कवर करते हैं। वे वह पकड़ते हैं जो हर संगठन उपयोग करता है।

मानक उपकरण पहचानते हैं:

  • Social security numbers (US SSNs, UK NINOs, EU national ID formats)
  • ईमेल पते
  • Phone numbers
  • Credit card numbers
  • नाम
  • Passport और driver's license numbers

मानक उपकरण नहीं पहचानते:

  • आपके EMP-XXXXX प्रारूप में employee IDs
  • आपके ACC-XXXXXXXX-XX प्रारूप में customer account numbers
  • आपके ORD-XXXXXXX प्रारूप में order IDs
  • UUID या custom प्रारूप में internal user IDs
  • Partner-specific reference codes

मानक उपकरण सार्वभौमिक पैटर्न पाते हैं। आपकी internal IDs सार्वभौमिक नहीं हैं। उन्हें खोजे जाने के लिए custom सेटअप की जरूरत है।

पुनः पहचान का जोखिम

एक फर्म quality review के लिए support tickets export करती है। मानक PII removal नाम, ईमेल और phone numbers हटाता है। ACC-XXXXXXXX-XX प्रारूप में account numbers को नहीं छुआ जाता।

Export analytics टीम को जाता है। एक analyst account number पर ticket table को customer database के साथ join करता है। व्यक्ति तुरंत मिल जाता है। कोई विशेष trick नहीं चाहिए। यह एक routine SQL join है।

GDPR अनुच्छेद 4(5) pseudonymization को processing के रूप में परिभाषित करता है जहाँ डेटा "अतिरिक्त जानकारी के उपयोग के बिना किसी विशिष्ट data subject को attributed नहीं किया जा सकता।" Account numbers उस test में fail होते हैं। अतिरिक्त जानकारी — आपका customer database — आपके संगठन में ठीक वहाँ है।

"Anonymized" export anonymous नहीं था।

Custom Entity पैटर्न बनाना

Custom entity सेटअप तेज़ है। Compliance teams बिना engineering मदद के यह कर सकती हैं।

कदम 1: अपने ID प्रारूप सूचीबद्ध करें।

प्रत्येक एक लिखें। उदाहरण के लिए: account ACC-XXXXXXXX-XX, order ID ORD-XXXXXXX, employee ID EMP-XXXXX।

कदम 2: प्रारूप को सरल भाषा में describe करें।

"Account numbers ACC से शुरू होते हैं, फिर एक dash, फिर 8 अंक, फिर एक dash, फिर 2 uppercase letters।"

AI-assisted pattern generation वापस देती है: ACC-\d{8}-[A-Z]{2}

कदम 3: Sample data पर test करें।

20 से 30 documents अपलोड करें। पुष्टि करें कि सभी instances मिले। पुष्टि करें कि कोई false hits नहीं दिखे।

कदम 4: एक विधि चुनें।

Join keys के रूप में उपयोग किए जाने वाले IDs के लिए, जहाँ analysis को records link करने की जरूरत है:

  • Pseudonymize करें। ACC-00123456-AB को ACC-99876543-XY से बदलें हर बार। एक ही input हमेशा एक ही output देता है। Joins अभी भी काम करते हैं। key के बिना मूल मूल्य नहीं मिल सकता।

Analysis में जरूरी नहीं IDs के लिए:

  • Redact करें। [REDACTED] से बदलें। सरल। स्थायी।

कदम 5: एक shared preset के रूप में save करें।

Custom entity — या उनके एक set को — एक shared preset में save करें। सेटअप सभी उपयोग में लागू होता है: batch uploads, API calls, browser interface। नए टीम सदस्यों को एक साथ पूरा config मिलता है।

Case Study: 180,000 Support Tickets

एक फर्म को उनके analytics वेयरहाउस में 180,000 support tickets मिले। नाम और ईमेल हटाए गए थे। Account numbers नहीं हटाए गए थे। प्रत्येक ticket में अभी भी एक live ACC-XXXXXXXX-XX मूल्य था।

Resolution timeline:

  1. Compliance officer ACC पैटर्न परिभाषित करता है — 15 मिनट
  2. 30 sample tickets पर test — 20 मिनट
  3. सटीकता पुष्टि — 10 मिनट
  4. overnight batch में 180,000 tickets प्रोसेस करता है
  5. warehouse tables को साफ versions से बदलता है

Compliance officer के लिए कुल समय: 45 मिनट। Custom entity सपोर्ट के बिना, fix के लिए engineering ticket, code review और deploy की जरूरत होती। इसमें घंटों नहीं, हफ्ते लगते।

Custom IDs AI support tools में कैसे जोखिम पैदा करती हैं, इस पर करीब से देखने के लिए GDPR and support AI guide देखें।

Custom IDs कहाँ फैलती हैं

Internal IDs अधिकांश teams की अपेक्षा से अधिक जगहों पर दिखाई देती हैं।

Internal documents:

  • Account या order ID references के साथ meeting notes
  • Customer cases के बारे में email threads
  • Case study data के साथ presentations

Third parties के साथ साझा:

  • Case reference numbers के साथ regulators को reports
  • Customer references के साथ audit files
  • Customer IDs वाली vendor files

Research और analytics:

  • Customer journey datasets
  • Support quality review exports
  • Internal ML models के लिए training data

प्रत्येक संदर्भ को वास्तव में anonymous आउटपुट उत्पन्न करने के लिए एक ही custom entity सेटअप की जरूरत है।

Pseudonymization बनाम Anonymization

GDPR एक स्पष्ट रेखा खींचता है।

Pseudonymization IDs को stand-ins से बदलती है। मूल व्यक्ति को फिर से ढूंढा जा सकता है अगर किसी के पास lookup table है। यह डेटा अभी भी personal data है। यह जोखिम कम करता है। यह आपके GDPR कर्तव्यों को नहीं हटाता।

Anonymization पुनः पहचान की क्षमता हटाती है। Anonymous data personal data नहीं है। GDPR इस पर लागू नहीं होता।

Account numbers और order IDs pseudonymous होते हैं जब lookup tables मौजूद हों। उन्हें fixed stand-ins से बदलना जोखिम कम करता है, लेकिन GDPR अभी भी लागू होता है। उन्हें random tokens से बदलना — और key हटाना — GDPR कर्तव्य हटाता है, लेकिन join-based analysis तोड़ता है।

Tercero parties के साथ साझा करने के लिए जिनके पास आपकी lookup tables नहीं हैं: pseudonymization पर्याप्त हो सकती है। Internal analytics के लिए, पूर्ण anonymization या सख्त access controls की जरूरत है। legal compliance guide प्रत्येक दृष्टिकोण को अपने ROPA के लिए कैसे document करें, यह कवर करती है।

निष्कर्ष

खाई एक उपकरण विफलता नहीं है। यह एक सेटअप खाई है। कोई उपकरण आपके account number प्रारूप को तब तक नहीं जान सकता जब तक आप उसे नहीं बताते।

Custom entity सेटअप खाई को घंटों में बंद करता है। Compliance teams प्रारूप परिभाषित करती हैं, उन्हें sample data पर test करती हैं और सभी उपयोग modes में लागू करती हैं। कोई engineering मदद नहीं चाहिए।

180,000 unredacted account numbers इसलिए नहीं थे क्योंकि उपकरण fail हुआ। वे इसलिए थे क्योंकि उपकरण को कभी उन्हें खोजने के लिए नहीं कहा गया।

स्रोत

क्या आप अपने डेटा की सुरक्षा के लिए तैयार हैं?

48 भाषाओं में 285+ संस्थाओं के प्रकारों के साथ PII अनामकरण शुरू करें।

About this page

We update this page when our platform or the law changes.

Read our founder note for how we work.

Each change shows up in the timestamp at the top.

Related reading

We follow these rules

  • GDPR (EU 2016/679).
  • ISO/IEC 27001:2022.
  • NIS2 (EU 2022/2555).
  • HIPAA safe harbor under 45 CFR § 164.514(b)(2).

Our promise

We do not sell your data.

We do not train models on your text.

We store your files in Germany.

You can delete your account at any time.

You own your work.

Where we run

Our servers live in Falkenstein, Germany.

We use Hetzner. They hold ISO 27001 certification.

All data stays in the EU.

Backups run every day.

Need help?

Email support@anonym.legal.

We reply within one business day.

How we test

We run a full check suite on every release.

Each surface gets its own sweep script and report.

Human reviewers spot-check the output each week.

We track recall and precision on a labelled set.

Bad runs block the deploy.

What we never do

  • We never sell your information to third parties.
  • We never train models on what you upload.
  • We never keep your work after you delete it.
  • We never share keys with any outside firm.
  • We never run ads inside the product.

Plans in plain words

We sell credits, not seats.

One credit covers one short job.

Long jobs use a few credits each.

You can top up at any time.

Unused credits roll over each month.

Read the plans page for current rates.

Who built this

A small team of engineers and lawyers built this.

We ship from Europe and work in the open.

Our founder note spells out why we started.

Where to start

How the parts fit

A browser add-on cleans text inside Chrome.

A Word plug-in handles drafts in Office.

A small desktop tool works on whole folders.

An agent protocol link feeds large models safely.

All four share one core engine and one rule set.

Words from our team

We started this work after a lunch about cookies.

One friend kept getting odd ads on her phone.

We asked why a court file leaked through a draft.

We sketched the first build on a napkin that week.

By month three we had a tiny demo for a friend.

She used it on her first case the next day.

Common questions we hear

Can the tool read scanned PDFs? Yes, with OCR.

Does it work on long files? Yes, in small chunks.

Can I roll my own rule set? Yes, save it as a preset.

Does it run offline? The desktop build runs offline.

Do you keep my files? No, the cloud build wipes after each run.

Will it learn from my work? No, we never train on inputs.

A short tour of the workflow

Upload a file or paste a snippet of prose.

Pick the entities you want gone from the draft.

Choose a method: replace, mask, hash, encrypt, or redact.

Press run and watch the side panel show each hit.

Skim the result and tweak any rule that misfired.

Save the cleaned file or send it to a teammate.