Generates a host list of first-party trackers for ad-blocking.
https://hostfiles.frogeye.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
673 B
21 lines
673 B
#!/usr/bin/env python3
|
|
|
|
"""
|
|
List of regex matching first-party trackers.
|
|
"""
|
|
|
|
# Syntax: https://docs.python.org/3/library/re.html#regular-expression-syntax
|
|
|
|
REGEXES = [
|
|
r'^.+\.eulerian\.net\.$', # Eulerian
|
|
r'^.+\.criteo\.com\.$', # Criteo
|
|
r'^.+\.dnsdelegation\.io\.$', # Criteo
|
|
r'^.+\.keyade\.com\.$', # Keyade
|
|
r'^.+\.omtrdc\.net\.$', # Adobe Experience Cloud
|
|
r'^.+\.bp01\.net\.$', # NP6
|
|
r'^.+\.ati-host\.net\.$', # Xiti (AT Internet)
|
|
r'^.+\.at-o\.net\.$', # Xiti (AT Internet)
|
|
r'^.+\.edgkey\.net\.$', # Edgekey (Akamai)
|
|
r'^.+\.akaimaiedge\.net\.$', # Edgekey (Akamai)
|
|
r'^.+\.storetail\.io\.$', # Storetail (Criteo)
|
|
]
|