this post was submitted on 21 May 2025
1135 points (99.5% liked)

Technology

70268 readers
3972 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
1135
fake keepass repo on github (lemmy.blahaj.zone)
submitted 2 days ago* (last edited 2 days ago) by [email protected] to c/[email protected]
 

https://fosstodon.org/@keepassxc/114544480029903918

edit: looks like its been taken down

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 53 points 2 days ago* (last edited 1 day ago) (6 children)

i'm brand new to linux after decades of windows. is there a comprehensive resource that talks about security on linux beyond just "linux is super secure don't worry about it"? i feel like the more people continue to ditch windows, the more scammers are going to focus their energy on linux, and i know next to nothing

edit: thank you for all the responses

[–] [email protected] 42 points 2 days ago (1 children)
[–] [email protected] 4 points 2 days ago (1 children)

That's a lot of advanced shit, which can totally bork a system. What average user paths can we take program wise or etc?

Like a Linux mint user for instance who's first stop is diving into a Linux distro of their choice and wanting to gain 80 percent of the gains with 20 percent of the hassle and maintenance.

[–] [email protected] 2 points 1 day ago (1 children)

Basic internet precautions: if you're looking at a GitHub for a famous piece of software that has only 250 total downloads: double check the Url, read any commands before you run them and compare to documentation if you're unfamiliar with a piece of one, if you run something in docker or similar containerization for any reason make sure you set the PUID and GUID of the containers to a user other than root or they'll be root by default

[–] [email protected] 1 points 1 day ago

I get that. Which is why anti virus and things are kind of common sense is what everyone usually says. Watch what you do and click etc. But your reply did not really address my question. What's the average Joe version of the link you posted, as it was for advanced users.

[–] [email protected] 10 points 2 days ago* (last edited 2 days ago)

the more people continue to ditch windows, the more scammers are going to focus their energy on linux

Sorry, I missed this in my first reply.

It is true.

A few simple rules:

  • keep your system up-to-date within the constraints of their repositories
  • install only from trusted repositories, i.e. the official ones for your distro. This excludes any package of any app straight from their website.
  • same precautions for web browsers as for any other OS. Don't click any old link, don't execute mail attachments, that sort of stuff.
  • don't execute arbitrary code esp. from the internet
  • don't just sudo if you want to make something work. Despite the famous xkcd, that's not how this works. Least privilege at all times.
  • Antivirus software still isn't required

Unless you have some extraordinary usage scenarios, that's it really.

[–] [email protected] 6 points 1 day ago

I don't know of any comprehensive source but there are a few basic things you that I do.

  1. Ensure sudo is on the system so that root account is not used.
  2. Get a secure browser that with add ons to protect against malicious sites (https everywhere, JavaScript blockers, etc...)
  3. Download software from trusted repositories and verify with GPG keys or hashes. Be wary on installing anything using a shell script with super user access.
  4. Use keys instead of passwords for ssh if you are going to use ssh.
  5. Password tools like Vaultwarden and KeePass can help secure passwords.
  6. You can encrypt your hard drive with LUKS before you install Linux with many distros.
  7. Flatpak (Docker as well) can allow you to run applications with limited access to your system much like phone apps on Android. This can be more secure but comes with larger app sizes and limits what you can do with the app sometimes (e.g. browsers not being able to upload files because they don't have full filesystem access)
  8. If you want a firewall on your workstation (not needed much anymore with hardware firewalls from routers), UFW makes it easy
  9. If you want to check for viruses use ClamAV (ClamTK for a GUI app).
[–] [email protected] 25 points 2 days ago

First of all there isn't One Linux.

In simple terms for an end user, yes, you are definitely better off with any of the major distros.

Non-commerciality is probably the most important aspect. Or as someone put it a long time ago: "Suddenly I realized that the software is on my side."

[–] [email protected] 6 points 2 days ago

I've used Linux for 15+ years.

Install from the repositories, if it isn't in your "app store" or installed using apt or yum or whatever your distro package manager is, don't bother with it until you're more familiar with Linux.

Your system is 99%+ of the time going to be secure as long as you don't install something sketch. You need to install it, it won't just happen on it's own, things can be hidden behind copy paste instructions so be sure you have a good idea of what each step does if you're doing that (I've never come across this in the wild, FYI). The other small percentage is a bug or something in packages (see the xz debacle) which you have little control over. The best thing you can do is just keep packages up to date.

[–] [email protected] 2 points 2 days ago (1 children)

Please nobody wheel out the Swiss cheese analogy or I'll shit myself.

[–] [email protected] 12 points 2 days ago

Lactose intolerance is rough.