From: Silvio Rhatto Date: Sat, 10 Aug 2024 13:17:31 +0000 (-0300) Subject: Fix: trashman: tor-transproxy: do not drop connections to localhost X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=45d36a1ed0ccc516c6a68c6603ef05df28a1ffd4;p=trashman.git Fix: trashman: tor-transproxy: do not drop connections to localhost --- diff --git a/share/trashman/tor-transproxy/unix/linux/debian/files/etc/network/if-pre-up.d/iptables b/share/trashman/tor-transproxy/unix/linux/debian/files/etc/network/if-pre-up.d/iptables index e61d8f0..e007337 100755 --- a/share/trashman/tor-transproxy/unix/linux/debian/files/etc/network/if-pre-up.d/iptables +++ b/share/trashman/tor-transproxy/unix/linux/debian/files/etc/network/if-pre-up.d/iptables @@ -35,7 +35,7 @@ $IPTABLES -A OUTPUT -m owner --uid-owner $NETWORK_USER_ID -j ACCEPT || exit $IPTABLES -A OUTPUT -m owner --uid-owner root -j ACCEPT || exit $IPTABLES -A OUTPUT -m owner --uid-owner _apt -j ACCEPT || exit $IPTABLES -A INPUT -j LOG --log-prefix "OUTPUT DROPPED: " --log-uid || exit -$IPTABLES -A OUTPUT -j DROP || exit +$IPTABLES -A OUTPUT ! -d 127.0.0.1 -j DROP || exit # Allow SSH $IPTABLES -A INPUT -p tcp --dport ssh -j ACCEPT || exit