472aeafc57
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
85 lines
1.7 KiB
Nix
85 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
dissect-cstruct,
|
|
dissect-util,
|
|
fetchFromGitHub,
|
|
flow-record,
|
|
httpx,
|
|
lark,
|
|
pycryptodome,
|
|
pyshark,
|
|
pytest-httpserver,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
rich,
|
|
setuptools,
|
|
setuptools-scm,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dissect-cobaltstrike";
|
|
version = "1.0.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fox-it";
|
|
repo = "dissect.cobaltstrike";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-CS50c3r7sdxp3CRS6XJ4QUmUFtmhFg6rSdKfYzJSOV4=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
dependencies = [
|
|
dissect-cstruct
|
|
dissect-util
|
|
lark
|
|
];
|
|
|
|
optional-dependencies = {
|
|
c2 = [
|
|
flow-record
|
|
httpx
|
|
pycryptodome
|
|
];
|
|
pcap = [
|
|
flow-record
|
|
httpx
|
|
pycryptodome
|
|
pyshark
|
|
];
|
|
full = [
|
|
flow-record
|
|
httpx
|
|
pycryptodome
|
|
pyshark
|
|
rich
|
|
];
|
|
};
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
nativeCheckInputs = [
|
|
pytest-httpserver
|
|
pytestCheckHook
|
|
] ++ lib.flatten (builtins.attrValues optional-dependencies);
|
|
|
|
pythonImportsCheck = [ "dissect.cobaltstrike" ];
|
|
|
|
meta = with lib; {
|
|
description = "Dissect module implementing a parser for Cobalt Strike related data";
|
|
homepage = "https://github.com/fox-it/dissect.cobaltstrike";
|
|
changelog = "https://github.com/fox-it/dissect.cobaltstrike/releases/tag/${version}";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ fab ];
|
|
# Compatibility with dissect.struct 4.x
|
|
# https://github.com/fox-it/dissect.cobaltstrike/issues/53
|
|
broken = versionAtLeast dissect-cstruct.version "4";
|
|
};
|
|
}
|