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

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

30 lines
654 B
Nix
Raw Normal View History

{ lib, python3, fetchPypi }:
2021-09-15 16:34:28 +00:00
python3.pkgs.buildPythonApplication rec {
pname = "kerbrute";
version = "0.0.2";
src = fetchPypi {
2021-09-15 16:34:28 +00:00
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 ];
};
}