aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--battering/packages/wordlist.scm29
1 files changed, 29 insertions, 0 deletions
diff --git a/battering/packages/wordlist.scm b/battering/packages/wordlist.scm
new file mode 100644
index 0000000..12ec246
--- /dev/null
+++ b/battering/packages/wordlist.scm
@@ -0,0 +1,29 @@
+(define-module (battering packages wordlist)
+ #:use-module (guix build-system copy)
+ #:use-module (guix download)
+ #:use-module (guix gexp)
+ #:use-module (guix packages)
+ #:use-module ((guix licenses)
+ #:prefix license:))
+
+(define-public seclists
+ (package
+ (name "seclists")
+ (version "2024.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/danielmiessler/SecLists/archive/refs/tags/"
+ version ".tar.gz"))
+ (sha256
+ (base32 "070da7i89xmg457i1k81i4rgbnv4r3wmfxlx8bb8ndwd7yr487sx"))))
+ (build-system copy-build-system)
+ (arguments '(#:install-plan '(("." "share/wordlists"))))
+ (home-page "https://github.com/danielmiessler/SecLists")
+ (synopsis "Compilation of various types of wordlists.")
+ (description "SecLists is the security tester's companion. It's a
+collection of multiple types of lists used during security assessments,
+collected in one place. List types include usernames, passwords, URLs,
+sensitive data patterns, fuzzing payloads, web shells, and many more.")
+ (license license:expat)))