nixpkgs/pkgs/by-name/nt/ntlmrecon/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
895 B
Nix
Raw Normal View History

2021-04-22 15:14:46 +00:00
{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "ntlmrecon";
version = "0.4";
format = "setuptools";
2021-04-22 15:14:46 +00:00
src = fetchFromGitHub {
owner = "pwnfoo";
repo = "NTLMRecon";
rev = "refs/tags/v-${version}";
2021-04-22 15:14:46 +00:00
sha256 = "0rrx49li2l9xlcax84qxjf60nbzp3fgq77c36yqmsp0pc9i89ah6";
};
propagatedBuildInputs = with python3.pkgs; [
colorama
iptools
requests
termcolor
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"ntlmrecon"
];
2021-04-22 15:14:46 +00:00
meta = with lib; {
description = "Information enumerator for NTLM authentication enabled web endpoints";
mainProgram = "ntlmrecon";
2021-04-22 15:14:46 +00:00
homepage = "https://github.com/pwnfoo/NTLMRecon";
changelog = "https://github.com/pwnfoo/NTLMRecon/releases/tag/v-${version}";
2021-04-22 15:14:46 +00:00
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}