mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
sshchecker: init at 1.0
This commit is contained in:
parent
7aef69e156
commit
f9b4fd0ec5
29
pkgs/tools/security/sshchecker/default.nix
Normal file
29
pkgs/tools/security/sshchecker/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user