Deidentification¶
LogMan.io enables you to export any data for custom purposes, e.g. external analysis. Logs very often contain sensitive personal data about users. Use deidentification during exports whenever providing the data to third parties. Deidentification algorithms keep the granularity and uniqueness of the data allowing analysis of security incidents without exposing users personal information.
Use schema to apply deidentification methods on exported data.
Deidentification methods¶
hash
-
Uses SHA256 algorithm to hash the value.
email
-
Searches for email addresses using regular expression
^(.*)@(.*)(\..*)$
(john.doe@company.com) and SHA256 to hash the name and domain separately. Returnsnot email
if value does not fit the regular expression. username
-
Is a combination of
hash
andemail
method. It applies email method but returns hashed value if the value doesn't fit the regular expression. filepath
-
Hashes the filename, but keeps the extension. Allows further analysis based on the file types.
ip
-
Randomizes the last part of ipv4 address.
drop
-
Erases the sensitive data entirely from the export.