mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
161 lines
4.6 KiB
Python
161 lines
4.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
import os
|
|
import sys
|
|
try:
|
|
import yaml
|
|
except ImportError:
|
|
sys.stderr.write('Error: Yunohost CLI Require yaml lib\n')
|
|
sys.stderr.write('apt-get install python-yaml\n')
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
def firewall_allow(protocol=None,port=None,ip=None):
|
|
if ip == True:
|
|
ip = 'ipv6'
|
|
iptables="ip6tables"
|
|
else:
|
|
ip = 'ipv4'
|
|
iptables="iptables"
|
|
|
|
if protocol == "Both":
|
|
TCP_rule = iptables+" -A INPUT -p tcp -i eth0 --dport "+ port +" -j ACCEPT"
|
|
UDP_rule = iptables+" -A INPUT -p udp -i eth0 --dport "+ port +" -j ACCEPT"
|
|
append_remove_port(port,'tcp','a',ip)
|
|
append_remove_port(port,'udp','a',ip)
|
|
os.system(TCP_rule)
|
|
os.system(UDP_rule)
|
|
|
|
else:
|
|
rule = iptables+" -A INPUT -p "+ protocol +" -i eth0 --dport "+ port +" -j ACCEPT"
|
|
append_remove_port(port,protocol,'a',ip)
|
|
os.system(rule)
|
|
|
|
|
|
|
|
def firewall_disallow(protocol=None,port=None,ip=None):
|
|
|
|
if ip == True:
|
|
ip = 'ipv6'
|
|
iptables="ip6tables"
|
|
else:
|
|
ip = 'ipv4'
|
|
iptables="ip6tables"
|
|
|
|
if protocol == "Both":
|
|
TCP_rule = iptables+" -A INPUT -p tcp -i eth0 --dport "+ port +" -j REJECT"
|
|
UDP_rule = iptables+" -A INPUT -p udp -i eth0 --dport "+ port +" -j REJECT"
|
|
append_remove_port(port,'tcp','r',ip)
|
|
append_remove_port(port,'udp','r',ip)
|
|
os.system(TCP_rule)
|
|
os.system(UDP_rule)
|
|
else:
|
|
rule = iptables+" -A INPUT -p "+ protocol +" -i eth0 --dport "+ port +" -j REJECT"
|
|
append_remove_port(port,protocol,'r',ip)
|
|
os.system(rule)
|
|
|
|
|
|
|
|
def firewall_list():
|
|
'''
|
|
Parse and display firwall.yml
|
|
'''
|
|
with open ('firewall.yml') as f:
|
|
firewall = yaml.load(f)
|
|
TCP_port_list_ipv4 = firewall['ipv4']['TCP']
|
|
UDP_port_list_ipv4 = firewall['ipv4']['UDP']
|
|
TCP_port_list_ipv6 = firewall['ipv6']['TCP']
|
|
UDP_port_list_ipv6 = firewall['ipv6']['UDP']
|
|
print("Port TCP Open for ipv4:")
|
|
|
|
for i,port in enumerate (TCP_port_list_ipv4):
|
|
print("-"+str(port))
|
|
|
|
print("Port UDP Open for ipv4 :")
|
|
for i,port in enumerate (UDP_port_list_ipv4):
|
|
print("-"+str(port))
|
|
|
|
print("Port TCP Open for ipv6:")
|
|
for i,port in enumerate (TCP_port_list_ipv6):
|
|
print("-"+str(port))
|
|
|
|
print("Port UDP Open for ipv6 :")
|
|
for i,port in enumerate (UDP_port_list_ipv6):
|
|
print("-"+str(port))
|
|
f.close()
|
|
|
|
|
|
|
|
def firewall_reload():
|
|
'''
|
|
Clear filter IPTABLE's table
|
|
Allow SSH
|
|
Parse firewall.yml extract the list of port allowed
|
|
Allow all port in the list
|
|
Prohibit the rest
|
|
'''
|
|
with open('firewall.yml','r') as f:
|
|
firewall = yaml.load(f)
|
|
|
|
TCP_port_list_ipv4 = firewall['ipv4']['TCP']
|
|
UDP_port_list_ipv4 = firewall['ipv4']['UDP']
|
|
|
|
TCP_port_list_ipv6 = firewall['ipv6']['TCP']
|
|
UDP_port_list_ipv6 = firewall['ipv6']['UDP']
|
|
f.close()
|
|
|
|
os.system ("iptables -P INPUT ACCEPT")
|
|
os.system ("iptables -F")
|
|
os.system ("iptables -X")
|
|
os.system ("iptables -A INPUT -p tcp -i eth0 --dport 22 -j ACCEPT")
|
|
append_remove_port('22','TCP','a',False)
|
|
|
|
|
|
os.system ("ip6tables -P INPUT ACCEPT")
|
|
os.system ("ip6tables -F")
|
|
os.system ("ip6tables -X")
|
|
os.system ("ip6tables -A INPUT -p tcp -i eth0 --dport 22 -j ACCEPT")
|
|
append_remove_port('22','TCP','a',True)
|
|
|
|
for i,port in enumerate (TCP_port_list_ipv4):
|
|
os.system ("iptables -A INPUT -p tcp -i eth0 --dport "+ str(port) +" -j ACCEPT")
|
|
|
|
for i,port in enumerate (UDP_port_list_ipv4):
|
|
os.system ("iptables -A INPUT -p udp -i eth0 --dport "+ str(port) +" -j ACCEPT")
|
|
|
|
for i,port in enumerate (TCP_port_list_ipv6):
|
|
os.system ("ip6tables -A INPUT -p tcp -i eth0 --dport "+ str(port) +" -j ACCEPT")
|
|
|
|
for i,port in enumerate (UDP_port_list_ipv6):
|
|
os.system ("ip6tables -A INPUT -p udp -i eth0 --dport "+ str(port) +" -j ACCEPT")
|
|
|
|
os.system ("iptables -P INPUT DROP")
|
|
os.system ("ip6tables -P INPUT DROP")
|
|
|
|
|
|
|
|
def append_remove_port(port=None,protocol=None,mode=None,ip=None):
|
|
'''
|
|
Append port in firewall.yml
|
|
'''
|
|
with open('firewall.yml','r') as f:
|
|
firewall = yaml.load(f)
|
|
|
|
if mode == 'a':
|
|
if port not in firewall[ip][protocol]:
|
|
firewall[ip][protocol].append(int(port))
|
|
else:
|
|
if port not in firewall[ip][protocol]:
|
|
firewall[ip][protocol].remove(int(port))
|
|
|
|
firewall[ip][protocol].sort()
|
|
f.close
|
|
|
|
os.system("mv firewall.yml firewall.yml.old")
|
|
with open('firewall.yml','w') as f:
|
|
yaml.dump(firewall,f)
|
|
f.close
|
|
|
|
|
|
|