e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
83 lines
1.5 KiB
Nix
83 lines
1.5 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";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fox-it";
|
|
repo = "dissect.cobaltstrike";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-CS50c3r7sdxp3CRS6XJ4QUmUFtmhFg6rSdKfYzJSOV4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
dissect-cstruct
|
|
dissect-util
|
|
lark
|
|
];
|
|
|
|
passthru.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 passthru.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 ];
|
|
};
|
|
}
|