21 lines
572 B
Bash
Executable File
21 lines
572 B
Bash
Executable File
#!/bin/sh
|
|
# Script to run when a new suspicious IP address is detected.
|
|
|
|
# Example for Linux:
|
|
# iptables -I INPUT -s $1 -j DROP
|
|
#
|
|
# Example for OpenBSD:
|
|
# Having this line in /etc/doas.conf
|
|
# permit nopass _tarpit as root cmd /sbin/pfctl
|
|
# And having a table defined in pf.conf:
|
|
# table <blacklist> persist file "/etc/blacklist"
|
|
# block drop in quick from <blacklist> to any
|
|
# then it is possible to add/delete dinamically:
|
|
# doas /sbin/pfctl -t blacklist -T add $1
|
|
# doas /sbin/pfctl -t blacklist -T delete $1
|
|
|
|
# Example for "debugging":
|
|
echo $1 > /tmp/foo
|
|
|
|
|