mirror of https://github.com/searxng/searxng.git
[mod] limiter plugin: Accept-Encoding handling
Only raise "suspicious Accept-Encoding" when both "gzip" and "deflate" are missing from Accept-Encoding. Prevent Browsers which only implement one compression solution from being blocked by the limiter plugin. Example Browser which is currently blocked: Lynx Browser (https://lynx.invisible-island.net)
This commit is contained in:
parent
5a241e545e
commit
221740f76e
|
@ -67,7 +67,7 @@ def is_accepted_request() -> bool:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
accept_encoding_list = [l.strip() for l in request.headers.get('Accept-Encoding', '').split(',')]
|
accept_encoding_list = [l.strip() for l in request.headers.get('Accept-Encoding', '').split(',')]
|
||||||
if 'gzip' not in accept_encoding_list or 'deflate' not in accept_encoding_list:
|
if 'gzip' not in accept_encoding_list and 'deflate' not in accept_encoding_list:
|
||||||
logger.debug("suspicious Accept-Encoding") # pylint: disable=undefined-variable
|
logger.debug("suspicious Accept-Encoding") # pylint: disable=undefined-variable
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue