Mercurial > syslog2iptables
annotate syslog2iptables.conf.top @ 79:831d0b46bbd2 stable-1-0-18
add more logging when blocked addresses move to higher scale values
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 15 Jul 2020 14:22:37 -0700 |
parents | ae5e6bcc5017 |
children | cc01f2caff37 |
rev | line source |
---|---|
61
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
1 context general { |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
2 threshold 550; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
3 |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
4 add_command "/sbin/iptables -I INPUT --src %s --jump DROP"; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
5 remove_command "/sbin/iptables -D INPUT --src %s --jump DROP"; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
6 |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
7 ignore { |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
8 127.0.0.0/8; // localhost |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
9 }; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
10 |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
11 file "/var/log/secure" { |
63
60f59936fabb
good authentication prevents ip blocking for awhile
Carl Byington <carl@five-ten-sg.com>
parents:
61
diff
changeset
|
12 pattern "manual unblock (.*)" { |
60f59936fabb
good authentication prevents ip blocking for awhile
Carl Byington <carl@five-ten-sg.com>
parents:
61
diff
changeset
|
13 index 1; // zero based |
60f59936fabb
good authentication prevents ip blocking for awhile
Carl Byington <carl@five-ten-sg.com>
parents:
61
diff
changeset
|
14 bucket -5000; |
60f59936fabb
good authentication prevents ip blocking for awhile
Carl Byington <carl@five-ten-sg.com>
parents:
61
diff
changeset
|
15 message "manual unblock"; |
60f59936fabb
good authentication prevents ip blocking for awhile
Carl Byington <carl@five-ten-sg.com>
parents:
61
diff
changeset
|
16 }; |
66
d179292293eb
fix default config dovecot regular expressions; add manual blocking expression
Carl Byington <carl@five-ten-sg.com>
parents:
65
diff
changeset
|
17 pattern "manual block (.*)" { |
d179292293eb
fix default config dovecot regular expressions; add manual blocking expression
Carl Byington <carl@five-ten-sg.com>
parents:
65
diff
changeset
|
18 index 1; // zero based |
d179292293eb
fix default config dovecot regular expressions; add manual blocking expression
Carl Byington <carl@five-ten-sg.com>
parents:
65
diff
changeset
|
19 bucket 5000; |
d179292293eb
fix default config dovecot regular expressions; add manual blocking expression
Carl Byington <carl@five-ten-sg.com>
parents:
65
diff
changeset
|
20 message "manual block"; |
d179292293eb
fix default config dovecot regular expressions; add manual blocking expression
Carl Byington <carl@five-ten-sg.com>
parents:
65
diff
changeset
|
21 }; |
61
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
22 pattern "sshd.*Failed password .* from ::ffff:(.*) port" { |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
23 index 1; // zero based |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
24 bucket 400; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
25 message "ssh failed password"; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
26 }; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
27 pattern "sshd.*Failed password .* from (.*) port" { |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
28 index 1; // zero based |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
29 bucket 400; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
30 message "ssh failed password"; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
31 }; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
32 pattern "sshd.*authentication failure; .* rhost=(.*) " { |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
33 index 1; // zero based |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
34 bucket 400; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
35 message "ssh failed password"; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
36 }; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
37 pattern "sshd.*Did not receive identification string from (.*)" { |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
38 index 1; // zero based |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
39 bucket 400; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
40 message "ssh failed password"; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
41 }; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
42 pattern "proftpd.*no such user found from (.*) \[" { |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
43 index 1; // zero based |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
44 bucket 400; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
45 message "ftp failed password"; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
46 }; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
47 pattern "proftpd.* authentication failure; .* rhost=(.*) " { |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
48 index 1; // zero based |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
49 bucket 400; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
50 message "ftp failed password"; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
51 }; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
52 pattern "vsftpd.* authentication failure; .* rhost=(.*) " { |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
53 index 1; // zero based |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
54 bucket 400; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
55 message "ftp failed password"; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
56 }; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
57 }; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
58 |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
59 file "/var/log/messages" { |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
60 pattern "kernel.*local-net-to.*SRC=(.*) DST=.*DPT=" { |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
61 index 1; // zero based |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
62 bucket 400; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
63 message "kernel firewall blocked packet"; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
64 }; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
65 pattern "kernel.*outside-net-from.*SRC=(.*) DST=.*DPT=" { |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
66 index 1; // zero based |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
67 bucket 400; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
68 message "kernel firewall blocked packet"; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
69 }; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
70 }; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
71 |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
72 file "/var/log/maillog" { |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
73 pattern "lost input channel from.* \[(.*)\] .* after (mail|rcpt|auth)" { |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
74 index 1; // zero based |
63
60f59936fabb
good authentication prevents ip blocking for awhile
Carl Byington <carl@five-ten-sg.com>
parents:
61
diff
changeset
|
75 bucket 100; |
61
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
76 message "sendmail spammer dropping connection"; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
77 }; |
63
60f59936fabb
good authentication prevents ip blocking for awhile
Carl Byington <carl@five-ten-sg.com>
parents:
61
diff
changeset
|
78 pattern " \[(.*)\].* possible SMTP attack" { |
61
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
79 index 1; // zero based |
63
60f59936fabb
good authentication prevents ip blocking for awhile
Carl Byington <carl@five-ten-sg.com>
parents:
61
diff
changeset
|
80 bucket 100; |
61
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
81 message "sendmail authentication attack"; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
82 }; |
69
0e736950a117
fix post uninstall script; allow config bucket count zero to disable a pattern
Carl Byington <carl@five-ten-sg.com>
parents:
66
diff
changeset
|
83 #pattern "rejecting commands from.* \[(.*)\] due to pre-greeting traffic" { |
0e736950a117
fix post uninstall script; allow config bucket count zero to disable a pattern
Carl Byington <carl@five-ten-sg.com>
parents:
66
diff
changeset
|
84 # index 1; // zero based |
0e736950a117
fix post uninstall script; allow config bucket count zero to disable a pattern
Carl Byington <carl@five-ten-sg.com>
parents:
66
diff
changeset
|
85 # bucket 0; // disable - iphone setup trips this; bucket 1800; |
0e736950a117
fix post uninstall script; allow config bucket count zero to disable a pattern
Carl Byington <carl@five-ten-sg.com>
parents:
66
diff
changeset
|
86 # message "sendmail pre-greeting"; |
0e736950a117
fix post uninstall script; allow config bucket count zero to disable a pattern
Carl Byington <carl@five-ten-sg.com>
parents:
66
diff
changeset
|
87 #}; |
75
ae5e6bcc5017
sendmail auth failure detection for both login and plain methods
Carl Byington <carl@five-ten-sg.com>
parents:
69
diff
changeset
|
88 pattern "authentication failure: .* failed, .*\[(.*)\]" { |
61
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
89 index 1; // zero based |
63
60f59936fabb
good authentication prevents ip blocking for awhile
Carl Byington <carl@five-ten-sg.com>
parents:
61
diff
changeset
|
90 bucket 100; |
60f59936fabb
good authentication prevents ip blocking for awhile
Carl Byington <carl@five-ten-sg.com>
parents:
61
diff
changeset
|
91 message "sendmail authentication failed"; |
61
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
92 }; |
65
f17e6599b82c
fix default config regular expressions for geedy matching
Carl Byington <carl@five-ten-sg.com>
parents:
63
diff
changeset
|
93 pattern "dovecot.*Aborted login .* rip=(.*), lip=" { |
61
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
94 index 1; // zero based |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
95 bucket 100; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
96 message "dovecot failed password"; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
97 }; |
75
ae5e6bcc5017
sendmail auth failure detection for both login and plain methods
Carl Byington <carl@five-ten-sg.com>
parents:
69
diff
changeset
|
98 pattern "dovecot.*Disconnected.*auth failed.* rip=(.*), lip=" { |
66
d179292293eb
fix default config dovecot regular expressions; add manual blocking expression
Carl Byington <carl@five-ten-sg.com>
parents:
65
diff
changeset
|
99 index 1; // zero based |
d179292293eb
fix default config dovecot regular expressions; add manual blocking expression
Carl Byington <carl@five-ten-sg.com>
parents:
65
diff
changeset
|
100 bucket 100; |
d179292293eb
fix default config dovecot regular expressions; add manual blocking expression
Carl Byington <carl@five-ten-sg.com>
parents:
65
diff
changeset
|
101 message "dovecot failed password"; |
d179292293eb
fix default config dovecot regular expressions; add manual blocking expression
Carl Byington <carl@five-ten-sg.com>
parents:
65
diff
changeset
|
102 }; |
d179292293eb
fix default config dovecot regular expressions; add manual blocking expression
Carl Byington <carl@five-ten-sg.com>
parents:
65
diff
changeset
|
103 pattern "dovecot.*Login: user=.* rip=(.*), lip=" { |
61
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
104 index 1; // zero based |
63
60f59936fabb
good authentication prevents ip blocking for awhile
Carl Byington <carl@five-ten-sg.com>
parents:
61
diff
changeset
|
105 bucket -5000; |
60f59936fabb
good authentication prevents ip blocking for awhile
Carl Byington <carl@five-ten-sg.com>
parents:
61
diff
changeset
|
106 message "dovecot good authentication"; |
60f59936fabb
good authentication prevents ip blocking for awhile
Carl Byington <carl@five-ten-sg.com>
parents:
61
diff
changeset
|
107 }; |
60f59936fabb
good authentication prevents ip blocking for awhile
Carl Byington <carl@five-ten-sg.com>
parents:
61
diff
changeset
|
108 pattern "sendmail.*AUTH=server, .*\[(.*)\]," { |
60f59936fabb
good authentication prevents ip blocking for awhile
Carl Byington <carl@five-ten-sg.com>
parents:
61
diff
changeset
|
109 index 1; // zero based |
60f59936fabb
good authentication prevents ip blocking for awhile
Carl Byington <carl@five-ten-sg.com>
parents:
61
diff
changeset
|
110 bucket -5000; |
60f59936fabb
good authentication prevents ip blocking for awhile
Carl Byington <carl@five-ten-sg.com>
parents:
61
diff
changeset
|
111 message "sendmail good authentication"; |
61
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
112 }; |
d80641be405b
add script to build syslog2iptables.conf
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
113 }; |