mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: hashcat: Update to 6.2.5.
* gnu/packages/password-utils.scm (hashcat): Update to 6.2.5. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
5c444a0208
commit
038286b0ac
1 changed files with 14 additions and 16 deletions
|
@ -1112,27 +1112,25 @@ your online accounts makes it necessary.")
|
||||||
(define-public hashcat
|
(define-public hashcat
|
||||||
(package
|
(package
|
||||||
(name "hashcat")
|
(name "hashcat")
|
||||||
(version "6.1.1")
|
(version "6.2.5")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://hashcat.net/files/hashcat-"
|
(uri (string-append "https://hashcat.net/files/hashcat-" version
|
||||||
version ".tar.gz"))
|
".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"104z63m7lqbb0sdrxhf9yi15l4a9zwf9m6zs9dbb3gf0nfxl1h9r"))))
|
"0sc96xcsc20xd4fyby3i45nm9as3hl4nhk9snkvmk5l9mpbrjs3g"))))
|
||||||
(native-inputs
|
(native-inputs (list opencl-headers))
|
||||||
(list opencl-headers))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f ;no tests
|
'(#:tests? #f ;no tests
|
||||||
#:make-flags (list (string-append "PREFIX=" %output))
|
#:make-flags (list (string-append "PREFIX=" %output))
|
||||||
#:phases
|
#:phases (modify-phases %standard-phases
|
||||||
(modify-phases %standard-phases
|
|
||||||
(delete 'configure))))
|
(delete 'configure))))
|
||||||
(home-page "https://hashcat.net/hashcat/")
|
(home-page "https://hashcat.net/hashcat/")
|
||||||
(synopsis "Advanced password recovery utility")
|
(synopsis "Advanced password recovery utility")
|
||||||
(description "Hashcat is an password recovery utility, supporting five
|
(description
|
||||||
|
"Hashcat is an password recovery utility, supporting five
|
||||||
unique modes of attack for over 200 highly-optimized hashing algorithms.
|
unique modes of attack for over 200 highly-optimized hashing algorithms.
|
||||||
Hashcat currently supports CPUs, GPUs, and other hardware accelerators on
|
Hashcat currently supports CPUs, GPUs, and other hardware accelerators on
|
||||||
Linux, Windows, and macOS, and has facilities to help enable distributed
|
Linux, Windows, and macOS, and has facilities to help enable distributed
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue