Last active
September 30, 2016 03:40
-
-
Save cotocisternas/5555afc96a6d9ce9842f1fea369f601f to your computer and use it in GitHub Desktop.
Puppet Security Rules
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Firewall { | |
| require => undef, | |
| } | |
| firewall { '000 INPUT allow related and established': | |
| proto => 'all', | |
| action => 'accept', | |
| state => ['RELATED', 'ESTABLISHED'] | |
| } | |
| firewall { '001 accept all icmp': | |
| proto => 'icmp', | |
| action => 'accept' | |
| } | |
| firewall { '002 accept all to lo interface': | |
| proto => 'all', | |
| iniface => 'lo', | |
| action => 'accept' | |
| } | |
| firewall { '003 reject local traffic not on loopback interface': | |
| iniface => '! lo', | |
| proto => 'all', | |
| destination => '127.0.0.1/8', | |
| action => 'reject', | |
| } | |
| firewall { '004 drop FRAGMENTED PACKETS': | |
| chain => 'INPUT', | |
| action => 'drop', | |
| isfragment => true, | |
| } | |
| firewall { '005 drop MALFORMED SYN-FLOOD': | |
| chain => 'INPUT', | |
| action => 'drop', | |
| proto => 'tcp', | |
| tcp_flags => 'FIN,SYN,RST,PSH,ACK,URG FIN,SYN,RST,ACK', | |
| } | |
| firewall { '006 drop MALFORMED SYN-FLOOD': | |
| chain => 'INPUT', | |
| action => 'drop', | |
| proto => 'tcp', | |
| tcp_flags => 'FIN,SYN FIN,SYN', | |
| } | |
| firewall { '007 drop MALFORMED SYN-FLOOD': | |
| chain => 'INPUT', | |
| action => 'drop', | |
| proto => 'tcp', | |
| tcp_flags => 'SYN,RST SYN,RST', | |
| } | |
| firewall { '008 drop SYN-FLOOD': | |
| chain => 'INPUT', | |
| state => 'NEW', | |
| action => 'drop', | |
| proto => 'tcp', | |
| tcp_flags => '! FIN,SYN,RST,ACK SYN', | |
| } | |
| firewall { '009 MALFORMED NULL PACKETS': | |
| chain => 'INPUT', | |
| action => 'drop', | |
| proto => 'tcp', | |
| tcp_flags => 'FIN,SYN,RST,PSH,ACK,URG NONE', | |
| } | |
| firewall { '010 drop MALFORMED XMAS PACKETS': | |
| chain => 'INPUT', | |
| action => 'drop', | |
| proto => 'tcp', | |
| tcp_flags => 'FIN,SYN,RST,PSH,ACK,URG FIN,SYN,RST,PSH,ACK,URG', | |
| } | |
| sysctl { 'net.ipv4.conf.all.rp_filter': value => '1' } | |
| sysctl { 'net.ipv4.tcp_syncookies': value => '1' } | |
| sysctl { 'net.ipv4.tcp_tw_reuse': value => '1' } | |
| sysctl { 'net.ipv4.tcp_fin_timeout': value => '30' } | |
| sysctl { 'net.ipv4.tcp_keepalive_intvl': value => '30' } | |
| sysctl { 'net.ipv4.tcp_keepalive_probes': value => '5' } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment