aboutsummaryrefslogtreecommitdiff
path: root/battering/packages/wordlist.scm
blob: 12ec246fee055b1340f3bec08f76d1bcd978670e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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)))