about summary refs log tree commit diff
path: root/pkgs/tools/security/sshchecker
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-01-19 00:19:57 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2021-01-19 00:19:57 +0100
commitf9b4fd0ec574b78a7f0c983572b3c15ada06e2ad (patch)
tree3de701089ea9fd4a6047d104260306e023068ba4 /pkgs/tools/security/sshchecker
parent7aef69e1564aefdf4e62639e3db43508601dd217 (diff)
sshchecker: init at 1.0
Diffstat (limited to 'pkgs/tools/security/sshchecker')
-rw-r--r--pkgs/tools/security/sshchecker/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/tools/security/sshchecker/default.nix b/pkgs/tools/security/sshchecker/default.nix
new file mode 100644
index 0000000000000..5dfc37dcf6cfc
--- /dev/null
+++ b/pkgs/tools/security/sshchecker/default.nix
@@ -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 ];
+  };
+}