2023-04-09 21:42:38 +02:00
|
|
|
# reaction
|
|
|
|
|
|
|
|
🚧 this program has not been tested in production yet 🚧
|
|
|
|
|
|
|
|
a program that scans program outputs, such as logs,
|
|
|
|
for repeated patterns, such as failed login attempts,
|
|
|
|
and takes action, such as banning ips.
|
|
|
|
|
|
|
|
(adapted from [fail2ban](http://fail2ban.org)'s presentation 😄)
|
|
|
|
|
|
|
|
## rationale
|
|
|
|
|
|
|
|
i was using fail2ban since quite a long time, but i was a bit frustrated by it's cpu consumption
|
|
|
|
and all its heavy default configuration.
|
|
|
|
|
|
|
|
in my view, a security-oriented program should be simple to configure (`sudo` is a very bad exemple!)
|
2023-04-12 09:55:39 +02:00
|
|
|
and an always-running daemon should be implemented in a fast language.
|
2023-04-09 21:42:38 +02:00
|
|
|
|
|
|
|
## configuration
|
|
|
|
|
|
|
|
this configuration file is all that should be needed to prevent bruteforce attacks on an ssh server.
|
|
|
|
|
|
|
|
`/etc/reaction.yml`
|
|
|
|
```yaml
|
|
|
|
definitions:
|
|
|
|
- &iptablesban [ "iptables" "-w" "-I" "reaction" "1" "-s" "<ip>" "-j" "block" ]
|
|
|
|
- &iptablesunban [ "iptables" "-w" "-D" "reaction" "1" "-s" "<ip>" "-j" "block" ]
|
|
|
|
|
|
|
|
patterns:
|
|
|
|
ip: '(([0-9]{1,3}\.){3}[0-9]{1,3})|([0-9a-fA-F:]{2,90})'
|
|
|
|
|
|
|
|
streams:
|
|
|
|
ssh:
|
|
|
|
cmd: [ "journalctl" "-fu" "sshd.service" ]
|
|
|
|
filters:
|
|
|
|
failedlogin:
|
|
|
|
regex:
|
|
|
|
- authentication failure;.*rhost=<ip>
|
|
|
|
retry: 3
|
|
|
|
retry-period: 6h
|
|
|
|
actions:
|
|
|
|
ban:
|
|
|
|
cmd: *iptablesban
|
|
|
|
unban:
|
|
|
|
cmd: *iptablesunban
|
2023-05-05 15:12:24 +02:00
|
|
|
after: 48h
|
2023-04-09 21:42:38 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
`/etc/systemd/system/reaction.service`
|
|
|
|
```systemd
|
|
|
|
[Unit]
|
|
|
|
WantedBy=multi-user.target
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
ExecStart=/path/to/reaction -c /etc/reaction.yml
|
|
|
|
|
|
|
|
ExecStartPre=/path/to/iptables -w -N reaction
|
|
|
|
ExecStartPre=/path/to/iptables -w -A reaction -j ACCEPT
|
2023-05-05 10:06:34 +02:00
|
|
|
ExecStartPre=/path/to/iptables -w -I reaction 1 -s 127.0.0.1 -j ACCEPT
|
|
|
|
ExecStartPre=/path/to/iptables -w -I reaction 1 -s ::1 -j ACCEPT
|
2023-04-09 21:42:38 +02:00
|
|
|
ExecStartPre=/path/to/iptables -w -I INPUT -p all -j reaction
|
|
|
|
|
|
|
|
ExecStopPost=/path/to/iptables -w -D INPUT -p all -j reaction
|
|
|
|
ExecStopPost=/path/to/iptables -w -F reaction
|
|
|
|
ExecStopPost=/path/to/iptables -w -X reaction
|
2023-04-11 13:01:02 +02:00
|
|
|
|
|
|
|
StateDirectory=reaction
|
|
|
|
WorkingDirectory=/var/lib/reaction
|
|
|
|
```
|
2023-04-26 17:11:03 +02:00
|
|
|
See [reaction.service](./config/reaction.service) and [reaction.yml](./config/reaction.yml) for the fully commented examples.
|
2023-04-11 13:01:02 +02:00
|
|
|
|
2023-04-11 13:14:46 +02:00
|
|
|
### database
|
2023-04-11 13:01:02 +02:00
|
|
|
|
2023-05-05 10:06:34 +02:00
|
|
|
the working directory of `reaction` will be used to create and read from the embedded database.
|
2023-04-11 13:14:46 +02:00
|
|
|
if you don't know where to start it, `/var/lib/reaction` should be a sane choice.
|
2023-04-11 13:01:02 +02:00
|
|
|
|
2023-04-12 11:54:46 +02:00
|
|
|
### terminology
|
|
|
|
|
|
|
|
- **streams** are commands. they're run and their ouptut is captured. *example:* `tail -f /var/log/nginx/access.log`
|
|
|
|
- **filters** belong to a **stream**. they run actions when they match **regexes**.
|
|
|
|
- **regexes** are regexes. *example:* `login failed from user .* from ip <ip>`
|
|
|
|
- **patterns** are also regexes. they're inserted inside **regexes**. example: `ip: ([0-9]{,3}.)[0-9]{,3}`
|
|
|
|
- **actions** are commands. example: `["echo" "matched <ip>"]`
|
|
|
|
|
2023-04-11 13:14:46 +02:00
|
|
|
### compilation
|
2023-04-11 13:01:02 +02:00
|
|
|
|
2023-04-11 13:14:46 +02:00
|
|
|
```shell
|
|
|
|
$ go build .
|
2023-04-09 21:42:38 +02:00
|
|
|
```
|