2

Есть ли какой-нибудь брандмауэр Linux, такой как ZoneAlarm, Keiro или Comodo, в среде Windows?

Мне нравится иметь возможность контролировать и блокировать любую программу Linux от создания / вывода TCP / UDP-соединений для каждой прикладной базы.

netfilter, ipfilter может обрабатывать его только на системном уровне.

Подробнее о моем идеальном мониторе безопасности "Большого брата".

I like to setup the following security policy:

Only Apache is allowed to accept connections from everything. 

MySQL can accept connections from only a select few IPs.

If any other application tries to accept / make any connections, 
    log it and flags it for analysis.  
       Log the time, app name, user, to where, amount of traffic xfer, 
       trigger script to do stack dump, strace on the pid, etc).

 X GUI config is nice, but I am not a GUI person. 
 Prefer web or XML base configuration and logging for ease of analysis.

 Should be able to track app even if the user is root. 

 Track app base on name/path 
     Validate the app's size, date, first and last 32 bytes value 
     (Optionally, md5/shar sig of the whole app.) 

3 ответа3

1

Вы ищете что-то вроде приложения Linux-Firewall ?
Я думаю, что iptables может делать эти вещи, и большинство инструментов являются над ними обертками.

1

Ну, есть хозяин матча:

   owner
   This module attempts to match various characteristics of the packet creator, for locally-generated packets. 

   --uid-owner userid
          Matches if the packet was created by a process with the given effective user id.

   --gid-owner groupid
          Matches if the packet was created by a process with the given effective group id.

   --pid-owner processid
          Matches if the packet was created by a process with the given process id.

   --sid-owner sessionid
          Matches if the packet was created by a process in the given session group.

   --cmd-owner name
          Matches if the packet was created by a process with the given command name.  (this option  is  present  only  if
          iptables was compiled under a kernel supporting this feature)

Это может быть не так сильно, как аналог Windows. Но я не являюсь другом правил брандмауэра для приложений / процессов. Это то, что нужно Windows;)

0

Взгляните на несложную Fire Wall, которая представляет собой графический интерфейс для IPTables.

Изменить: Читайте здесь для получения дополнительной технической информации о IPTables.

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .