about summary refs log tree commit diff
path: root/pkgs/tools/security/kerbrute
diff options
context:
space:
mode:
authorLein Matsumaru <applePrincess@applePrincess.io>2021-09-15 16:34:28 +0000
committerLein Matsumaru <applePrincess@applePrincess.io>2021-09-19 10:36:05 +0000
commitc776833f20673b8ea920fbc6173609a719415a42 (patch)
tree306eca707860a245f236de3e72d524147fb3be3a /pkgs/tools/security/kerbrute
parent4738bfd5635db216760321820b7d0848658a9eac (diff)
kerbrute: init at 0.0.2
Diffstat (limited to 'pkgs/tools/security/kerbrute')
-rw-r--r--pkgs/tools/security/kerbrute/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/tools/security/kerbrute/default.nix b/pkgs/tools/security/kerbrute/default.nix
new file mode 100644
index 0000000000000..997f3b63437e2
--- /dev/null
+++ b/pkgs/tools/security/kerbrute/default.nix
@@ -0,0 +1,29 @@
+{ lib, python3 }:
+
+python3.pkgs.buildPythonApplication rec {
+  pname = "kerbrute";
+  version = "0.0.2";
+
+  src = python3.pkgs.fetchPypi {
+    inherit pname version;
+    sha256 = "sha256-ok/yttRSkCaEdV4aM2670qERjgDBll6Oi3L5TV5YEEA=";
+  };
+
+  # This package does not have any tests
+  doCheck = false;
+
+  propagatedBuildInputs = with python3.pkgs; [
+    impacket
+  ];
+
+  installChechPhase = ''
+    $out/bin/kerbrute --version
+  '';
+
+  meta = {
+    homepage = "https://github.com/TarlogicSecurity/kerbrute";
+    description = "Kerberos bruteforce utility";
+    license = lib.licenses.gpl3Only;
+    maintainers = with lib.maintainers; [ applePrincess ];
+  };
+}