├── README.md ├── iptables-down.sh └── iptables-up.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmatt0/mitmtools/HEAD/README.md -------------------------------------------------------------------------------- /iptables-down.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | IFACE="enp0s3" 3 | sudo iptables -t nat --flush 4 | -------------------------------------------------------------------------------- /iptables-up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmatt0/mitmtools/HEAD/iptables-up.sh --------------------------------------------------------------------------------