@Larvitz__dup_34529@burningboard.net
Post #671557
2026-03-14 10:08 UTC
Replies (11)
-
You might be interested in crowdsec. Joining that your server becomes a honeypot for this kinda bruteforce attack. If they fail a few times their IP gets submitted by your server and banned on all of them. Gets you an automatic banlist before they even reach your server.
-
@nathanael@dalliard.ch 2026-03-14 20:19
why?
-
@decapitae@mastodon.social 2026-03-14 11:39
@Larvitz FOSS FTW!
-
@infosec812@foojay.social 2026-03-14 12:24
@Larvitz I went a different direction. I have #OpenVPN on my servers and only allow SSH from OpenVPN connected hosts. I originally started with #WireGuard, but too many public Wifi block WireGuard.
-
@asynchronaut@fosstodon.org 2026-03-14 15:29
@Larvitz Could mention bpfilter: https://github.com/facebook/bpfilter
-
@yojimbo@masto.hackers.town 2026-03-14 23:22
@Larvitz `ssh` should not be facing the Internet these days for the vast majority of users, even though by default it usually makes secure choices (like, no root user and keys instead of passwords). Your VPS should come with console access, which can be used for initial configuration and emergency access. You can then choose to set up management access via some separate network, probably a VPN.
-
@BalooUriza@social.tulsa.ok.us 2026-03-15 06:32
@Larvitz "There are too many ways to build a firewall in Linux."
-
@lbehm@chaos.social 2026-03-16 09:34
@Larvitz I think your explanation of the docker behavior is incorrect. Port publishing using `-p` starts a docker-proxy userspace program on the host that listens on the specified port (effecting the input chain) and forwards the traffic to the container (using the output chain). Using forwarding (with prerouting nat) instead could be faster. The docker-proxy behavior enables port configurations like `127.0.0.1:80:8080`.
-
@lbehm@chaos.social 2026-03-16 09:50
@Larvitz Thank you for the nftables set / update examples!
-
@subnetspider@mastodon.bsd.cafe 2026-03-17 16:27
@Larvitz Pretty interesting read, as I've never set up the firewall on a Linux host. And I have to admit, firewalld looks pretty neat. 😁
-
@Ntropic@chaos.social 2026-03-18 09:26
@Larvitz I don't even know if I should worry about this.