mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
ad-ldap-enum: init at 0-unstable-2023-02-10
This commit is contained in:
parent
7efa39690a
commit
863bdaa51b
49
pkgs/by-name/ad/ad-ldap-enum/package.nix
Normal file
49
pkgs/by-name/ad/ad-ldap-enum/package.nix
Normal file
@ -0,0 +1,49 @@
|
||||
{ lib
|
||||
, stdenvNoCC
|
||||
, fetchFromGitHub
|
||||
, python3
|
||||
}:
|
||||
|
||||
stdenvNoCC.mkDerivation {
|
||||
pname = "ad-ldap-enum";
|
||||
version = "0-unstable-2023-02-10";
|
||||
src = fetchFromGitHub {
|
||||
owner = "CroweCybersecurity";
|
||||
repo = "ad-ldap-enum";
|
||||
rev = "60bc5bb111e2708d4bc2157f9ae3d5e0d06ece75";
|
||||
hash = "sha256-b77yWmZGyOSQSwnRhGqo501jO6XYd+qpx1pb+zkduVI=";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
(python3.withPackages (ps: with ps; [
|
||||
argcomplete
|
||||
ldap3
|
||||
openpyxl
|
||||
]))
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
install -Dm555 ad-ldap-enum.py $out/bin/ad-ldap-enum
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
fixupPhase = ''
|
||||
runHook preFixup
|
||||
|
||||
patchShebangs $out/bin/ad-ldap-enum
|
||||
|
||||
runHook postFixup
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "An LDAP based Active Directory user and group enumeration tool";
|
||||
homepage = "https://github.com/CroweCybersecurity/ad-ldap-enum";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ h7x4 ];
|
||||
platforms = python3.meta.platforms;
|
||||
mainProgram = "ad-ldap-enum";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user