Merge pull request #326042 from MaxCaminer/ntlm-challenger

ntlm-challenger: init at 0-unstable-2022-11-10
This commit is contained in:
Emily Trau 2024-07-12 16:28:00 +10:00 committed by GitHub
commit 01df3d36aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 44 additions and 0 deletions

View File

@ -4123,6 +4123,12 @@
githubId = 34543609;
name = "creator54";
};
crem = {
email = "max@alstercaminer.com";
github = "MaxCaminer";
githubId = 16345077;
name = "crem";
};
crertel = {
email = "chris@kedagital.com";
github = "crertel";

View File

@ -0,0 +1,38 @@
{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication {
pname = "ntlm-challenger";
version = "0-unstable-2022-11-10";
format = "other";
src = fetchFromGitHub {
owner = "nopfor";
repo = "ntlm_challenger";
rev = "bd61ef65c7692fb1968383894da662bf99026aec";
hash = "sha256-F9aZB8M25gPDY7J7cXkAH30m7zmk4NHczUHyBDBZInA=";
};
propagatedBuildInputs = with python3.pkgs; [
requests
impacket
];
installPhase = ''
runHook preInstall
install -D ntlm_challenger.py $out/bin/ntlm_challenger
runHook postInstall
'';
meta = with lib; {
description = "Parse NTLM challenge messages over HTTP and SMB";
mainProgram = "ntlm_challenger";
homepage = "https://github.com/nopfor/ntlm_challenger";
license = licenses.mit;
maintainers = [ maintainers.crem ];
};
}