forked from mirrors/nixpkgs
kerbrute: init at 0.0.2
This commit is contained in:
parent
4738bfd563
commit
c776833f20
29
pkgs/tools/security/kerbrute/default.nix
Normal file
29
pkgs/tools/security/kerbrute/default.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -23985,6 +23985,8 @@ with pkgs;
|
|||
|
||||
keepass-otpkeyprov = callPackage ../applications/misc/keepass-plugins/otpkeyprov { };
|
||||
|
||||
kerbrute = callPackage ../tools/security/kerbrute { };
|
||||
|
||||
exrdisplay = callPackage ../applications/graphics/exrdisplay { };
|
||||
|
||||
exrtools = callPackage ../applications/graphics/exrtools { };
|
||||
|
|
Loading…
Reference in a new issue