Attackers are pummeling networks around the world with millions of login attempts (arstechnica.com)
from kid@sh.itjust.works to cybersecurity@sh.itjust.works on 17 Apr 2024 11:41
https://sh.itjust.works/post/17959604

#cybersecurity

threaded - newest

HubertManne@kbin.social on 17 Apr 2024 13:20 next collapse

I thought it was common practice to not allow logins for some period after like half a dozen failures.

Darkassassin07@lemmy.ca on 17 Apr 2024 13:27 next collapse

There’s a few ways to do it; but if they block based on username it can lockout legitimate users too.

This is what fail2ban is for. Too many failed auths from an IP and that whole IP is blacklisted for a day or two. This can still catchout vpn users, but it’s still less disruptive.

HubertManne@kbin.social on 17 Apr 2024 13:34 next collapse

Many blocked for an hour or even just 10 mins. at the time it was enough to get the attack scripts to change targets.

SemiAuto@sh.itjust.works on 18 Apr 2024 07:32 collapse

I went a bit overboard I think with my fail2ban configuration. If you fail 2 times to login in any admin interfaces (ssh, web, etc), you get banned for around 4880 days… I have too many banned IPs already… :/

discozombie@lemmy.world on 18 Apr 10:21 collapse

Indeed but in this particular case they’re using a large number of IPs, over 3000 on the last list I saw.

HubertManne@kbin.social on 18 Apr 12:46 collapse

yeah and im thinking from an early 2000 perspective to where not being able to login for an hour was not necessarily a big deal. Whereas now so much of our life is online its not really as laid back a proposition.

nbailey@lemmy.ca on 17 Apr 2024 14:38 next collapse

Anybody who’s ever exposed any service to the internet knows this as the “background radiation” of the net. My boxes get thousands of random connection attempts per day. The best practice for years has been to use keypairs and/or VPNs. Friends don’t let friends expose RDP to the web.

lost_faith@lemmy.ca on 17 Apr 2024 15:57 next collapse

I had a little linux server years ago and after a setup forgot to change my SSH port. One day I noticed my network was slow and after poking around realized that I had someone knocking at my port trying pass after pass with like 15 - 30 sec between attempts, watched this person for 2 days laughing at the 8-10 char passwords they were using, my password was a sentence. I then shifted the port to the 30k range and all was silent on my ports, always remember to change default ports, fun times

WolfLink@lemmy.ml on 18 Apr 08:04 collapse

I had a website exposed to the net and would constantly get http requests for things like “wordpress_admin.js”

heavy@sh.itjust.works on 17 Apr 2024 14:54 next collapse

Lol every day, brother

Gooey0210@sh.itjust.works on 17 Apr 2024 20:31 next collapse

I will tell you even more, half of these attempts come to my server

Socsa@sh.itjust.works on 17 Apr 2024 22:16 collapse

This has happened to every SSH host on the internet for at least 20 years. Key based authentication is important folks.