diff options
author | Brock Vojkovic <brockv@tuta.io> | 2023-12-12 00:22:10 +1100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarIT.de> | 2023-12-11 15:21:02 +0100 |
commit | 0bcff32dd7dbacf5e5b259365a21afa9b9409325 (patch) | |
tree | aa4d2b1f57548acdaa7516578a986b7fc3353fe1 | |
parent | 8effefa8db401661d205d51d17ef25b3f8cf5eda (diff) | |
download | searxng-0bcff32dd7dbacf5e5b259365a21afa9b9409325.tar.gz searxng-0bcff32dd7dbacf5e5b259365a21afa9b9409325.zip |
[fix] update check.searx.space IP addresses
-rw-r--r-- | searx/botdetection/ip_lists.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/searx/botdetection/ip_lists.py b/searx/botdetection/ip_lists.py index 5c904f4ae..c94f2a6e8 100644 --- a/searx/botdetection/ip_lists.py +++ b/searx/botdetection/ip_lists.py @@ -13,7 +13,7 @@ The ``ip_lists`` method implements IP :py:obj:`block- <block_ip>` and [botdetection.ip_lists] pass_ip = [ - '140.238.172.132', # IPv4 of check.searx.space + '167.235.158.251', # IPv4 of check.searx.space '192.168.0.0/16', # IPv4 private network 'fe80::/10' # IPv6 linklocal ] @@ -40,8 +40,8 @@ logger = logger.getChild('ip_limit') SEARXNG_ORG = [ # https://github.com/searxng/searxng/pull/2484#issuecomment-1576639195 - '140.238.172.132', # IPv4 check.searx.space - '2603:c022:0:4900::/56', # IPv6 check.searx.space + '167.235.158.251', # IPv4 check.searx.space + '2a01:04f8:1c1c:8fc2::/64', # IPv6 check.searx.space ] """Passlist of IPs from the SearXNG organization, e.g. `check.searx.space`.""" |