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