50 def post_search(self, request:
"SXNG_Request", search:
"SearchWithPlugins") -> EngineResults:
53 if search.search_query.pageno > 1:
56 if search.search_query.query.lower() ==
"tor-check":
60 resp = get(url_exit_list)
61 node_list = re.findall(reg, resp.text)
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}"))
69 real_ip = get_real_ip(request)
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}"))
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}"))