.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
searx.limiter Namespace Reference

Functions

config.Config get_cfg ()
 
werkzeug.Response|None filter_request (flask.Request request)
 
 pre_request ()
 
 is_installed ()
 
 initialize (flask.Flask app, settings)
 

Variables

 logger = logger.getChild('limiter')
 
config CFG = None
 
bool _INSTALLED = False
 
str LIMITER_CFG_SCHEMA = Path(__file__).parent / "limiter.toml"
 
 LIMITER_CFG = Path('/etc/searxng/limiter.toml')
 
dict CFG_DEPRECATED
 

Detailed Description

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 :ref:`botdetection`:

- Analysis of the HTTP header in the request / :ref:`botdetection probe headers`
  can be easily bypassed.

- Block and pass lists in which IPs are listed / :ref:`botdetection ip_lists`
  are hard to maintain, since the IPs of bots are not all known and change over
  the time.

- Detection & dynamically :ref:`botdetection rate limit` of bots based on the
  behavior of the requests.  For dynamically changeable IP lists a Redis
  database is needed.

The prerequisite for IP based methods is the correct determination of the IP of
the client. The IP of the client is determined via the X-Forwarded-For_ HTTP
header.

.. attention::

   A correct setup of the HTTP request headers ``X-Forwarded-For`` and
   ``X-Real-IP`` is essential to be able to assign a request to an IP correctly:

   - `NGINX RequestHeader`_
   - `Apache RequestHeader`_

.. _X-Forwarded-For:
    https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Forwarded-For
.. _NGINX RequestHeader:
    https://docs.searxng.org/admin/installation-nginx.html#nginx-s-searxng-site
.. _Apache RequestHeader:
    https://docs.searxng.org/admin/installation-apache.html#apache-s-searxng-site

Enable Limiter
==============

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


Configure Limiter
=================

The methods of :ref:`botdetection` the limiter uses are configured in a local
file ``/etc/searxng/limiter.toml``.  The defaults are shown in limiter.toml_ /
Don't copy all values to your local configuration, just enable what you need by
overwriting the defaults.  For instance to activate the ``link_token`` method in
the :ref:`botdetection.ip_limit` you only need to set this option to ``true``:

.. code:: toml

   [botdetection.ip_limit]
   link_token = true

.. _limiter.toml:

``limiter.toml``
================

In this file the limiter finds the configuration of the :ref:`botdetection`:

- :ref:`botdetection ip_lists`
- :ref:`botdetection rate limit`
- :ref:`botdetection probe headers`

.. kernel-include:: $SOURCEDIR/limiter.toml
   :code: toml

Implementation
==============

Function Documentation

◆ filter_request()

werkzeug.Response | None searx.limiter.filter_request ( flask.Request request)

Definition at line 146 of file limiter.py.

146def filter_request(request: flask.Request) -> werkzeug.Response | None:
147 # pylint: disable=too-many-return-statements
148
149 cfg = get_cfg()
150 real_ip = ip_address(get_real_ip(request))
151 network = get_network(real_ip, cfg)
152
153 if request.path == '/healthz':
154 return None
155
156 # link-local
157
158 if network.is_link_local:
159 return None
160
161 # block- & pass- lists
162 #
163 # 1. The IP of the request is first checked against the pass-list; if the IP
164 # matches an entry in the list, the request is not blocked.
165 # 2. If no matching entry is found in the pass-list, then a check is made against
166 # the block list; if the IP matches an entry in the list, the request is
167 # blocked.
168 # 3. If the IP is not in either list, the request is not blocked.
169
170 match, msg = ip_lists.pass_ip(real_ip, cfg)
171 if match:
172 logger.warning("PASS %s: matched PASSLIST - %s", network.compressed, msg)
173 return None
174
175 match, msg = ip_lists.block_ip(real_ip, cfg)
176 if match:
177 logger.error("BLOCK %s: matched BLOCKLIST - %s", network.compressed, msg)
178 return flask.make_response(('IP is on BLOCKLIST - %s' % msg, 429))
179
180 # methods applied on /
181
182 for func in [
183 http_user_agent,
184 ]:
185 val = func.filter_request(network, request, cfg)
186 if val is not None:
187 return val
188
189 # methods applied on /search
190
191 if request.path == '/search':
192
193 for func in [
194 http_accept,
195 http_accept_encoding,
196 http_accept_language,
197 http_user_agent,
198 ip_limit,
199 ]:
200 val = func.filter_request(network, request, cfg)
201 if val is not None:
202 return val
203 logger.debug(f"OK {network}: %s", dump_request(flask.request))
204 return None
205
206

References searx.limiter.get_cfg().

Referenced by searx.limiter.pre_request().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ get_cfg()

config.Config searx.limiter.get_cfg ( )

Definition at line 139 of file limiter.py.

139def get_cfg() -> config.Config:
140 global CFG # pylint: disable=global-statement
141 if CFG is None:
142 CFG = config.Config.from_toml(LIMITER_CFG_SCHEMA, LIMITER_CFG, CFG_DEPRECATED)
143 return CFG
144
145

Referenced by searx.limiter.filter_request().

+ Here is the caller graph for this function:

◆ initialize()

searx.limiter.initialize ( flask.Flask app,
settings )
Install the limiter

Definition at line 217 of file limiter.py.

217def initialize(app: flask.Flask, settings):
218 """Install the limiter"""
219 global _INSTALLED # pylint: disable=global-statement
220
221 # even if the limiter is not activated, the botdetection must be activated
222 # (e.g. the self_info plugin uses the botdetection to get client IP)
223
224 cfg = get_cfg()
225 redis_client = redisdb.client()
226 botdetection.init(cfg, redis_client)
227
228 if not (settings['server']['limiter'] or settings['server']['public_instance']):
229 return
230
231 if not redis_client:
232 logger.error(
233 "The limiter requires Redis, please consult the documentation: "
234 "https://docs.searxng.org/admin/searx.limiter.html"
235 )
236 if settings['server']['public_instance']:
237 sys.exit(1)
238 return
239
240 _INSTALLED = True
241
242 if settings['server']['public_instance']:
243 # overwrite limiter.toml setting
244 cfg.set('botdetection.ip_limit.link_token', True)
245
246 app.before_request(pre_request)

◆ is_installed()

searx.limiter.is_installed ( )
Returns ``True`` if limiter is active and a redis DB is available.

Definition at line 212 of file limiter.py.

212def is_installed():
213 """Returns ``True`` if limiter is active and a redis DB is available."""
214 return _INSTALLED
215
216

◆ pre_request()

searx.limiter.pre_request ( )
See :py:obj:`flask.Flask.before_request`

Definition at line 207 of file limiter.py.

207def pre_request():
208 """See :py:obj:`flask.Flask.before_request`"""
209 return filter_request(flask.request)
210
211

References searx.limiter.filter_request().

+ Here is the call graph for this function:

Variable Documentation

◆ _INSTALLED

bool searx.limiter._INSTALLED = False
protected

Definition at line 126 of file limiter.py.

◆ CFG

config searx.limiter.CFG = None

Definition at line 125 of file limiter.py.

◆ CFG_DEPRECATED

dict searx.limiter.CFG_DEPRECATED
Initial value:
1= {
2 # "dummy.old.foo": "config 'dummy.old.foo' exists only for tests. Don't use it in your real project config."
3}

Definition at line 134 of file limiter.py.

◆ LIMITER_CFG

searx.limiter.LIMITER_CFG = Path('/etc/searxng/limiter.toml')

Definition at line 131 of file limiter.py.

◆ LIMITER_CFG_SCHEMA

str searx.limiter.LIMITER_CFG_SCHEMA = Path(__file__).parent / "limiter.toml"

Definition at line 128 of file limiter.py.

◆ logger

searx.limiter.logger = logger.getChild('limiter')

Definition at line 123 of file limiter.py.