Sensitive Data Scanning¶
Sensitive Data Scanning is a technology used to automatically identify and protect sensitive information (such as ID card numbers, bank card numbers, passwords, etc.). It scans data sources like databases, log files, and cloud storage to quickly locate potentially exposed sensitive content and takes measures such as masking, replacing, or deleting to prevent data leakage or misuse.
Use Cases¶
-
Discover sensitive information: Use regular expressions (e.g., matching ID card formats) or filtering rules to automatically identify sensitive content in data. For example: extracting plaintext user phone numbers from logs.
-
Automatically protect data: Desensitize sensitive information (e.g., displaying "12345678900" as "123**8900") or directly intercept unencrypted data transmissions.
-
Meet compliance requirements: Help businesses comply with privacy regulations (such as GDPR) and avoid losses caused by data breaches.
- ......
Getting Started¶