# HG changeset patch # User Hans-G?nter Theisgen # Date 1642163150 -3600 # Node ID fb7d3b05f186d4e082d95524e83b5b3f2cd2034d # Parent 1df6fa5554140979cef52f758f8d1db2c66bf127 updated sshguard (2.4.0 -> 2.4.2) diff -r 1df6fa555414 -r fb7d3b05f186 sshguard/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sshguard/description.txt Fri Jan 14 13:25:50 2022 +0100 @@ -0,0 +1,11 @@ +Sshguard protects hosts from brute-force attacks against SSH and other services. +It aggregates system logs and blocks repeat offenders using one of several +firewall backends, including iptables, ipfw, and pf. + +Sshguard can read log messages from standard input (suitable for piping from syslog) +or monitor one or more log files. +Log messages are parsed, line-by-line, for recognised patterns. +If an attack, such as several login failures within a few seconds, is detected, +the offending IP is blocked. +Offenders are unblocked after a set interval, but can be semi-permanently banned +using the blacklist option. diff -r 1df6fa555414 -r fb7d3b05f186 sshguard/receipt --- a/sshguard/receipt Thu Jan 13 18:29:05 2022 +0000 +++ b/sshguard/receipt Fri Jan 14 13:25:50 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="sshguard" -VERSION="2.4.0" +VERSION="2.4.2" CATEGORY="security" TAGS="ssh" SHORT_DESC="Protects networked hosts from brute force attacks." @@ -24,14 +24,12 @@ --mandir=/usr/share/man \ $CONFIGURE_ARGS && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - - cp -a $install/usr/sbin $fs/usr - cp -a $install/usr/libexec $fs/usr + cook_copy_folders sbin + cook_copy_folders libexec }