From 041f457dfa92e3dbb33e9cdb7de2ce9024869b7d Mon Sep 17 00:00:00 2001 From: Bnyro Date: Thu, 20 Nov 2025 13:30:12 +0100 Subject: [PATCH] [fix] presearch engine: blocked by captcha on every request Presearch responds with a Cloudflare captcha on each request when using HTTP2. Using HTTP1.1, everything seems to work fine. - other engines with the same issue: pixabay, uxwing - closes https://github.com/searxng/searxng/issues/5438 --- searx/engines/presearch.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/searx/engines/presearch.py b/searx/engines/presearch.py index 36b754f87..69fbdfa91 100644 --- a/searx/engines/presearch.py +++ b/searx/engines/presearch.py @@ -89,6 +89,9 @@ time_range_support = True send_accept_language_header = True categories = ["general", "web"] # general, images, videos, news +# HTTP2 requests immediately get blocked by a CAPTCHA +enable_http2 = False + search_type = "search" """must be any of ``search``, ``images``, ``videos``, ``news``"""