-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwg-client.py
executable file
·78 lines (55 loc) · 1.86 KB
/
wg-client.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/usr/bin/python3
import subprocess
import time
from colorama import init, Fore, Back, Style
# [Peer]
# #Client=Mi6
# PublicKey = 9olTvgc5AU/LkEwinsdCvM74cVHZY1JKEuKYWztIoXI=
# AllowedIPs = 192.168.99.1/32
# Instalación
# https://python-para-impacientes.blogspot.com/2016/09/dar-color-las-salidas-en-la-consola.html
# pip3 install colorama
#Archivo /etc/wireguard/wg0.conf
f = open("/etc/wireguard/wg0.conf")
f_wireguard = f.readlines()
f.close()
#print("f_wireguard: ",f_wireguard)
#print()
#Archivo /etc/wireguard/wg0.conf
lista = []
for i in range(0,len(f_wireguard)-1):
w = f_wireguard[i]
w = w.replace("\n","").strip()
if w.find("Client")>=0:
raw = w.split("=")
#print("raw",raw)
client = raw[1].replace("\n","").strip()
#print("client:",client)
peer = f_wireguard[i+1]
peer = peer.split("=",1)[1].strip()
lista.append({"peer":peer,"client":client})
#print(lista) # Dicccionario generado.
wg=subprocess.Popen('wg',shell=True, stdout=subprocess.PIPE,stderr=subprocess.STDOUT)
salida=wg.stdout.readlines()
sw=False #Interruptor para imprimir linea normal y RESET de estilos
for r in salida:
linea=str(r.decode("utf-8")) #Línea de la salida del comando 'wg'
if linea.find("interface")>=0:
print(Fore.GREEN+linea,end="")
sw = True
if linea.find("peer")>=0:
raw = linea.split(":")
#print("raw",raw)
peer = raw[1].replace("\n","").strip()
#print("p33r:",peer)
for l in lista:
#print(l["peer"])
#print(peer)
if(peer == l["peer"]):
sw=True
print(Fore.YELLOW+"("+l["client"]+") "+linea,end="")
break
if not sw:
print(Style.RESET_ALL+linea,end="")
else:
sw = False