From unknown Fri Jun 20 19:58:40 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#72269 <72269@debbugs.gnu.org> To: bug#72269 <72269@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add sshguard. Reply-To: bug#72269 <72269@debbugs.gnu.org> Date: Sat, 21 Jun 2025 02:58:40 +0000 retitle 72269 [PATCH] gnu: Add sshguard. reassign 72269 guix-patches submitter 72269 ashish.is@lostca.se severity 72269 normal tag 72269 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Wed Jul 24 05:18:00 2024 Received: (at submit) by debbugs.gnu.org; 24 Jul 2024 09:18:00 +0000 Received: from localhost ([127.0.0.1]:33120 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sWY8F-0003i1-LV for submit@debbugs.gnu.org; Wed, 24 Jul 2024 05:18:00 -0400 Received: from lists.gnu.org ([209.51.188.17]:49524) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sWY8D-0003hs-BV for submit@debbugs.gnu.org; Wed, 24 Jul 2024 05:17:58 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1sWY87-0000E5-EC for guix-patches@gnu.org; Wed, 24 Jul 2024 05:17:51 -0400 Received: from anamika.lostca.se ([2a01:4f9:3b:505c::2]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1sWY85-0002vL-Cv for guix-patches@gnu.org; Wed, 24 Jul 2024 05:17:51 -0400 Received: from localhost.localdomain (poincare.inet6.in [IPv6:2a0a:4cc0:1:12d4::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: abbe) by anamika.lostca.se (Postfix) with ESMTPSA id 87BFB1C9AE; Wed, 24 Jul 2024 09:17:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lostca.se; s=anamika; t=1721812657; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=N3NRpE3GK9YVBrKf3oJ4yv5xFOonCSeFrO0WoD1Y1v0=; b=bFd2mHz0yRImpWizLdLBNV3HRw3Iu0PYyRB4JEgAjW7+016gXOh2z3gw8Rykl410OwZaAP FL1KIFVjP/bn48ODYQUWuXxA+dO7U4VWgF92IhHiy1ZnzQTLbGoP0lsFH2CPwZsHNacYbE gRLFQwvD9AXNR76W5/WNXpBG1CI6hrI= From: ashish.is@lostca.se To: guix-patches@gnu.org Subject: [PATCH] gnu: Add sshguard. Date: Wed, 24 Jul 2024 09:17:18 +0000 Message-ID: <3fa9d07b28c72ff84fed0a14931a35ed4f65188f.1721812638.git.ashish.is@lostca.se> X-Mailer: git-send-email 2.45.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=2a01:4f9:3b:505c::2; envelope-from=ashish.is@lostca.se; helo=anamika.lostca.se X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Ashish SHUKLA X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) From: Ashish SHUKLA * gnu/packages/admin.scm (sshguard): New variable. Change-Id: I551771ff49af3e852322f2518f0758494aaedee3 --- gnu/packages/admin.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 113b8e2481..b5cfa25c62 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -6345,3 +6345,26 @@ (define-public rdfind their content instead of their file names. It is useful for compressing backup directories or just finding duplicate files.") (license license:gpl2+))) + +(define-public sshguard + (package + (name "sshguard") + (version "2.4.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://bitbucket.org/sshguard/sshguard.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 (base32 "1dkijr287zpwdz1bjdchxzmwf1sk6vzpkycz1skm25lkaba6nd9r")))) + (build-system gnu-build-system) + (native-inputs + (list autoconf automake bison flex python-docutils)) + + (home-page "https://sshguard.net/") + (synopsis "Daemon to blocks SSH brute-force attacks") + (description "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.") + (license license:isc))) base-commit: d007b64356764f49677c78d82643f1125b5353b7 -- 2.45.2 From debbugs-submit-bounces@debbugs.gnu.org Tue Aug 20 04:54:16 2024 Received: (at 72269-done) by debbugs.gnu.org; 20 Aug 2024 08:54:16 +0000 Received: from localhost ([127.0.0.1]:59871 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sgKd6-00032A-9O for submit@debbugs.gnu.org; Tue, 20 Aug 2024 04:54:16 -0400 Received: from msg-4.mailo.com ([213.182.54.15]:48554 helo=mailo.com) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sgKd4-00031t-63 for 72269-done@debbugs.gnu.org; Tue, 20 Aug 2024 04:54:15 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=nicolasgoaziou.fr; s=mailo; t=1724144004; bh=HSKAlfBVhH8KnDfpwof6yclzzoSnei6BI7zc4PCLP6k=; h=X-EA-Auth:From:To:Cc:Subject:In-Reply-To:Date:Message-ID: MIME-Version:Content-Type; b=aZuo8jAWwGpctNBDn+5bI/1Q5akPuCi7+3gQ0is9WJg3VQo3iBgaNURiTOmosP1J4 AfBE5m6m8MrC8icJeTcu8QKjNDMpo9GAOof5bY3JXkH6v9RYNadIhUoFHoyi/a7Alj VZqD8sDpNtSnDJUDeXLMT5I+ZU4u2LJl9uwswA+s= Received: by b-3.in.mailobj.net [192.168.90.13] with ESMTP via ip-20.mailobj.net [213.182.54.20] Tue, 20 Aug 2024 10:53:24 +0200 (CEST) X-EA-Auth: EUVZKHKdzTKXOLop9NlX72rWdGzUlwhyIbo99Bdep4UubG5V0dgJp+0YUbPKwPUcUpiYhPo5/5I4kZcKweSr2aYAHSkr69kA4ht4RVZ6sSs= From: Nicolas Goaziou To: 72269-done@debbugs.gnu.org Subject: Re: [PATCH] gnu: Add sshguard. In-Reply-To: <3fa9d07b28c72ff84fed0a14931a35ed4f65188f.1721812638.git.ashish.is@lostca.se> Date: Tue, 20 Aug 2024 10:53:08 +0200 Message-ID: <87frqzo9sb.fsf@nicolasgoaziou.fr> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 72269-done Cc: ashish.is@lostca.se X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hello, > From: Ashish SHUKLA > > * gnu/packages/admin.scm (sshguard): New variable. Applied. Thank you. Regards, -- Nicolas Goaziou From unknown Fri Jun 20 19:58:40 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 17 Sep 2024 11:24:13 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator