blob: d8ecee4241ec5d3a9e432fbb17ec1a138336f7ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{
lib,
asn1crypto,
buildPythonPackage,
colorama,
cryptography,
fetchFromGitHub,
impacket,
pyasn1,
}:
buildPythonPackage rec {
pname = "masky";
version = "0.2.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "Z4kSec";
repo = "Masky";
tag = "v${version}";
hash = "sha256-npRuszHkxwjJ+B+q8eQywXPd0OX0zS+AfCro4TM83Uc=";
};
propagatedBuildInputs = [
asn1crypto
colorama
cryptography
impacket
pyasn1
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "masky" ];
meta = {
description = "Library to remotely dump domain credentials";
mainProgram = "masky";
homepage = "https://github.com/Z4kSec/Masky";
changelog = "https://github.com/Z4kSec/Masky/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ elasticdog ];
};
}
|