summaryrefslogtreecommitdiff
path: root/pwn/packages/ssh-audit.scm
blob: 2bef3e22944febadb114c076787c7790ec32179a (plain)
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
(define-module (gnu packages ssh-audit)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system python)
  #:use-module (guix licenses))

(define-public ssh-audit
  (package
    (name "ssh-audit")
    (version "3.3.0")
    (source (origin
              (method url-fetch)
              (uri (string-append "https://github.com/jtesta/ssh-audit/archive/refs/tags/v" version ".tar.gz"))
              (sha256
               (base32
                "0fz6qlvlgfi2cc45qvki0bh6bxqwn36k4xwanxv5ar8y5kzwjcz5"))))
    (build-system python-build-system)
    (arguments
      (list
      #:tests? #f))
    (synopsis "ssh auditing tool")
    (description "ssh-audit is a tool for ssh server & client configuration auditing")
    (home-page "https://github.com/jtesta/ssh-audit")
    (license expat)))
ssh-audit