at 23.11-beta 29 lines 709 B view raw
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 hash = "sha256-QMc64ynPLHQGsmDOsoChgmqmpRDyMYmmSAPwAEFBK40="; 15 }; 16 17 vendorHash = "sha256-U5nZbo2iSKP3BnxT4lkR75QutcxZB5YLzXxT045TDaY="; 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}