diff options
author | Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi> | 2013-02-19 11:27:36 +0000 |
---|---|---|
committer | Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi> | 2013-02-19 11:27:36 +0000 |
commit | 2f489cc65e7b57d9ee5a222ef821cd8016cfbfff (patch) | |
tree | d1c97ecb938ccea7c61c889b251e17d9966b9545 /json | |
parent | 24baf0b3c1093b917bb155c200db785b47dbe7de (diff) | |
download | awall-0.3.0.tar.bz2 awall-0.3.0.tar.xz |
secure use of connection tracking helpersv0.3.0
enable connection tracking helpers when required, fixes #1540
service-specific RELATED rules
Diffstat (limited to 'json')
-rw-r--r-- | json/services.json | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/json/services.json b/json/services.json index 25216af..4570528 100644 --- a/json/services.json +++ b/json/services.json @@ -16,7 +16,7 @@ { "proto": "tcp", "port": 135 }, { "proto": "udp", "port": 135 } ], - "ftp": { "proto": "tcp", "port": 21 }, + "ftp": { "proto": "tcp", "port": 21, "ct-helper": "ftp" }, "gre": { "proto": "gre" }, "hp-pdl": { "proto": "tcp", "port": 9100 }, "http": { "proto": "tcp", "port": 80 }, @@ -30,7 +30,7 @@ { "proto": "esp" }, { "proto": "udp", "port": [ 500, 4500 ] } ], - "irc": { "proto": "tcp", "port": 6667 }, + "irc": { "proto": "tcp", "port": 6667, "ct-helper": "irc" }, "kerberos": [ { "proto": "tcp", "port": 88 }, { "proto": "udp", "port": 88 } @@ -67,7 +67,7 @@ ], "netbios-ns": [ { "proto": "tcp", "port": 137 }, - { "proto": "udp", "port": 137 } + { "proto": "udp", "port": 137, "ct-helper": "netbios_ns" } ], "netbios-ssn": [ { "proto": "tcp", "port": 139 }, @@ -90,8 +90,8 @@ ], "rdp": { "proto": "tcp", "port": 3389 }, "sip": [ - { "proto": "udp", "port": 5060 }, - { "proto": "tcp", "port": 5060 } + { "proto": "udp", "port": 5060, "ct-helper": "sip" }, + { "proto": "tcp", "port": 5060, "ct-helper": "sip" } ], "sip-tls": [ { "proto": "udp", "port": 5061 }, |