master
Chloe Fontenot 🏳️‍⚧️ 2022-01-11 23:18:11 +07:00
parent 442efccdf2
commit d130df7f9b
1 changed files with 6 additions and 1 deletions

@ -9,7 +9,12 @@ import os
listeningIPs = []
print("DoT (DNS over TLS) Proxy resolver - <Written by Caleb Fontenot>")
# ASCII Art because why not
os.system("cat ascii")
operating_system = os.name
print(operating_system)
if operating_system == "posix":
os.system("cat ascii")
elif operating_system == "nt":
os.system("type ascii")
#Get IPs of interfaces
for iface in netifaces.interfaces():
iface_details = netifaces.ifaddresses(iface)