Anonimizador y Limpiador de Datos Personales

Oculta o anonimiza correos, teléfonos, documentos y datos sensibles de tus textos.

Desarrollo y Código
100% Client-Side · Privado y Seguro
Anonimizador y Limpiador de Datos Personales

Oculta o anonimiza correos, teléfonos, documentos y datos sensibles de tus textos.

Centro de Conocimiento y Guía

Sanitizador de Datos Personales (PII) para Prompts de IA

Sanitizador de Datos Personales (PII) para Prompts de IA

Esta herramienta funciona 100% del lado del cliente en su navegador. Su código, tokens, claves API y datos confidenciales nunca se envían a servidores externos, garantizando privacidad absoluta.

Fórmula y Método de Cálculo

Raw Text + RegEx Detectors ➔ MASKED_ENTITY ➔ API Call ➔ Re-injection

The system replaces real emails with placeholders like `[EMAIL_1]`, sends the anonymized text to the AI, and upon receiving the response, automatically swaps the real emails back into the text.

Mejores Prácticas y Consejos

  • Never Trust AI Providers with Secrets: Even if an AI provider claims they do not train on API inputs, server side logs can be hacked or subpoenaed. If the data never leaves your browser, it cannot be leaked.
  • Sanitize Internal IDs: Beyond just names and emails, ensure you sanitize internal database UUIDs or sequential customer IDs, as these can leak information about your scale or user volume to competitors.
  • Review Masked Output Manually: RegEx detection is not perfect. Always visually inspect the sanitized output to ensure a highly non standard email address or formatted phone number did not slip past the filters.

Preguntas Frecuentes

¿Enmascarar datos confunde al LLM?
Generalmente no. Los LLM modernos comprenden perfectamente los marcadores de posición contextuales. Si dice 'Envía un correo electrónico a [EMAIL_1] dándole las gracias', el LLM generará la plantilla correcta sin necesidad de conocer la dirección real.
¿Qué es el RGPD?
El Reglamento General de Protección de Datos (RGPD) es una ley estricta de la Unión Europea que impone multas masivas a las empresas que transmitan o almacenen imprudentemente datos personales de ciudadanos de la UE sin su consentimiento explícito.
Can the sanitizer catch passwords?
It can catch highly structured secrets (like AWS keys or JWTs) using standard algorithms, but it cannot reliably detect a generic string like 'MyPassword123!' scattered randomly in text. Always manually redact passwords.