Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)AL
Posts
5
Comments
303
Joined
2 yr. ago

  • Slower than the kind of shell you get in the Debian installer?

    Is it slower because it's trying to log and write to the root fs whereas the installer runs everything in RAM and doesn't write to the USB?

  • Rather than binding to the VPN interface you can just use the firewall to block traffic from any sensitive apps that doesn't go out on that interface. If the VPN goes down the traffic gets dropped. I posted an example elsewhere in the thread.

  • This may not be strictly related to the use case you described but I think it's kind of cool...

    On Linux you can add the software used to do the upload to a group "vpnroute" or similar, and use iptables to block all traffic from that group that isn't sent through the VPN tunnel. Something like this:

    iptables -A OUTPUT -m owner --gid-owner vpnroute -o tun0 -j REJECT

    Obviously needs to be made persistent which I do with UFW in /etc/ufw/after.rules. It makes for a good kill switch.