gitextract_85sczpot/ ├── CONTRIBUTING ├── README.md ├── application/ │ ├── countryflags.xml │ ├── scripts/ │ │ ├── change_dns.sh │ │ └── extract_ifile.sh │ ├── util.py │ ├── vpn_providers/ │ │ ├── expressvpn/ │ │ │ ├── vpncgw.conf │ │ │ └── vpnservers.xml │ │ ├── mullvad/ │ │ │ ├── vpncgw.conf │ │ │ └── vpnservers.xml │ │ ├── nordvpn/ │ │ │ ├── nordvpn.sh │ │ │ ├── vpncgw.conf │ │ │ └── vpnservers.xml │ │ ├── privado/ │ │ │ ├── change_dns.sh │ │ │ ├── howto_privado.md │ │ │ ├── vpncgw.conf │ │ │ └── vpnservers.xml │ │ ├── private_internet_access/ │ │ │ ├── vpncgw.conf │ │ │ ├── vpnservers.xml │ │ │ └── vpnservers.xml.legacy │ │ ├── purevpn/ │ │ │ ├── vpncgw.conf │ │ │ └── vpnservers.xml │ │ └── surfshark/ │ │ ├── vpncgw.conf │ │ └── vpnservers.xml │ ├── vpncgw.py │ ├── vpncgw_monitor.py │ └── vpnservers.xml ├── config/ │ ├── pihole-vpncgw.conf │ ├── vpncgw.conf │ └── vpncgw.service ├── documentation/ │ └── README.txt ├── fw/ │ ├── fw-config │ └── port_forwarding/ │ ├── disable_port_forwarding.sh │ ├── enable_port_forwarding.sh │ ├── http/ │ │ ├── disable_port_forwarding.sh │ │ └── enable_port_forwarding.sh │ ├── port_forwarding.sh │ └── transmission-daemon/ │ ├── disable_port_forwarding.sh │ └── enable_port_forwarding.sh └── www/ ├── index.html ├── scripts/ │ └── main.js └── styles/ ├── .index.css.swp └── index.css