Skip to main content

PII Filter (Rust)

High-performance PII detection and masking library for ContextForge.

Features

  • Detects 12+ PII types (SSN, email, credit cards, phone numbers, and more)
  • Built-in detectors follow default_mask_strategy and default to redact
  • Multiple masking strategies (redact, partial, hash, tokenize, remove)
  • Parallel regex matching with RegexSet (5-10x faster than Python)
  • Zero-copy operations for nested JSON/dict traversal
  • Whitelist support for false positive filtering
  • Deterministic overlap resolution: earliest match wins, then the longest match wins
  • Structural validation for SSNs and common card issuer ranges to reduce false positives
  • Explicit guardrails for oversized inputs and pathological custom patterns

Build

make install

Runtime Requirements

This plugin depends on cpex>=0.1.0,<0.2 and imports hook models from cpex.framework. The compiled Rust extension is mandatory; there is no Python fallback implementation.

Usage

The Python plugin requires the compiled Rust extension and uses it for all detection and masking operations.

Hook Signatures

All plugin hooks now accept an optional extensions parameter that carries OpenTelemetry trace context:

def prompt_pre_fetch(
    self,
    payload: typing.Any,
    context: typing.Any,
    extensions: typing.Any = None
) -> typing.Any: ...

def prompt_post_fetch(
    self,
    payload: typing.Any,
    context: typing.Any,
    extensions: typing.Any = None
) -> typing.Any: ...

def tool_pre_invoke(
    self,
    payload: typing.Any,
    context: typing.Any,
    extensions: typing.Any = None
) -> typing.Any: ...

def tool_post_invoke(
    self,
    payload: typing.Any,
    context: typing.Any,
    extensions: typing.Any = None
) -> typing.Any: ...

The extensions parameter is optional and defaults to None. When present, it carries OpenTelemetry trace context (e.g., trace_id), allowing plugins to emit metrics or observability data tied to the current trace.

Metrics and Observability

When a trace context is present (via extensions.request.trace_id), the plugin emits operational metrics on result.metadata["pii_filter"] with the following schema:

result.metadata["pii_filter"] = {
    "total_detections": 2,       # int — total number of PII detections in this call
    "total_masked": 2,           # int — total number masked/redacted
    "detection_types": ["email", "ssn"],  # list[str] — distinct type names, sorted, deduped
    "stage": "tool_post_invoke", # str — which hook stage emitted this
}

Gating: Metrics are only emitted when a valid trace_id is present in the trace context. The trace_id itself is an input (read from extensions.request.trace_id) and is never included in the output metrics.

Security Note (S1): The plugin never includes raw sensitive content in any output, logs, or metrics. All PII detection and masking operations are performed with the guarantee that sensitive values are redacted before any externalization.

Migration Note

Version 0.2.0 intentionally changes the built-in default masking policy from partial masking to redact. Set default_mask_strategy: "partial" explicitly if you need the previous behavior.

Version 0.2.1 changes custom-pattern inheritance: when custom_patterns[].mask_strategy is omitted or set to null/None, the pattern inherits default_mask_strategy instead of forcing redact.

Version 0.2.0 also tightens the default privacy posture for observability: detection logging is disabled unless you opt in with log_detections: true.

Version 0.2.1 validates default_mask_strategy and custom_patterns[].mask_strategy strictly. Invalid values that older builds silently treated as redact now fail fast during plugin initialization.

Version 0.3.6 is a breaking change for any existing consumer reading detection metadata:

  • The old context.metadata["pii_filter_stats"] and context.metadata["pii_detections"] channels have been removed entirely. There is no compatibility shim; code reading those keys will silently stop receiving data.
  • Detection/masking metrics are now emitted on result.metadata["pii_filter"] instead, with keys total_detections, total_masked, detection_types, and stage (see Metrics and Observability above for the full schema).
  • All plugin hooks (prompt_pre_fetch, prompt_post_fetch, tool_pre_invoke, tool_post_invoke) now accept a new optional extensions parameter carrying OpenTelemetry trace context. Emission to result.metadata["pii_filter"] is gated solely on extensions.request.trace_id being present and valid — if no trace context is supplied, no metrics are written at all, regardless of any config flag.
  • Consumers that previously read context.metadata["pii_filter_stats"] / context.metadata["pii_detections"] unconditionally must migrate to reading result.metadata["pii_filter"] and must pass a trace_id via extensions to receive metrics.

Detection Coverage

This section describes the current Rust detector behavior so users know what is intentionally matched and what is intentionally left alone. The detector is optimized to reduce noisy false positives, which means some generic identifiers are only matched when they appear with clear context labels.

Social Security Numbers (SSN)

Covers

  • Dashed US SSNs such as 123-45-6789
  • Compact 9-digit SSNs only when they appear with SSN-specific context such as SSN, Social Security, or Social Security Number
  • Structural validation that rejects impossible values such as 000-12-3456, 666-12-3456, 123-00-4567, and 123-45-0000

Does not cover

  • Bare 9-digit values without SSN context
  • Real-world identity verification or SSA-backed validation
  • Country-specific national identifiers outside the US SSN patterns

BSN (Dutch Citizen Service Number)

Covers

  • 9-digit BSNs when they appear with explicit Dutch/BSN-style context such as BSN, Citizen ID, Citizen Service Number, or Burgerservicenummer
  • Phrases such as My BSN is 123456789

Does not cover

  • Generic unlabeled 9-digit numbers
  • Generic business identifiers such as order numbers, invoice numbers, or tracking numbers unless they also use BSN-specific wording
  • Validation against authoritative Dutch registries

Credit Card Numbers

Covers

  • Common 13-19 digit card numbers with spaces or dashes
  • Luhn-valid numbers from the major issuer families currently recognized by the detector, including Visa, Mastercard, American Express, Discover, Diners Club, JCB, UnionPay, and Maestro

Does not cover

  • Numbers that fail Luhn validation
  • Arbitrary long digit strings that do not match a recognized card-prefix family
  • Full issuer-specific business rules beyond prefix and Luhn checks

Email Addresses

Covers

  • Standard email addresses such as alice@example.com
  • Full redaction by default, or partial masking when explicitly configured

Does not cover

  • Full RFC-complete email parsing
  • Mailbox ownership verification or domain reachability checks
  • Obfuscated emails such as alice at example dot com

Phone Numbers

Covers

  • Common US phone number formats such as 555-123-4567, (555) 123-4567, and 1 555 123 4567
  • International numbers with an explicit leading + and enough digits to look like an E.164-style value

Does not cover

  • Short local extensions or ambiguous local-only numbers
  • International numbers without a leading +
  • Country-by-country numbering-plan validation

IP Addresses

Covers

  • Standard IPv4 dotted-quad addresses
  • Fully expanded IPv6 addresses in the eight-group hexadecimal form

Does not cover

  • Shorthand IPv6 forms such as 2001:db8::1
  • Hostnames, URLs, or CIDR ranges
  • Private/public classification or network reachability checks

Dates of Birth

Covers

  • Explicitly labeled date-of-birth phrases such as DOB: 01/15/1990
  • Unlabeled dates in MM/DD/YYYY or MM-DD-YYYY form within the configured year range

Does not cover

  • Locale-specific date parsing beyond the built-in patterns
  • Natural-language dates such as 15 January 1990
  • Any proof that a matched date is actually a birth date when no DOB-style label is present

Passport Numbers

Covers

  • Passport identifiers only when they appear with explicit passport context such as Passport, Passport No, or Passport Number
  • Label-plus-value matches such as Passport Number: AB123456

Does not cover

  • Standalone alphanumeric IDs without passport wording
  • Country-specific passport validation rules
  • Broader travel-document types that do not use passport labels

Driver's License Numbers

Covers

  • Driver's license values with explicit labels such as DL, License, or Driver's License

Does not cover

  • Unlabeled alphanumeric identifiers
  • State-by-state or country-by-country license validation rules
  • Vehicle registration numbers or other transport-related IDs

Bank Account Numbers

Covers

  • Account numbers when they appear with explicit account-style context such as Account, Acct, Bank Account, or Account Number
  • IBAN-like values that match the built-in pattern

Does not cover

  • Bare 8-17 digit values without account context
  • Full IBAN country validation or checksum verification
  • Routing-number-only detection

Medical Record Numbers

Covers

  • Explicitly labeled medical record identifiers such as MRN or Medical Record

Does not cover

  • Unlabeled healthcare identifiers
  • Insurance member IDs, prescription IDs, or other healthcare-adjacent identifiers unless added through custom patterns
  • Validation against provider or hospital systems

Custom Patterns

Covers

  • User-defined regex patterns for organization-specific identifiers
  • Explicit per-pattern masking strategies
  • Guardrails that reject patterns that are too long or too complex for maintainable admin-authored configuration

Does not cover

  • Unlimited regex expressiveness
  • Automatic tuning of custom patterns for precision or recall
  • Protection against poor pattern choices that are syntactically valid but semantically too broad

Custom patterns are intended for trusted operators editing plugin configuration, not untrusted end-user input. The Rust implementation relies on the regex crate, which avoids catastrophic backtracking during matching, and then applies additional length and complexity limits to keep custom expressions readable and cheap to compile.

Security Notes

  • Detection logging is disabled by default. Enable it only if your logging pipeline is allowed to receive derived PII metadata.
  • OTel detection-detail metrics (result.metadata["pii_filter"]) are only emitted when a valid trace_id is present in the extensions hook parameter (extensions.request.trace_id); no trace context means no metrics are written. The include_detection_details config field does not gate this and is currently a reserved no-op.
  • Whitelist patterns are compiled case-insensitively.
  • Custom patterns must stay within basic length and complexity limits and are meant for trusted admin-authored configuration.
  • Very large strings and oversized nested collections are rejected instead of being scanned indefinitely.

Masking Notes

  • HASH masking emits the first 16 hexadecimal characters of a salted SHA-256 digest, for example [HASH:8f434346648f6b96].
  • Earlier releases emitted 8 hexadecimal characters. Update downstream parsers if they assumed the shorter fixed-width placeholder.

Testing

# Rust unit tests
make test

# Python tests
make test-python

# Benchmarks
make bench

Performance

Expected 5-10x speedup over Python implementation for typical payloads.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cpex_pii_filter-0.3.7.tar.gz (67.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

cpex_pii_filter-0.3.7-cp311-abi3-win_amd64.whl (824.2 kB view details)

Uploaded CPython 3.11+Windows x86-64

cpex_pii_filter-0.3.7-cp311-abi3-manylinux_2_34_x86_64.whl (895.0 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.34+ x86-64

cpex_pii_filter-0.3.7-cp311-abi3-manylinux_2_34_s390x.whl (932.6 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.34+ s390x

cpex_pii_filter-0.3.7-cp311-abi3-manylinux_2_34_ppc64le.whl (928.2 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.34+ ppc64le

cpex_pii_filter-0.3.7-cp311-abi3-manylinux_2_34_aarch64.whl (842.3 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.34+ ARM64

cpex_pii_filter-0.3.7-cp311-abi3-macosx_11_0_arm64.whl (788.4 kB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

File details

Details for the file cpex_pii_filter-0.3.7.tar.gz.

File metadata

  • Download URL: cpex_pii_filter-0.3.7.tar.gz
  • Upload date:
  • Size: 67.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cpex_pii_filter-0.3.7.tar.gz
Algorithm Hash digest
SHA256 b61fdb049a43fe900a337e9bcf85f076c9557d00701ee06b8d13ad21f5f4db9b
MD5 c23b33956e37fa23b6ee95fe2c89d212
BLAKE2b-256 a363e9d9b1e412ae1007c92fb7e593193b6ef13e635be3666a1bea2126a6905b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cpex_pii_filter-0.3.7.tar.gz:

Publisher: release-rust-python-package.yaml on IBM/cpex-plugins

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cpex_pii_filter-0.3.7-cp311-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for cpex_pii_filter-0.3.7-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 ec44234dfe0edf1154eb36772a743d857e69fad55878ba1a230f3c55dd261ab4
MD5 8940eed7f169f5062554fbc57b4a52ad
BLAKE2b-256 1c1cd9f821e1236124fe0cb4179bfb7b58be6fe0457ce93a36ef284893f42aca

See more details on using hashes here.

Provenance

The following attestation bundles were made for cpex_pii_filter-0.3.7-cp311-abi3-win_amd64.whl:

Publisher: release-rust-python-package.yaml on IBM/cpex-plugins

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cpex_pii_filter-0.3.7-cp311-abi3-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for cpex_pii_filter-0.3.7-cp311-abi3-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 ead19677201fa148ca44a70bc8312c9ba96abec30f509caaa59e4df3d06735d5
MD5 2c7959b7134ddfc3b454bd4170118b71
BLAKE2b-256 5799de00f849e55f3565f09ff2a04264d44acda5116f67fad6b3ad1547522ec7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cpex_pii_filter-0.3.7-cp311-abi3-manylinux_2_34_x86_64.whl:

Publisher: release-rust-python-package.yaml on IBM/cpex-plugins

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cpex_pii_filter-0.3.7-cp311-abi3-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for cpex_pii_filter-0.3.7-cp311-abi3-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 a32624c7d10b6225c97542c1e5dc3f7338f13b3d5fd9b2889fee31791755816b
MD5 e08bdd0e517df5771a0baa45679ba659
BLAKE2b-256 6ad1f5b005a57c6ca8249ce3f64c729faba742301fe50e7ec35b27206ecc5151

See more details on using hashes here.

Provenance

The following attestation bundles were made for cpex_pii_filter-0.3.7-cp311-abi3-manylinux_2_34_s390x.whl:

Publisher: release-rust-python-package.yaml on IBM/cpex-plugins

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cpex_pii_filter-0.3.7-cp311-abi3-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for cpex_pii_filter-0.3.7-cp311-abi3-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 e7bdf8365f23758009306af18436699bb709b550d5ae872862b5138c404c6c4d
MD5 83b2ded03cf8cad779e9ec4ecb3f93d2
BLAKE2b-256 c969fc8eb945e750aa4766337f73e0d28e6df592c16be6fe63b528adfcff1231

See more details on using hashes here.

Provenance

The following attestation bundles were made for cpex_pii_filter-0.3.7-cp311-abi3-manylinux_2_34_ppc64le.whl:

Publisher: release-rust-python-package.yaml on IBM/cpex-plugins

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cpex_pii_filter-0.3.7-cp311-abi3-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for cpex_pii_filter-0.3.7-cp311-abi3-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 4bdfd4a1985b5c515344781d6899a54c59346f6100f4c667613ec2b18a0a39a4
MD5 b75a47c6d941736f4a97c910daae2432
BLAKE2b-256 bb8255bab5675f4aaaa178084d6024f66285ab1da48c8716176d2d333d5e5156

See more details on using hashes here.

Provenance

The following attestation bundles were made for cpex_pii_filter-0.3.7-cp311-abi3-manylinux_2_34_aarch64.whl:

Publisher: release-rust-python-package.yaml on IBM/cpex-plugins

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cpex_pii_filter-0.3.7-cp311-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cpex_pii_filter-0.3.7-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd2938c410f2a5ea5a6dd2d57ad2a7d05f05aa73d9dfd40643dd1c2fe864d6bd
MD5 bccc25c1f01155ae4eb66a104b3d09e4
BLAKE2b-256 5fdf7b2d39103871979412f5c6cbb401820aaa27e046aa6de4e54e17b50c3476

See more details on using hashes here.

Provenance

The following attestation bundles were made for cpex_pii_filter-0.3.7-cp311-abi3-macosx_11_0_arm64.whl:

Publisher: release-rust-python-package.yaml on IBM/cpex-plugins

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.3.7 This release

7 files

0.3.6

7 files

0.3.5

7 files

0.3.4

7 files

0.3.3

7 files

0.3.2

7 files

0.3.1

7 files

0.3.0

7 files

0.2.2

7 files

0.2.1

7 files

0.2.0

7 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page