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

Functions

werkzeug.Response|None filter_request (IPv4Network|IPv6Network network, flask.Request request, config.Config cfg)
 

Variables

 logger = logger.getChild('ip_limit')
 
int BURST_WINDOW = 20
 
int BURST_MAX = 15
 
int BURST_MAX_SUSPICIOUS = 2
 
int LONG_WINDOW = 600
 
int LONG_MAX = 150
 
int LONG_MAX_SUSPICIOUS = 10
 
int API_WONDOW = 3600
 
int API_MAX = 4
 
int SUSPICIOUS_IP_WINDOW = 3600 * 24 * 30
 
int SUSPICIOUS_IP_MAX = 3
 

Detailed Description

.. _botdetection.ip_limit:

Method ``ip_limit``
-------------------

The ``ip_limit`` method counts request from an IP in *sliding windows*.  If
there are to many requests in a sliding window, the request is evaluated as a
bot request.  This method requires a redis DB and needs a HTTP X-Forwarded-For_
header.  To take privacy only the hash value of an IP is stored in the redis DB
and at least for a maximum of 10 minutes.

The :py:obj:`.link_token` method can be used to investigate whether a request is
*suspicious*.  To activate the :py:obj:`.link_token` method in the
:py:obj:`.ip_limit` method add the following configuration:

.. code:: toml

   [botdetection.ip_limit]
   link_token = true

If the :py:obj:`.link_token` method is activated and a request is *suspicious*
the request rates are reduced:

- :py:obj:`BURST_MAX` -> :py:obj:`BURST_MAX_SUSPICIOUS`
- :py:obj:`LONG_MAX` -> :py:obj:`LONG_MAX_SUSPICIOUS`

To intercept bots that get their IPs from a range of IPs, there is a
:py:obj:`SUSPICIOUS_IP_WINDOW`.  In this window the suspicious IPs are stored
for a longer time.  IPs stored in this sliding window have a maximum of
:py:obj:`SUSPICIOUS_IP_MAX` accesses before they are blocked.  As soon as the IP
makes a request that is not suspicious, the sliding window for this IP is
dropped.

.. _X-Forwarded-For:
   https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Forwarded-For

Function Documentation

◆ filter_request()

werkzeug.Response | None searx.botdetection.ip_limit.filter_request ( IPv4Network | IPv6Network network,
flask.Request request,
config.Config cfg )

Definition at line 92 of file ip_limit.py.

96) -> werkzeug.Response | None:
97
98 # pylint: disable=too-many-return-statements
99 redis_client = redisdb.client()
100
101 if network.is_link_local and not cfg['botdetection.ip_limit.filter_link_local']:
102 logger.debug("network %s is link-local -> not monitored by ip_limit method", network.compressed)
103 return None
104
105 if request.args.get('format', 'html') != 'html':
106 c = incr_sliding_window(redis_client, 'ip_limit.API_WONDOW:' + network.compressed, API_WONDOW)
107 if c > API_MAX:
108 return too_many_requests(network, "too many request in API_WINDOW")
109
110 if cfg['botdetection.ip_limit.link_token']:
111
112 suspicious = link_token.is_suspicious(network, request, True)
113
114 if not suspicious:
115 # this IP is no longer suspicious: release ip again / delete the counter of this IP
116 drop_counter(redis_client, 'ip_limit.SUSPICIOUS_IP_WINDOW' + network.compressed)
117 return None
118
119 # this IP is suspicious: count requests from this IP
120 c = incr_sliding_window(
121 redis_client, 'ip_limit.SUSPICIOUS_IP_WINDOW' + network.compressed, SUSPICIOUS_IP_WINDOW
122 )
123 if c > SUSPICIOUS_IP_MAX:
124 logger.error("BLOCK: too many request from %s in SUSPICIOUS_IP_WINDOW (redirect to /)", network)
125 return flask.redirect(flask.url_for('index'), code=302)
126
127 c = incr_sliding_window(redis_client, 'ip_limit.BURST_WINDOW' + network.compressed, BURST_WINDOW)
128 if c > BURST_MAX_SUSPICIOUS:
129 return too_many_requests(network, "too many request in BURST_WINDOW (BURST_MAX_SUSPICIOUS)")
130
131 c = incr_sliding_window(redis_client, 'ip_limit.LONG_WINDOW' + network.compressed, LONG_WINDOW)
132 if c > LONG_MAX_SUSPICIOUS:
133 return too_many_requests(network, "too many request in LONG_WINDOW (LONG_MAX_SUSPICIOUS)")
134
135 return None
136
137 # vanilla limiter without extensions counts BURST_MAX and LONG_MAX
138 c = incr_sliding_window(redis_client, 'ip_limit.BURST_WINDOW' + network.compressed, BURST_WINDOW)
139 if c > BURST_MAX:
140 return too_many_requests(network, "too many request in BURST_WINDOW (BURST_MAX)")
141
142 c = incr_sliding_window(redis_client, 'ip_limit.LONG_WINDOW' + network.compressed, LONG_WINDOW)
143 if c > LONG_MAX:
144 return too_many_requests(network, "too many request in LONG_WINDOW (LONG_MAX)")
145
146 return None

Variable Documentation

◆ API_MAX

int searx.botdetection.ip_limit.API_MAX = 4

Definition at line 82 of file ip_limit.py.

◆ API_WONDOW

int searx.botdetection.ip_limit.API_WONDOW = 3600

Definition at line 79 of file ip_limit.py.

◆ BURST_MAX

int searx.botdetection.ip_limit.BURST_MAX = 15

Definition at line 64 of file ip_limit.py.

◆ BURST_MAX_SUSPICIOUS

int searx.botdetection.ip_limit.BURST_MAX_SUSPICIOUS = 2

Definition at line 67 of file ip_limit.py.

◆ BURST_WINDOW

int searx.botdetection.ip_limit.BURST_WINDOW = 20

Definition at line 61 of file ip_limit.py.

◆ logger

searx.botdetection.ip_limit.logger = logger.getChild('ip_limit')

Definition at line 59 of file ip_limit.py.

◆ LONG_MAX

int searx.botdetection.ip_limit.LONG_MAX = 150

Definition at line 73 of file ip_limit.py.

◆ LONG_MAX_SUSPICIOUS

int searx.botdetection.ip_limit.LONG_MAX_SUSPICIOUS = 10

Definition at line 76 of file ip_limit.py.

◆ LONG_WINDOW

int searx.botdetection.ip_limit.LONG_WINDOW = 600

Definition at line 70 of file ip_limit.py.

◆ SUSPICIOUS_IP_MAX

int searx.botdetection.ip_limit.SUSPICIOUS_IP_MAX = 3

Definition at line 88 of file ip_limit.py.

◆ SUSPICIOUS_IP_WINDOW

int searx.botdetection.ip_limit.SUSPICIOUS_IP_WINDOW = 3600 * 24 * 30

Definition at line 85 of file ip_limit.py.