this post was submitted on 06 Aug 2023
96 points (92.1% liked)

Linux

45479 readers
1397 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

Do you have any antivirus recomendations for Linux.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 10 months ago (1 children)

The problem with AV s/w in my experience, is that they do not work very well, and hinder the system’s functioning, because they provide duplicate behaviour of existing solutions and compete with them directly.

In one instance I discovered McAfee to disable write access to /etc/{passwd,shadow,group} effectively disabling a user to change their password. While SELinux will properly handle that by limiting processes, instead of creating a process that would make sure those files aren’t modified by anyone.

People need to understand Linux comes pre-equipped with all the necessary tools and bolts to protect their systems. They just don’t all live in the same GUI, because of the real complexity involved with malware…

[–] [email protected] 1 points 10 months ago

In one instance I discovered McAfee to disable write access to /etc/{passwd,shadow,group} effectively disabling a user to change their password. While SELinux will properly handle that by limiting processes, instead of creating a process that would make sure those files aren’t modified by anyone.

That sounds like McAfee alright. Most antivirus software doesn't do stupid shit like that, though. Linux has plenty of APIs and call filters to detect and prevent attacks on passwd. In its default configuration, ClamAV and various other antivirus tools don't even do anything but update their definitions until you explicitly call them to scan a file.

People need to understand Linux comes pre-equipped with all the necessary tools and bolts to protect their systems. They just don’t all live in the same GUI, because of the real complexity involved with malware…

That's the thing, every operating system has that. Microsoft has everything from signed drivers to exploit guard and even Microsoft Edge running entirely inside a virtual machine to combat any form of browser exploitation. Even everything from Microsoft's EMET has been included in Windows. ACG/EAF/IAF/various ROP detection mechanisms/DEP/SEHOP/StackPivot/CIG/integrity validation, you can all enable it to prevent most exploitations in almost any program on Windows. Linux doesn't come close!

I can count on one hand the amount of people who actually bothered to run npm install in a container, let alone something more secure than that. I've never seen anyone validate the checksum of any downloaded executables or packages, let alone upload them to virustotal or any other virus scanner.

The current security mindset of Linux users seems to be the same as that of macOS users ten years ago; "there are so few viruses for our platform that we don't need to be careful". Apple prevented that from becoming catastrophic by making macOS a Big Brother operating system where it's practically impossible to install a driver, where every single executable is checked with Apple's servers. Still, macOS malware is a real thing, and so is Linux malware.

With Steam Deck bringing Linux to the mainstream (as well as provide guaranteed access to a device with games and transferable collectables connected to a valid account) I expect Linux malware to start becoming more than developer/server oriented. Linux has some nice tricks (unlike Windows, it doesn't set the execute bit and add an optional flag on new files by default) but it's vulnerable to others. curl2bash is the norm for various professional programs. Discord tells you to open .deb files from their website, normalising the "persist this file on your system, trust me". In fact, the standard EmuDeck installation method is "download this .desktop file to your desktop and double click it", like you would with any Windows program.

I don't run an antivirus program because I consider myself smart enough not to get infected (dangerous, I know). That doesn't mean new users shouldn't be running antivirus, though. Just because you don't need antivirus, doesn't mean that someone with no experience with SELinux, AppArmor, containerisation or execute bits shouldn't. You just have to avoid the shittier companies (the free ones, the paranoid enterprise ones).