diff options
author | Hanketsu <hanketsu@egregore.fun> | 2024-12-20 00:05:36 +0100 |
---|---|---|
committer | Hanketsu <hanketsu@egregore.fun> | 2025-01-16 16:45:27 +0100 |
commit | 8888e8a662655d8095d35d6ab173e441f96c8c72 (patch) | |
tree | 83c6efa228b954e178aec33e4891300cffd0f1e5 | |
parent | 651a45cde9ff5271102a1cf32ff85bf1a41e40ca (diff) |
battering: Add seclists.
* battering/packages/wordlist.scm (seclists): New variable.
-rw-r--r-- | battering/packages/wordlist.scm | 29 |
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))) |