Sample Filter Profiles
List several filter profiles that can be used as-is or as starting examples.
This page lists various sample filter profiles. Use these filter profiles either as-is or as starting points for customizing them to meet your needs.
To use a filter profile, download the filter profile to Philter's
profiles
directory, which is probably /opt/philter/profiles
. Then restart Philter with sudo systemctl restart philter
. The new filter profile will now be available for use when submitting filter API requests to Philter. (Specify the filter profile's name in the request. See the API for examples.)These filter profiles are just examples and not an exhaustive list of all the sensitive information Philter can identify. Items from each of these filter profiles can be combined to make filter profiles to meet your use-cases.
This filter profile finds email addresses and phone numbers and redacts them with
{{{REDACTED-email-address}}}
and {{{REDACTED-phone-number}}}
, respectively.email-and-phone-numbers.json
417B
Code
Email Addresses and Phone Numbers
This filter profile finds persons names and SSNs and redacts them with
{{{REDACTED-entity}}}
and {{{REDACTED-ssn}}}
, respectively.persons-names-and-ssns (1).json
377B
Code
Persons Names and SSNs
This filter profile finds dates, URLs, and VINs. Dates and URLs are redacted with
{{{REDACTED-date}}}
and {{{REDACTED-url}}}
, respectively. Each VIN number are replaced by a randomly generated VIN number.dates-urls-vins.json
494B
Code
Dates, URLs, and VINs
This filter profile finds IP addresses and replaces each identified IP address with the static text
IP_ADDRESS
as long as the IP address is not 127.0.0.1
. (A condition on the filter strategy sets the IP address requirement.)ip-addresses.json
274B
Code
IP Addresses with condition
This filter profile finds ZIP codes starting with
90
and truncates the zip code to just the first two digits.zip-codes.json
256B
Code
Zip Codes
This filter profile enables text splitting for input over 10,000 characters.
filter-profile-split.json
341B
Code
Text Splitting
This filter profile has a list of globally ignored terms.
filter-profile-global-ignored.json
362B
Code
Globally Ignored Terms
This filter profile generates an alert when a matching email address is identified.
filter-profile-email-address-alert.json
316B
Code
Generate Alert
Last modified 4mo ago