Merge pull request #191806 from fabaff/ldapnomnom

ldapnomnom: init at unstable-2022-09-18
This commit is contained in:
Fabian Affolter 2022-09-22 00:46:12 +02:00 committed by GitHub
commit f4b211eb91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "ldapnomnom";
version = "unstable-2022-09-18";
src = fetchFromGitHub {
owner = "lkarlslund";
repo = pname;
rev = "c6560a58c74b663f46a5fed7b63986cf96f1e366";
hash = "sha256-tyPmCIO5ByO7pppe6dNtu+V8gtasQbzMkf5WrVG8S/I=";
};
vendorSha256 = "sha256-psITrOXWh+3XXLSdo862ln8n7AkO00KB4mHyTdbDCkY=";
meta = with lib; {
description = "Tool to anonymously bruteforce usernames from Domain controllers";
homepage = "https://github.com/lkarlslund/ldapnomnom";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -8527,6 +8527,8 @@ with pkgs;
ldapmonitor = callPackage ../tools/security/ldapmonitor { };
ldapnomnom = callPackage ../tools/security/ldapnomnom { };
ldapvi = callPackage ../tools/misc/ldapvi { };
ldeep = python3Packages.callPackage ../tools/security/ldeep { };