2019-12-20 05:28:12 +00:00
|
|
|
"""Onionr - Private P2P Communication.
|
2019-12-13 18:24:29 +00:00
|
|
|
|
2019-12-20 05:28:12 +00:00
|
|
|
Ensure sockets don't get made to non localhost
|
2019-12-13 18:24:29 +00:00
|
|
|
"""
|
|
|
|
import ipaddress
|
|
|
|
|
2022-09-27 17:21:00 +00:00
|
|
|
from logger import log as logging
|
2019-12-14 19:45:18 +00:00
|
|
|
from onionrexceptions import NetworkLeak
|
2019-12-13 18:24:29 +00:00
|
|
|
"""
|
2022-03-18 00:56:31 +00:00
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2019-12-13 18:24:29 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
def detect_socket_leaks(socket_event):
|
2019-12-20 05:28:12 +00:00
|
|
|
"""Is called by the big brother broker whenever.
|
|
|
|
|
2019-12-13 18:24:29 +00:00
|
|
|
a socket connection happens.
|
|
|
|
raises exception & logs if not to loopback
|
|
|
|
"""
|
|
|
|
ip_address = socket_event[1][0]
|
2022-02-14 23:47:54 +00:00
|
|
|
if ip_address.startswith('/'):
|
|
|
|
return
|
2019-12-13 18:24:29 +00:00
|
|
|
|
|
|
|
# validate is valid ip address (no hostname, etc)
|
2019-12-14 19:45:18 +00:00
|
|
|
# raises NetworkLeak if not
|
|
|
|
try:
|
2020-03-16 07:06:37 +00:00
|
|
|
ip_address = ipaddress.ip_address(ip_address)
|
2019-12-14 19:45:18 +00:00
|
|
|
except ValueError:
|
2022-09-27 17:21:00 +00:00
|
|
|
logging.warn(f'Conn made to {ip_address} outside of Tor/similar')
|
2019-12-18 10:07:20 +00:00
|
|
|
raise \
|
|
|
|
NetworkLeak('Conn to host/non local IP, this is a privacy issue!')
|
2019-12-14 19:45:18 +00:00
|
|
|
|
|
|
|
# Validate that the IP is localhost ipv4
|
2020-03-16 07:06:37 +00:00
|
|
|
if not ip_address.is_loopback and not ip_address.is_multicast \
|
|
|
|
and not ip_address.is_private:
|
2022-09-27 17:21:00 +00:00
|
|
|
logging.warn(f'Conn made to {ip_address} outside of Tor/similar')
|
2019-12-14 19:45:18 +00:00
|
|
|
raise NetworkLeak('Conn to non local IP, this is a privacy concern!')
|