Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (ec7f69e766fdbeb813aa67c867dfd12ca06ca5b6)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (ec7f69e766fdbeb813aa67c867dfd12ca06ca5b6)
  • Date: Sun, 15 Oct 2023 04:55:34 +0000

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

security/sshguard/DETAILS | 1 +
security/sshguard/HISTORY | 5 +++++
security/sshguard/PRE_BUILD | 4 ++++
security/sshguard/exim.patch | 11 +++++++++++
4 files changed, 21 insertions(+)

New commits:
commit ec7f69e766fdbeb813aa67c867dfd12ca06ca5b6
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

sshguard: fix exim authenticator signatures

diff --git a/security/sshguard/DETAILS b/security/sshguard/DETAILS
index bd0131a..f21d53e 100755
--- a/security/sshguard/DETAILS
+++ b/security/sshguard/DETAILS
@@ -1,5 +1,6 @@
SPELL=sshguard
VERSION=2.4.1
+ PATCHLEVEL=1
SOURCE=${SPELL}-${VERSION}.tar.gz

SOURCE_URL[0]=https://downloads.sourceforge.net/sourceforge/${SPELL}/files/${SOURCE}

SOURCE_HASH=sha256:875d02e6e67dced614790ed5e36aef1160edea940f353a79306cbb1852af3c67:UPSTREAM_HASH
diff --git a/security/sshguard/HISTORY b/security/sshguard/HISTORY
index 73cf5bf..036785f 100644
--- a/security/sshguard/HISTORY
+++ b/security/sshguard/HISTORY
@@ -1,3 +1,8 @@
+2023-10-14 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: PATCHLEVEL=1
+ * PRE_BUILD: apply patch
+ * exim.patch: added, fixes exim authenticator signatures
+
2021-02-05 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 2.4.1

diff --git a/security/sshguard/PRE_BUILD b/security/sshguard/PRE_BUILD
new file mode 100755
index 0000000..fd0ab86
--- /dev/null
+++ b/security/sshguard/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd "${SOURCE_DIRECTORY}" &&
+
+patch -p0 < "${SPELL_DIRECTORY}/exim.patch"
diff --git a/security/sshguard/exim.patch b/security/sshguard/exim.patch
new file mode 100644
index 0000000..262efd9
--- /dev/null
+++ b/security/sshguard/exim.patch
@@ -0,0 +1,11 @@
+--- src/parser/attack_scanner.l.orig 2020-06-23 23:01:26.000000000 +0000
++++ src/parser/attack_scanner.l 2023-10-14 19:59:29.032617779 +0000
+@@ -225,7 +225,7 @@
+ "authentication failure "[^0-9]+ { return
CUCIPOP_AUTHFAIL; }
+
+ /* Exim */
+-"authenticator failed for ".+" [" {
BEGIN(exim_esmtp_autherr); return EXIM_ESMTP_AUTHFAIL_PREF; }
++[A-Za-z0-9_-]+" authenticator failed for ".+" ["
{ BEGIN(exim_esmtp_autherr); return EXIM_ESMTP_AUTHFAIL_PREF; }
+ <exim_esmtp_autherr>"]"(:{NUMBER})?(" I=".+)?(" U=".+)?": 535 Incorrect
authentication data"(" (set_id=".+")")? { BEGIN(INITIAL); return
EXIM_ESMTP_AUTHFAIL_SUFF; }
+
+ "SMTP protocol error in \"AUTH LOGIN\" H="({HOSTNAME}" ")?"(".*") ["
{ BEGIN(exim_esmtp_loginerr); return EXIM_ESMTP_LOGINFAIL_PREF; }



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (ec7f69e766fdbeb813aa67c867dfd12ca06ca5b6), Vlad Glagolev, 10/15/2023

Archive powered by MHonArc 2.6.24.

Top of Page