sshchecker: init at 1.0

This commit is contained in:
Fabian Affolter 2021-01-19 00:19:57 +01:00
parent 7aef69e156
commit f9b4fd0ec5
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "sshchecker";
version = "1.0";
src = fetchFromGitHub {
owner = "lazytools";
repo = pname;
rev = "v${version}";
sha256 = "139b850h1w0392k8jcgj22jscsl2l60b5kk0n8378b6g57ikmis0";
};
vendorSha256 = "19hdaf7d6lvwrl5rc1srrjsjx57g25cy4lvw0vvs6j52impdk6ak";
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 ];
};
}

View file

@ -1397,6 +1397,8 @@ in
ssh-import-id = python3Packages.callPackage ../tools/admin/ssh-import-id { };
sshchecker = callPackage ../tools/security/sshchecker { };
titaniumenv = callPackage ../development/mobile/titaniumenv { };
abootimg = callPackage ../development/mobile/abootimg {};