- Jun 3, 2014
- 1,142
Oh sorry I may have missunderstoodno one said otherwise. hardware and drivers compatibility in Linux will never be like windows. Been the case for many years and before was even worse.
Oh sorry I may have missunderstoodno one said otherwise. hardware and drivers compatibility in Linux will never be like windows. Been the case for many years and before was even worse.
thanks.Adding a basic firewall to a Linux system is easy ( ufw ) , and then there are additional goodies if you want
to really harden your system further ( eg iptables , pfSense ).
As an experiment , try to deliberately infect your Linux system ( in a VM might be a good idea).
You will almost certainly fail .
That could not be said for Windows .
Have you, ever used Linux ?thanks.
Is a firewall more important for linux than it is for windows?
I have used it on and off, never really got comfortable enough with it to use on a daily basis. I would get hung up on points that were so basic, the linux geeks didn't know how to help me, and then I would get frustrated and feel dumb...Have you, ever used Linux ?
it aint that important, unlike many people think.thanks.
Is a firewall more important for linux than it is for windows?
Linux is by far more secured, it's even easier to secure it.
Windows: you can't really secure it (you can never secure windows), if you look at the last test done by AvLab.pl Comodo Internet Security failed (this god product that people love lately), two ransomware encrypted the files.
Linux: you install only from repository, set your firewall to block all incoming connections (if you wanna share files with other Windows PCs just allow ports 137 and 138), install NoScript Security Suite in your Firefox and you are done (you can also use FireJail if you really want).
In the end, the best security software is this.
If you need help on securing your linux distro, feel free to PM me![]()
for now, I set up mint cinnamon in a VM, and I installed chrome, with my regular extensions, and I intend to use the VM for browsing, not to install additional apps in it.Linux is by far more secured, it's even easier to secure it.
Windows: you can't really secure it (you can never secure windows), if you look at the last test done by AvLab.pl Comodo Internet Security failed (this god product that people love lately), two ransomware encrypted the files.
Linux: you install only from repository, set your firewall to block all incoming connections (if you wanna share files with other Windows PCs just allow ports 137 and 138), install NoScript Security Suite in your Firefox and you are done (you can also use FireJail if you really want).
In the end, the best security software is this.
If you need help on securing your linux distro, feel free to PM me![]()
rule Linux_Gafgyt
{
meta:
Author = "Ramona Varna"
Date = "2016/11/22"
Description = "Linux/Gafgyt [Trojan]"
strings:
$s0 = "%d.%d.%d.%d"
$s1 = "PING"
$s2 = "PONG"
$s3 = "PROBING"
$s4 = "KILLATTK"
$s5 = "JUNK"
$s6 = "CNC"
$elf = {7f 45 4c 46} // ELF header
condition:
$elf in (0..4) and all of ($s*)
}
if you are making rules for individual malwares, then that is the greatest testimony to the lack of malwares actively affecting linux!You should be fine, don't worry
At work, I use YARA with custom rules. Here is a rule for Gafgyt a common Linux Trojan (if you only install from repository you shouldn't worry about it).
Code:rule Linux_Gafgyt { meta: Author = "Ramona Varna" Date = "2016/11/22" Description = "Linux/Gafgyt [Trojan]" strings: $s0 = "%d.%d.%d.%d" $s1 = "PING" $s2 = "PONG" $s3 = "PROBING" $s4 = "KILLATTK" $s5 = "JUNK" $s6 = "CNC" $elf = {7f 45 4c 46} // ELF header condition: $elf in (0..4) and all of ($s*) }
This rule I made today![]()