.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
ip_limit.py
Go to the documentation of this file.
1# SPDX-License-Identifier: AGPL-3.0-or-later
2""".. _botdetection.ip_limit:
3
4Method ``ip_limit``
5-------------------
6
7The ``ip_limit`` method counts request from an IP in *sliding windows*. If
8there are to many requests in a sliding window, the request is evaluated as a
9bot request. This method requires a redis DB and needs a HTTP X-Forwarded-For_
10header. To take privacy only the hash value of an IP is stored in the redis DB
11and at least for a maximum of 10 minutes.
12
13The :py:obj:`.link_token` method can be used to investigate whether a request is
14*suspicious*. To activate the :py:obj:`.link_token` method in the
15:py:obj:`.ip_limit` method add the following configuration:
16
17.. code:: toml
18
19 [botdetection.ip_limit]
20 link_token = true
21
22If the :py:obj:`.link_token` method is activated and a request is *suspicious*
23the request rates are reduced:
24
25- :py:obj:`BURST_MAX` -> :py:obj:`BURST_MAX_SUSPICIOUS`
26- :py:obj:`LONG_MAX` -> :py:obj:`LONG_MAX_SUSPICIOUS`
27
28To intercept bots that get their IPs from a range of IPs, there is a
29:py:obj:`SUSPICIOUS_IP_WINDOW`. In this window the suspicious IPs are stored
30for a longer time. IPs stored in this sliding window have a maximum of
31:py:obj:`SUSPICIOUS_IP_MAX` accesses before they are blocked. As soon as the IP
32makes a request that is not suspicious, the sliding window for this IP is
33dropped.
34
35.. _X-Forwarded-For:
36 https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Forwarded-For
37
38"""
39from __future__ import annotations
40from ipaddress import (
41 IPv4Network,
42 IPv6Network,
43)
44
45import flask
46import werkzeug
47
48from searx.extended_types import SXNG_Request
49from searx import redisdb
50from searx.redislib import incr_sliding_window, drop_counter
51
52from . import link_token
53from . import config
54from ._helpers import (
55 too_many_requests,
56 logger,
57)
58
59
60logger = logger.getChild('ip_limit')
61
62BURST_WINDOW = 20
63"""Time (sec) before sliding window for *burst* requests expires."""
64
65BURST_MAX = 15
66"""Maximum requests from one IP in the :py:obj:`BURST_WINDOW`"""
67
68BURST_MAX_SUSPICIOUS = 2
69"""Maximum of suspicious requests from one IP in the :py:obj:`BURST_WINDOW`"""
70
71LONG_WINDOW = 600
72"""Time (sec) before the longer sliding window expires."""
73
74LONG_MAX = 150
75"""Maximum requests from one IP in the :py:obj:`LONG_WINDOW`"""
76
77LONG_MAX_SUSPICIOUS = 10
78"""Maximum suspicious requests from one IP in the :py:obj:`LONG_WINDOW`"""
79
80API_WINDOW = 3600
81"""Time (sec) before sliding window for API requests (format != html) expires."""
82
83API_MAX = 4
84"""Maximum requests from one IP in the :py:obj:`API_WINDOW`"""
85
86SUSPICIOUS_IP_WINDOW = 3600 * 24 * 30
87"""Time (sec) before sliding window for one suspicious IP expires."""
88
89SUSPICIOUS_IP_MAX = 3
90"""Maximum requests from one suspicious IP in the :py:obj:`SUSPICIOUS_IP_WINDOW`."""
91
92
94 network: IPv4Network | IPv6Network,
95 request: SXNG_Request,
96 cfg: config.Config,
97) -> werkzeug.Response | None:
98
99 # pylint: disable=too-many-return-statements
100 redis_client = redisdb.client()
101
102 if network.is_link_local and not cfg['botdetection.ip_limit.filter_link_local']:
103 logger.debug("network %s is link-local -> not monitored by ip_limit method", network.compressed)
104 return None
105
106 if request.args.get('format', 'html') != 'html':
107 c = incr_sliding_window(redis_client, 'ip_limit.API_WINDOW:' + network.compressed, API_WINDOW)
108 if c > API_MAX:
109 return too_many_requests(network, "too many request in API_WINDOW")
110
111 if cfg['botdetection.ip_limit.link_token']:
112
113 suspicious = link_token.is_suspicious(network, request, True)
114
115 if not suspicious:
116 # this IP is no longer suspicious: release ip again / delete the counter of this IP
117 drop_counter(redis_client, 'ip_limit.SUSPICIOUS_IP_WINDOW' + network.compressed)
118 return None
119
120 # this IP is suspicious: count requests from this IP
121 c = incr_sliding_window(
122 redis_client, 'ip_limit.SUSPICIOUS_IP_WINDOW' + network.compressed, SUSPICIOUS_IP_WINDOW
123 )
124 if c > SUSPICIOUS_IP_MAX:
125 logger.error("BLOCK: too many request from %s in SUSPICIOUS_IP_WINDOW (redirect to /)", network)
126 response = flask.redirect(flask.url_for('index'), code=302)
127 response.headers["Cache-Control"] = "no-store, max-age=0"
128 return response
129
130 c = incr_sliding_window(redis_client, 'ip_limit.BURST_WINDOW' + network.compressed, BURST_WINDOW)
131 if c > BURST_MAX_SUSPICIOUS:
132 return too_many_requests(network, "too many request in BURST_WINDOW (BURST_MAX_SUSPICIOUS)")
133
134 c = incr_sliding_window(redis_client, 'ip_limit.LONG_WINDOW' + network.compressed, LONG_WINDOW)
135 if c > LONG_MAX_SUSPICIOUS:
136 return too_many_requests(network, "too many request in LONG_WINDOW (LONG_MAX_SUSPICIOUS)")
137
138 return None
139
140 # vanilla limiter without extensions counts BURST_MAX and LONG_MAX
141 c = incr_sliding_window(redis_client, 'ip_limit.BURST_WINDOW' + network.compressed, BURST_WINDOW)
142 if c > BURST_MAX:
143 return too_many_requests(network, "too many request in BURST_WINDOW (BURST_MAX)")
144
145 c = incr_sliding_window(redis_client, 'ip_limit.LONG_WINDOW' + network.compressed, LONG_WINDOW)
146 if c > LONG_MAX:
147 return too_many_requests(network, "too many request in LONG_WINDOW (LONG_MAX)")
148
149 return None
werkzeug.Response|None filter_request(IPv4Network|IPv6Network network, SXNG_Request request, config.Config cfg)
Definition ip_limit.py:97