From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37663) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eKrdO-0001WC-GL for guix-patches@gnu.org; Fri, 01 Dec 2017 15:10:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eKrdL-0000rL-2y for guix-patches@gnu.org; Fri, 01 Dec 2017 15:10:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:60096) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eKrdK-0000rB-UW for guix-patches@gnu.org; Fri, 01 Dec 2017 15:10:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eKrdK-0003ac-K7 for guix-patches@gnu.org; Fri, 01 Dec 2017 15:10:02 -0500 Subject: [bug#29528] Add blacknurse Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37162) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eKrcR-0000pe-7c for guix-patches@gnu.org; Fri, 01 Dec 2017 15:09:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eKrcO-0000Nz-0S for guix-patches@gnu.org; Fri, 01 Dec 2017 15:09:07 -0500 Received: from aibo.runbox.com ([91.220.196.211]:48740) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eKrcN-0000LP-O2 for guix-patches@gnu.org; Fri, 01 Dec 2017 15:09:03 -0500 Received: from [10.9.9.212] (helo=mailfront12.runbox.com) by mailtransmit03.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1eKUjC-0006ro-Ss for guix-patches@gnu.org; Thu, 30 Nov 2017 20:42:34 +0100 Received: from dslb-088-078-087-251.088.078.pools.vodafone-ip.de ([88.78.87.251] helo=localhost) by mailfront12.runbox.com with esmtpsa (uid:892961 ) (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) id 1eKUj6-0002bP-Qd for guix-patches@gnu.org; Thu, 30 Nov 2017 20:42:29 +0100 Date: Thu, 30 Nov 2017 19:42:27 +0000 From: ng0 Message-ID: <20171130194227.bpe4l2ccvcrr5spb@abyayala> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="z6rce7pqd3nqm3pe" Content-Disposition: inline List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 29528@debbugs.gnu.org --z6rce7pqd3nqm3pe Content-Type: multipart/mixed; boundary="rqofh6lqbi27z6zc" Content-Disposition: inline --rqofh6lqbi27z6zc Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable A package from my pen-testing repo. --=20 GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588 GnuPG: https://c.n0.is/ng0_pubkeys/tree/keys WWW: https://n0.is --rqofh6lqbi27z6zc Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="0001-gnu-Add-blacknurse.patch" Content-Transfer-Encoding: quoted-printable =46rom 4aa7ccc47c588e1383d1ea34024b900611317dea Mon Sep 17 00:00:00 2001 =46rom: ng0 Date: Thu, 30 Nov 2017 19:39:07 +0000 Subject: [PATCH] gnu: Add blacknurse. * gnu/packages/networking.scm (blacknurse): New variable. --- gnu/packages/networking.scm | 39 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 1f4906b7b..b8ade6468 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -8,7 +8,7 @@ ;;; Copyright =C2=A9 2016 John Darrington ;;; Copyright =C2=A9 2016, 2017 Nicolas Goaziou ;;; Copyright =C2=A9 2016 Eric Bavier -;;; Copyright =C2=A9 2016, 2017 ng0 +;;; Copyright =C2=A9 2016, 2017 ng0 ;;; Copyright =C2=A9 2016, 2017 Arun Isaac ;;; Copyright =C2=A9 2016 Benz Schenk ;;; Copyright =C2=A9 2016, 2017 Pjotr Prins @@ -38,6 +38,7 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) + #:use-module (guix git-download) #:use-module (guix build-system cmake) #:use-module (guix build-system glib-or-gtk) #:use-module (guix build-system gnu) @@ -1536,3 +1537,39 @@ at the IP layer and link layer, as well as a host of= supplementary functionality. Using libnet, quick and simple packet assembly applications can be whipped up with little effort.") (license license:bsd-2))) + +(define-public blacknurse + (let* ((commit "d2a2b23544295844714ebf8d2d78af37fe5770c9") + (revision "1")) + (package + (name "blacknurse") + (version (string-append "0.0.0-" revision "." (string-take commit 7)= )) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jedisct1/blacknurse") + (commit commit))) + (file-name (string-append name "-" version)) + (sha256 + (base32 + "1w7zmcrnrs4p4naj3i6h1wcmd56dgrfd7myx0ljhw162sg0134nz")))) + (build-system gnu-build-system) + (arguments + `(#:make-flags (list "CC=3Dgcc") + #:tests? #f ; No tests + #:phases + (modify-phases %standard-phases + (delete 'configure) ; No configure script + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (bin (string-append out "/bin"))) + (install-file "blacknurse" bin))))))) + (home-page "https://github.com/jedisct1/blacknurse") + (synopsis "Proof of Concept for the Blacknurse attack") + (description + "Simple Proof of Concept for the Blacknurse attack. +Blacknurse is a low bandwidth ICMP attack that is capable of doing denial +of service to well known firewalls.") + (license license:bsd-2)))) --=20 2.15.0 --rqofh6lqbi27z6zc-- --z6rce7pqd3nqm3pe Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEqIyK3RKYKNfqwC5S4i+bv+40hYgFAlogXyMACgkQ4i+bv+40 hYhIJw//YyKKsWb9R12g2dTXlFlxfQMW9uJ7WuZFZvb7pS3NMiHrere3IxnbEQBP M8LaLCO1RDQ+f63mAayers1i1WzpUzUKBpNT3LhkTFghpc2DIH89zUzCy2JINz8y CSky8ToT+VhvKEjG7DFLGv5og6eNT5mEcR+8D8LFxnE5h6Kg38dKbiI53fu6UhEu LALIhV3Yo1jQ3THDl0LekV0kgW9wuf1BOi12/cLMl+L/NJzk+3HS3hvZCP481wCy DdGkDrD/EO/7F+Qh2fhMzrBcbAevf338YyIhYUFS59eVzYbOPaiBVexG4QytE/25 /+nSmav1i2xppTiI5vJfbnlZFDujPwl02hFoDOkuE2flDVHqsll2cPQs/Yu7s7R2 EePw5u3xE0P2CZrO5dnPejK2haa8D/mWV9hJ6lSJDkOgXSP7Rc67Cw1XzMPQ7J6B q6XKRMMdt3MSswhEegXsdYYgCqTQm7XbJTNU+LGZ9YpC/0BmSzRIXjGSIO5OqZVP J2FjDVtuV/E2wftI7PXhqEAIoHYq+F/5yF9pIszbHcLe8Nm3AQU4vj7soXUanyA1 U53tTn9mzeyMX7v45dCYmJmZFEwJnhWftYLGeuALSqhoxv7c5LvONrKVPPbFIDwR zER3F/Jzlu+0JD/nvu0lDaGcNCR2U7xhDMSqTnEKPG89QjtrEPM= =yxzk -----END PGP SIGNATURE----- --z6rce7pqd3nqm3pe--