2024-07-31 04:30:24 +02:00
|
|
|
#!/usr/bin/env python3
|
2024-07-31 02:48:00 +02:00
|
|
|
|
2024-07-31 04:30:24 +02:00
|
|
|
import subprocess
|
|
|
|
import requests
|
|
|
|
import argparse
|
|
|
|
import json
|
|
|
|
import random
|
2024-07-31 02:48:00 +02:00
|
|
|
|
2024-07-31 04:30:24 +02:00
|
|
|
PRIVACY_FRIENDLY_COUNTRIES = ['Sweden', 'Switzerland', 'Germany', 'Finland', 'Netherlands', 'Norway']
|
2024-07-31 02:48:00 +02:00
|
|
|
|
2024-08-05 19:17:01 +02:00
|
|
|
TAILSCALE_ARGS = [
|
|
|
|
'--exit-node-allow-lan-access',
|
|
|
|
'--stateful-filtering=false',
|
|
|
|
'--accept-dns',
|
|
|
|
'--accept-routes',
|
|
|
|
'--auto-update'
|
|
|
|
]
|
2024-07-31 02:48:00 +02:00
|
|
|
|
2024-08-03 23:16:10 +02:00
|
|
|
def get_current_exit_node():
|
2024-08-05 19:17:01 +02:00
|
|
|
result = subprocess.run(['tailscale', 'status', '--json'], capture_output=True, text=True)
|
|
|
|
if result.returncode != 0:
|
|
|
|
raise Exception("Failed to get Tailscale status")
|
|
|
|
|
|
|
|
status = json.loads(result.stdout)
|
|
|
|
current_exit_node = status.get('Peer', {}).get('Tailnet', {}).get('ExitNode', {}).get('Name')
|
|
|
|
return current_exit_node
|
|
|
|
|
|
|
|
def set_exit_node():
|
|
|
|
# Get the suggested exit node
|
|
|
|
result = subprocess.run(['tailscale', 'exit-node', 'suggest'], capture_output=True, text=True)
|
|
|
|
exit_node = ''
|
|
|
|
for line in result.stdout.splitlines():
|
|
|
|
if 'Suggested exit node' in line:
|
|
|
|
exit_node = line.split(': ')[1].strip()
|
|
|
|
break
|
|
|
|
|
|
|
|
print(f"Suggested exit node: {exit_node}")
|
2024-07-31 02:48:00 +02:00
|
|
|
|
2024-08-05 19:17:01 +02:00
|
|
|
# Set the exit node with additional arguments
|
|
|
|
cmd = ['tailscale', 'set', f'--exit-node={exit_node}'] + TAILSCALE_ARGS
|
|
|
|
subprocess.run(cmd, check=True)
|
|
|
|
|
|
|
|
# Verify the exit node
|
2024-07-31 04:30:24 +02:00
|
|
|
response = requests.get('https://am.i.mullvad.net/json')
|
2024-08-05 19:17:01 +02:00
|
|
|
exit_node_info = response.json()
|
|
|
|
exit_node_hostname = exit_node_info.get('mullvad_exit_ip_hostname')
|
|
|
|
|
2024-07-31 04:30:24 +02:00
|
|
|
print(f"Current exit node hostname: {exit_node_hostname}")
|
|
|
|
|
2024-08-05 19:17:01 +02:00
|
|
|
# Get the part before the first '.' in the exit_node
|
2024-07-31 04:30:24 +02:00
|
|
|
exit_node_short = exit_node.split('.')[0]
|
2024-08-05 19:17:01 +02:00
|
|
|
|
|
|
|
# Verify that the exit_node_short and exit_node_hostname are equal
|
2024-07-31 04:30:24 +02:00
|
|
|
if exit_node_short == exit_node_hostname:
|
|
|
|
print("Exit node set successfully!")
|
|
|
|
else:
|
|
|
|
print("Failed to set exit node!")
|
|
|
|
|
|
|
|
def unset_exit_node():
|
2024-08-05 19:17:01 +02:00
|
|
|
# Unset the exit node
|
|
|
|
cmd = ['tailscale', 'set', '--exit-node='] + TAILSCALE_ARGS
|
|
|
|
subprocess.run(cmd, check=True)
|
2024-07-31 04:30:24 +02:00
|
|
|
print("Exit node unset successfully!")
|
|
|
|
|
2024-08-05 19:17:01 +02:00
|
|
|
def start_exit_node():
|
|
|
|
current_exit_node = get_current_exit_node()
|
|
|
|
if current_exit_node:
|
|
|
|
print(f"Already connected to exit node: {current_exit_node}")
|
|
|
|
else:
|
|
|
|
set_exit_node()
|
|
|
|
|
2024-07-31 04:30:24 +02:00
|
|
|
def get_random_privacy_friendly_exit_node():
|
2024-08-05 19:17:01 +02:00
|
|
|
result = subprocess.run(['tailscale', 'exit-node', 'list'], capture_output=True, text=True)
|
|
|
|
if result.returncode != 0:
|
|
|
|
raise Exception("Failed to list Tailscale exit nodes")
|
|
|
|
|
|
|
|
exit_nodes = []
|
|
|
|
for line in result.stdout.splitlines():
|
|
|
|
parts = line.split()
|
|
|
|
if len(parts) > 3 and parts[2] in PRIVACY_FRIENDLY_COUNTRIES:
|
|
|
|
exit_nodes.append(parts[1])
|
|
|
|
|
2024-07-31 04:30:24 +02:00
|
|
|
if not exit_nodes:
|
|
|
|
raise Exception("No privacy-friendly exit nodes available")
|
2024-08-05 19:17:01 +02:00
|
|
|
|
2024-07-31 04:30:24 +02:00
|
|
|
return random.choice(exit_nodes)
|
|
|
|
|
2024-08-05 19:17:01 +02:00
|
|
|
def set_random_privacy_friendly_exit_node():
|
|
|
|
exit_node = get_random_privacy_friendly_exit_node()
|
|
|
|
print(f"Selected random privacy-friendly exit node: {exit_node}")
|
|
|
|
|
|
|
|
# Set the exit node with additional arguments
|
|
|
|
cmd = ['tailscale', 'set', f'--exit-node={exit_node}'] + TAILSCALE_ARGS
|
|
|
|
subprocess.run(cmd, check=True)
|
|
|
|
|
|
|
|
# Verify the exit node
|
|
|
|
response = requests.get('https://am.i.mullvad.net/json')
|
|
|
|
exit_node_info = response.json()
|
|
|
|
exit_node_hostname = exit_node_info.get('mullvad_exit_ip_hostname')
|
|
|
|
|
|
|
|
print(f"Current exit node hostname: {exit_node_hostname}")
|
|
|
|
|
|
|
|
# Get the part before the first '.' in the exit_node
|
|
|
|
exit_node_short = exit_node.split('.')[0]
|
|
|
|
|
|
|
|
# Verify that the exit_node_short and exit_node_hostname are equal
|
|
|
|
if exit_node_short == exit_node_hostname:
|
|
|
|
print("Exit node set successfully!")
|
|
|
|
else:
|
|
|
|
print("Failed to set exit node!")
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2024-07-31 04:30:24 +02:00
|
|
|
parser = argparse.ArgumentParser(description='Manage VPN exit nodes.')
|
2024-08-05 19:17:01 +02:00
|
|
|
parser.add_argument('action', choices=['start', 'stop', 'new', 'shh'], help='Action to perform: start, stop, new, or shh')
|
|
|
|
|
2024-07-31 04:30:24 +02:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
if args.action == 'start':
|
2024-08-05 19:17:01 +02:00
|
|
|
start_exit_node()
|
2024-07-31 04:30:24 +02:00
|
|
|
elif args.action == 'stop':
|
|
|
|
unset_exit_node()
|
|
|
|
elif args.action == 'new':
|
|
|
|
set_exit_node()
|
|
|
|
elif args.action == 'shh':
|
2024-08-05 19:17:01 +02:00
|
|
|
set_random_privacy_friendly_exit_node()
|
2024-07-31 02:48:00 +02:00
|
|
|
|