KF2-AntiDDoS/README.md

117 lines
5.9 KiB
Markdown
Raw Permalink Normal View History

2021-07-31 23:51:21 +00:00
# KF2-AntiDDoS
2023-04-10 01:12:42 +00:00
**DDoS protection of the kf2 server from one of the attacks faced by community**
2021-07-31 23:51:21 +00:00
Compiled versions for windows and linux are available on the [releases page](https://github.com/GenZmeY/KF2-AntiDDoS/releases).
But you can build it yourself, for this there is a Makefile.
2023-04-10 01:12:42 +00:00
## ⚠️ Note ⚠️
2023-09-05 22:24:39 +00:00
### UPDATE 10.04.2023:
2023-04-10 01:12:42 +00:00
This tool has served well, but since its inception, the community has moved forward in protecting KF2 servers from DDoS.
I highly recommend paying attention to the solution from [baztheallmighty](https://forums.tripwireinteractive.com/index.php?members/baztheallmighty.110378/):
2023-09-05 22:30:17 +00:00
https://forums.tripwireinteractive.com/index.php?threads/kf2-or-any-unreal-engine-3-server-on-redhat-centos-rocky-alma-linux-ddos-defense-with-the-help-of-firewalld.2337631/post-2355522
2023-04-10 01:12:42 +00:00
This method limits the number of connections from each IP so junk traffic is dropped before it even reaches the kf2 server. **It is much more efficient than this tool.**
***
If you want to continue using this tool for any reason, it will be useful to reduce the `ConnectionTimeout` so that fake connections are closed faster and do not overload the server:
**PCServer-KFEngine.ini / LinuxServer-KFEngine.ini**
```ini
[IpDrv.TcpNetDriver]
...
ConnectionTimeout=20.0
```
Thanks to [o2xVc3UuXp0NyBihrUnu](https://forums.tripwireinteractive.com/index.php?members/o2xvc3uuxp0nybihrunu.95080/) for [finding and sharing this setting](https://forums.tripwireinteractive.com/index.php?threads/kf2-or-any-unreal-engine-3-server-on-redhat-centos-rocky-alma-linux-ddos-defense-with-the-help-of-firewalld.2337631/page-5#post-2355506).
***
The main discussion of the DDoS issue is here:
[forums.tripwireinteractive.com/KF2 Sever DDos Defence](https://forums.tripwireinteractive.com/index.php?threads/kf2-or-any-unreal-engine-3-server-on-redhat-centos-rocky-alma-linux-ddos-defense-with-the-help-of-firewalld.2337631/)
You might find it helpful to follow this thread.
2023-09-05 22:24:39 +00:00
### UPDATE 06.09.2023:
[o2xVc3UuXp0NyBihrUnu](https://forums.tripwireinteractive.com/index.php?members/o2xvc3uuxp0nybihrunu.95080/) adapted the [baztheallmighty](https://forums.tripwireinteractive.com/index.php?members/baztheallmighty.110378/) idea for firewall-cmd, which is quite handy:
```
firewall-cmd --permanent --direct --add-rule ipv4 filter INPUT 0 -p udp --dport 7777:7797 -m connlimit --connlimit-above 5 --connlimit-mask 20 -j DROP
```
**Source:** https://forums.tripwireinteractive.com/index.php?threads/kf2-or-any-unreal-engine-3-server-on-redhat-centos-rocky-alma-linux-ddos-defense-with-the-help-of-firewalld.2337631/post-2358698
2023-04-10 01:12:42 +00:00
2023-10-04 11:03:04 +00:00
### Update 04.10.2023
It looks like the author of the original ddos thread on the forum can no longer keep it up to date, so he moved all the information here:
https://www.zsdr.org/index.php/2023/10/03/killing-floor-2-or-any-unreal-engine-3-dedicated-server-on-redhat-centos-rocky-alma-linux-ddos-defense-with-the-help-of-iptables-firewalld/
It makes sense to follow this post
2021-07-31 23:51:21 +00:00
## How it works
The program parses the output of the KF2 server(s) and counts the number of connections. If the number of connections from one IP exceeds the threshold and it is still not known that this is a player, the program will execute a deny script passing it the IP as an argument.
The program will periodically execute the allow script, passing it a set of IPs blocked in the last period.
## HowTo:
2021-08-01 04:11:34 +00:00
```
Usage: <kf2_logs_output> | kf2-antiddos [option]... <shell> <deny_script> <allow_script>
2021-08-01 18:54:49 +00:00
2021-08-01 04:11:34 +00:00
kf2_logs_output KF2 logs to redirect to stdin
shell shell to run deny_script and allow_script
deny_script firewall deny script (takes IP as argument)
allow_script firewall allow script (takes IPs as arguments)
Options:
-j, --jobs N allow N jobs at once
-o, --output MODE self|proxy|all|quiet
2021-08-01 18:54:49 +00:00
-t, --deny-time TIME minimum ip deny TIME (seconds)
-c, --max-connections N Skip N connections before run deny script
2021-08-01 04:11:34 +00:00
-v, --version Show version
-h, --help Show help
```
2021-07-31 23:51:21 +00:00
- Prepare an IP deny script for your firewall. The script must block the IP received by the first argument
- Prepare an IP set allow script for your firewall. The script must unblock the set of IPs given by the arguments
- Сreate a redirection of the output of all KF2 servers to the stdin of the program
- In the parameters specify the scripts that you prepared and the shell that will execute them
2022-06-10 16:27:20 +00:00
## Raw example
```
2022-06-10 16:27:40 +00:00
tail -f ./KFGame/Logs/Launch.log | ./kf2-antiddos-linux-amd64 /bin/bash ./deny.sh ./allow.sh
2022-06-10 16:27:20 +00:00
```
2021-07-31 23:51:21 +00:00
## Centos example
(change paths and values as you need)
### systemd service:
```
[Unit]
Description=kf2-antiddos
After=network-online.target
Wants=network-online.target
[Service]
User=root
Group=root
Type=simple
2021-08-01 03:44:52 +00:00
ExecStart=/bin/sh -c '/usr/bin/kf2-srv log tail | /usr/local/bin/kf2-antiddos-linux-amd64 /bin/bash /usr/local/share/kf2-antiddos/deny.sh /usr/local/share/kf2-antiddos/allow.sh'
2021-07-31 23:51:21 +00:00
Restart=on-failure
[Install]
WantedBy=multi-user.target
```
2022-06-13 14:46:31 +00:00
pay attention to this part:
`/usr/bin/kf2-srv log tail`
2022-06-13 14:47:38 +00:00
I use a self-written system to manage the kf2 servers - the command specified here combines the output of all kf2 server logs into one stdout stream. If you want to protect several servers with antiddos, you also need to combine their logs into one stream. Replace this command with yours.
2022-06-13 14:46:31 +00:00
2021-07-31 23:51:21 +00:00
### deny.sh
```
#!/bin/bash
2021-08-01 03:56:25 +00:00
firewall-cmd --add-rich-rule="rule family=ipv4 source address=$1 port port=7777-7815 protocol=udp reject"
firewall-cmd --add-rich-rule="rule family=ipv4 destination address=$1 reject"
2021-07-31 23:51:21 +00:00
```
### allow.sh
```
#!/bin/bash
for IP in $@
do
2021-08-01 03:56:25 +00:00
firewall-cmd --remove-rich-rule="rule family=ipv4 source address=$IP port port=7777-7815 protocol=udp reject"
firewall-cmd --remove-rich-rule="rule family=ipv4 destination address=$IP reject"
2021-07-31 23:51:21 +00:00
done
```
## Contributing
2021-08-01 15:20:32 +00:00
It would be great if someone set up, tried it on windows and share their experience
2021-07-31 23:51:21 +00:00