Unverified Commit f4b211eb authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #191806 from fabaff/ldapnomnom

ldapnomnom: init at unstable-2022-09-18
parents 106342ce b6d0414b
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };