.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
tor_check.py
Go to the documentation of this file.
1# SPDX-License-Identifier: AGPL-3.0-or-later
2"""A plugin to check if the ip address of the request is a Tor exit-node if the
3user searches for ``tor-check``. It fetches the tor exit node list from
4:py:obj:`url_exit_list` and parses all the IPs into a list, then checks if the
5user's IP address is in it.
6"""
7from __future__ import annotations
8import typing
9
10import re
11from flask_babel import gettext
12from httpx import HTTPError
13
14from searx.network import get
15from searx.plugins import Plugin, PluginInfo
16from searx.result_types import EngineResults
17from searx.botdetection import get_real_ip
18
19if typing.TYPE_CHECKING:
20 from searx.search import SearchWithPlugins
21 from searx.extended_types import SXNG_Request
22 from searx.plugins import PluginCfg
23
24
25# Regex for exit node addresses in the list.
26reg = re.compile(r"(?<=ExitAddress )\S+")
27
28url_exit_list = "https://check.torproject.org/exit-addresses"
29"""URL to load Tor exit list from."""
30
31
33 """Rewrite hostnames, remove results or prioritize them."""
34
35 id = "tor_check"
36 keywords = ["tor-check"]
37
38 def __init__(self, plg_cfg: "PluginCfg") -> None:
39 super().__init__(plg_cfg)
41 id=self.id,
42 name=gettext("Tor check plugin"),
43 description=gettext(
44 "This plugin checks if the address of the request is a Tor exit-node, and"
45 " informs the user if it is; like check.torproject.org, but from SearXNG."
46 ),
47 preference_section="query",
48 )
49
50 def post_search(self, request: "SXNG_Request", search: "SearchWithPlugins") -> EngineResults:
51 results = EngineResults()
52
53 if search.search_query.pageno > 1:
54 return results
55
56 if search.search_query.query.lower() == "tor-check":
57
58 # Request the list of tor exit nodes.
59 try:
60 resp = get(url_exit_list)
61 node_list = re.findall(reg, resp.text) # type: ignore
62
63 except HTTPError:
64 # No answer, return error
65 msg = gettext("Could not download the list of Tor exit-nodes from")
66 results.add(results.types.Answer(answer=f"{msg} {url_exit_list}"))
67 return results
68
69 real_ip = get_real_ip(request)
70
71 if real_ip in node_list:
72 msg = gettext("You are using Tor and it looks like you have the external IP address")
73 results.add(results.types.Answer(answer=f"{msg} {real_ip}"))
74
75 else:
76 msg = gettext("You are not using Tor and you have the external IP address")
77 results.add(results.types.Answer(answer=f"{msg} {real_ip}"))
78
79 return results
EngineResults post_search(self, "SXNG_Request" request, "SearchWithPlugins" search)
Definition tor_check.py:50
None __init__(self, "PluginCfg" plg_cfg)
Definition tor_check.py:38