diff --git a/CHANGELOG.md b/CHANGELOG.md index f09ef70..bd39581 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ All notable changes to this project will be documented in this file. ### Deprecated ### Removed +- removed rules iptables block https comunication captiveflask #37 [mh4x0f] ### Fixed - fixed responder3 object has no attribute logger #39 [mh4x0f] diff --git a/wifipumpkin3/core/servers/proxy/captiveflask.py b/wifipumpkin3/core/servers/proxy/captiveflask.py index 2e9e123..859ce7c 100644 --- a/wifipumpkin3/core/servers/proxy/captiveflask.py +++ b/wifipumpkin3/core/servers/proxy/captiveflask.py @@ -116,14 +116,6 @@ class CaptivePortal(ProxyMode): iface=IFACE, ip=IP_ADDRESS, port=PORT ) ) - print( - display_messages("redirecting HTTPS traffic to captive portal", info=True) - ) - self.add_default_rules( - "iptables -t nat -A PREROUTING -i {iface} -p tcp --dport 443 -j DNAT --to-destination {ip}:{port}".format( - iface=IFACE, ip=IP_ADDRESS, port=PORT - ) - ) self.runDefaultRules() def boot(self):