Skip to content

Commit

Permalink
More constraints on IP like strings to prevent Chrome versions from b…
Browse files Browse the repository at this point in the history
…eing excluded
  • Loading branch information
eugene-chang-fs committed Jan 25, 2024
1 parent a6084e6 commit 50e29b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions relay.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ block-content:
# body:
# - exclude: '\$[0-9]+(\.[0-9][0-9])?' # Dollar quantities
# - exclude: 'EXCLUDE ME'
# - mask: '[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+' # IP-like strings
# - mask: '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' # IP-like strings
# - mask: 'MASK ME'
body:

# The 'header' option works just like 'body', but it applies to header values
# instead.
# Example:
# header:
# - exclude: '[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+' # IP-like strings
# - exclude: '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' # IP-like strings
header:

# You can also define block rules using environment variables.
Expand Down

0 comments on commit 50e29b1

Please sign in to comment.