summaryrefslogtreecommitdiff
path: root/pwn/packages/medusa.scm
diff options
context:
space:
mode:
Diffstat (limited to 'pwn/packages/medusa.scm')
-rw-r--r--pwn/packages/medusa.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/pwn/packages/medusa.scm b/pwn/packages/medusa.scm
new file mode 100644
index 0000000..0810b99
--- /dev/null
+++ b/pwn/packages/medusa.scm
@@ -0,0 +1,26 @@
+(define-module (pwn packages medusa)
+ #:use-module (guix packages)
+ #:use-module (guix download)
+ #:use-module (guix build-system gnu)
+ #:use-module (guix licenses)
+ #:use-module (gnu packages tls))
+
+(define-public medusa
+ (package
+ (name "Medusa")
+ (version "2.3")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/jmk-foofus/medusa/releases/download/2.3/medusa-" version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "0lg2r31w7lssjmzy61vsdi97q2sqgn38x9asp56175igardvgdxh"))))
+ (build-system gnu-build-system)
+ (arguments '(#:configure-flags '("--enable-silent-rules")))
+ (inputs (list openssl))
+ (synopsis "Modular parallelized login brute-forcer")
+ (description "Medusa is a speedy, parallel, and modular, login brute-forcer. The goal is to support as many services which allow remote authentication as possible.")
+ (home-page "https://jmk-foofus.github.io/medusa/medusa.html")
+ (license gpl2)))
+medusa