nixpkgs/pkgs/tools/security/sshchecker/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
709 B
Nix
Raw Normal View History

2021-01-19 00:19:57 +01:00
{ buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "sshchecker";
version = "1.0";
src = fetchFromGitHub {
owner = "lazytools";
repo = pname;
rev = "v${version}";
2023-09-03 12:02:32 +02:00
hash = "sha256-QMc64ynPLHQGsmDOsoChgmqmpRDyMYmmSAPwAEFBK40=";
2021-01-19 00:19:57 +01:00
};
2023-09-03 12:02:32 +02:00
vendorHash = "sha256-U5nZbo2iSKP3BnxT4lkR75QutcxZB5YLzXxT045TDaY=";
2021-01-19 00:19:57 +01:00
meta = with lib; {
description = "Dedicated SSH brute-forcing tool";
longDescription = ''
sshchecker is a fast dedicated SSH brute-forcing tool to check
SSH login on the giving IP list.
'';
homepage = "https://github.com/lazytools/sshchecker";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}