| 
									
										
										
										
											2023-05-23 18:16:37 +02:00
										 |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							|  |  |  | # lint: pylint | 
					
						
							|  |  |  | """.. _limiter src:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Limiter | 
					
						
							|  |  |  | ======= | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. sidebar:: info | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    The limiter requires a :ref:`Redis <settings redis>` database. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Bot protection / IP rate limitation.  The intention of rate limitation is to | 
					
						
							|  |  |  | limit suspicious requests from an IP.  The motivation behind this is the fact | 
					
						
							|  |  |  | that SearXNG passes through requests from bots and is thus classified as a bot | 
					
						
							|  |  |  | itself.  As a result, the SearXNG engine then receives a CAPTCHA or is blocked | 
					
						
							|  |  |  | by the search engine (the origin) in some other way. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | To avoid blocking, the requests from bots to SearXNG must also be blocked, this | 
					
						
							|  |  |  | is the task of the limiter.  To perform this task, the limiter uses the methods | 
					
						
							|  |  |  | from the :py:obj:`searx.botdetection`. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | To enable the limiter activate: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. code:: yaml | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    server: | 
					
						
							|  |  |  |      ... | 
					
						
							|  |  |  |      limiter: true  # rate limit the number of request on the instance, block some bots | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | and set the redis-url connection. Check the value, it depends on your redis DB | 
					
						
							|  |  |  | (see :ref:`settings redis`), by example: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. code:: yaml | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    redis: | 
					
						
							|  |  |  |      url: unix:///usr/local/searxng-redis/run/redis.sock?db=0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-01 15:41:48 +02:00
										 |  |  | from __future__ import annotations | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-26 17:24:43 +02:00
										 |  |  | from pathlib import Path | 
					
						
							| 
									
										
										
										
											2023-06-03 13:43:34 +02:00
										 |  |  | from ipaddress import ip_address | 
					
						
							| 
									
										
										
										
											2023-05-23 18:16:37 +02:00
										 |  |  | import flask | 
					
						
							| 
									
										
										
										
											2023-06-01 15:41:48 +02:00
										 |  |  | import werkzeug | 
					
						
							| 
									
										
										
										
											2023-05-23 18:16:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-26 17:24:43 +02:00
										 |  |  | from searx.tools import config | 
					
						
							| 
									
										
										
										
											2023-06-01 15:41:48 +02:00
										 |  |  | from searx import logger | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from . import ( | 
					
						
							| 
									
										
										
										
											2023-05-23 18:16:37 +02:00
										 |  |  |     http_accept, | 
					
						
							|  |  |  |     http_accept_encoding, | 
					
						
							|  |  |  |     http_accept_language, | 
					
						
							|  |  |  |     http_user_agent, | 
					
						
							|  |  |  |     ip_limit, | 
					
						
							| 
									
										
										
										
											2023-06-03 13:43:34 +02:00
										 |  |  |     ip_lists, | 
					
						
							| 
									
										
										
										
											2023-05-23 18:16:37 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-01 15:41:48 +02:00
										 |  |  | from ._helpers import ( | 
					
						
							|  |  |  |     get_network, | 
					
						
							|  |  |  |     get_real_ip, | 
					
						
							|  |  |  |     dump_request, | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | logger = logger.getChild('botdetection.limiter') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | CFG: config.Config = None  # type: ignore | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-26 17:24:43 +02:00
										 |  |  | LIMITER_CFG_SCHEMA = Path(__file__).parent / "limiter.toml" | 
					
						
							|  |  |  | """Base configuration (schema) of the botdetection.""" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | LIMITER_CFG = Path('/etc/searxng/limiter.toml') | 
					
						
							| 
									
										
										
										
											2023-09-15 09:53:03 +02:00
										 |  |  | """Local Limiter configuration.""" | 
					
						
							| 
									
										
										
										
											2023-05-26 17:24:43 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | CFG_DEPRECATED = { | 
					
						
							|  |  |  |     # "dummy.old.foo": "config 'dummy.old.foo' exists only for tests.  Don't use it in your real project config." | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-28 18:58:31 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | def get_cfg() -> config.Config: | 
					
						
							| 
									
										
										
										
											2023-06-01 15:41:48 +02:00
										 |  |  |     global CFG  # pylint: disable=global-statement | 
					
						
							| 
									
										
										
										
											2023-05-28 18:58:31 +02:00
										 |  |  |     if CFG is None: | 
					
						
							| 
									
										
										
										
											2023-06-01 15:41:48 +02:00
										 |  |  |         CFG = config.Config.from_toml(LIMITER_CFG_SCHEMA, LIMITER_CFG, CFG_DEPRECATED) | 
					
						
							| 
									
										
										
										
											2023-05-28 18:58:31 +02:00
										 |  |  |     return CFG | 
					
						
							| 
									
										
										
										
											2023-05-26 17:24:43 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-01 15:41:48 +02:00
										 |  |  | def filter_request(request: flask.Request) -> werkzeug.Response | None: | 
					
						
							| 
									
										
										
										
											2023-06-03 13:43:34 +02:00
										 |  |  |     # pylint: disable=too-many-return-statements | 
					
						
							| 
									
										
										
										
											2023-05-26 17:24:43 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-01 15:41:48 +02:00
										 |  |  |     cfg = get_cfg() | 
					
						
							| 
									
										
										
										
											2023-06-03 13:43:34 +02:00
										 |  |  |     real_ip = ip_address(get_real_ip(request)) | 
					
						
							| 
									
										
										
										
											2023-06-01 15:41:48 +02:00
										 |  |  |     network = get_network(real_ip, cfg) | 
					
						
							| 
									
										
										
										
											2023-06-03 13:43:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if request.path == '/healthz': | 
					
						
							|  |  |  |         return None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # link-local | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-01 15:41:48 +02:00
										 |  |  |     if network.is_link_local: | 
					
						
							|  |  |  |         return None | 
					
						
							| 
									
										
										
										
											2023-05-23 18:16:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-03 13:43:34 +02:00
										 |  |  |     # block- & pass- lists | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     # 1. The IP of the request is first checked against the pass-list; if the IP | 
					
						
							|  |  |  |     #    matches an entry in the list, the request is not blocked. | 
					
						
							|  |  |  |     # 2. If no matching entry is found in the pass-list, then a check is made against | 
					
						
							|  |  |  |     #    the block list; if the IP matches an entry in the list, the request is | 
					
						
							|  |  |  |     #    blocked. | 
					
						
							|  |  |  |     # 3. If the IP is not in either list, the request is not blocked. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     match, msg = ip_lists.pass_ip(real_ip, cfg) | 
					
						
							|  |  |  |     if match: | 
					
						
							|  |  |  |         logger.warning("PASS %s: matched PASSLIST - %s", network.compressed, msg) | 
					
						
							| 
									
										
										
										
											2023-05-23 18:16:37 +02:00
										 |  |  |         return None | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-03 13:43:34 +02:00
										 |  |  |     match, msg = ip_lists.block_ip(real_ip, cfg) | 
					
						
							|  |  |  |     if match: | 
					
						
							|  |  |  |         logger.error("BLOCK %s: matched BLOCKLIST - %s", network.compressed, msg) | 
					
						
							|  |  |  |         return flask.make_response(('IP is on BLOCKLIST - %s' % msg, 429)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # methods applied on / | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-23 18:16:37 +02:00
										 |  |  |     for func in [ | 
					
						
							|  |  |  |         http_user_agent, | 
					
						
							|  |  |  |     ]: | 
					
						
							| 
									
										
										
										
											2023-06-01 15:41:48 +02:00
										 |  |  |         val = func.filter_request(network, request, cfg) | 
					
						
							| 
									
										
										
										
											2023-05-23 18:16:37 +02:00
										 |  |  |         if val is not None: | 
					
						
							|  |  |  |             return val | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-03 13:43:34 +02:00
										 |  |  |     # methods applied on /search | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-23 18:16:37 +02:00
										 |  |  |     if request.path == '/search': | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for func in [ | 
					
						
							|  |  |  |             http_accept, | 
					
						
							|  |  |  |             http_accept_encoding, | 
					
						
							|  |  |  |             http_accept_language, | 
					
						
							|  |  |  |             http_user_agent, | 
					
						
							|  |  |  |             ip_limit, | 
					
						
							|  |  |  |         ]: | 
					
						
							| 
									
										
										
										
											2023-06-01 15:41:48 +02:00
										 |  |  |             val = func.filter_request(network, request, cfg) | 
					
						
							| 
									
										
										
										
											2023-05-23 18:16:37 +02:00
										 |  |  |             if val is not None: | 
					
						
							|  |  |  |                 return val | 
					
						
							| 
									
										
										
										
											2023-06-01 15:41:48 +02:00
										 |  |  |     logger.debug(f"OK {network}: %s", dump_request(flask.request)) | 
					
						
							| 
									
										
										
										
											2023-05-23 18:16:37 +02:00
										 |  |  |     return None |