1{ buildGoModule
2, fetchFromGitHub
3, lib
4}:
5
6buildGoModule rec {
7 pname = "sshchecker";
8 version = "1.0";
9
10 src = fetchFromGitHub {
11 owner = "lazytools";
12 repo = pname;
13 rev = "v${version}";
14 sha256 = "139b850h1w0392k8jcgj22jscsl2l60b5kk0n8378b6g57ikmis0";
15 };
16
17 vendorSha256 = "19hdaf7d6lvwrl5rc1srrjsjx57g25cy4lvw0vvs6j52impdk6ak";
18
19 meta = with lib; {
20 description = "Dedicated SSH brute-forcing tool";
21 longDescription = ''
22 sshchecker is a fast dedicated SSH brute-forcing tool to check
23 SSH login on the giving IP list.
24 '';
25 homepage = "https://github.com/lazytools/sshchecker";
26 license = with licenses; [ mit ];
27 maintainers = with maintainers; [ fab ];
28 };
29}