e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
172 lines
3.9 KiB
Nix
172 lines
3.9 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
let
|
|
python = python3.override {
|
|
packageOverrides = self: super: {
|
|
impacket = super.impacket.overridePythonAttrs {
|
|
version = "0.12.0.dev1";
|
|
src = fetchFromGitHub {
|
|
owner = "Pennyw0rth";
|
|
repo = "impacket";
|
|
rev = "d370e6359a410063b2c9c68f6572c3b5fb178a38";
|
|
hash = "sha256-Jozn4lKAnLQ2I53+bx0mFY++OH5P4KyqVmrS5XJUY3E=";
|
|
};
|
|
};
|
|
bloodhound-py = super.bloodhound-py.overridePythonAttrs (old: {
|
|
propagatedBuildInputs =
|
|
lib.lists.remove super.impacket old.propagatedBuildInputs
|
|
++ [ self.impacket ];
|
|
});
|
|
};
|
|
};
|
|
|
|
python-easyconfig = buildPythonPackage rec {
|
|
pname = "python-easyconfig";
|
|
version = "0.1.7";
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "Python-EasyConfig";
|
|
hash = "sha256-tUjxmrhQtVFU9hFi8xTj27J24R47JpUbio+gaDwGuyk=";
|
|
};
|
|
propagatedBuildInputs = with python.pkgs; [
|
|
six
|
|
pyyaml
|
|
];
|
|
};
|
|
|
|
jsonform = buildPythonPackage rec {
|
|
pname = "jsonform";
|
|
version = "0.0.2";
|
|
doCheck = false;
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "JsonForm";
|
|
hash = "sha256-cfi3ohU44wyphLad3gTwKYDNbNwhg6GKp8oC2VCZiOY=";
|
|
};
|
|
propagatedBuildInputs = with python.pkgs; [
|
|
jsonschema
|
|
];
|
|
};
|
|
|
|
jsonsir = buildPythonPackage rec {
|
|
pname = "jsonsir";
|
|
version = "0.0.2";
|
|
doCheck = false;
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "JsonSir";
|
|
hash = "sha256-QBRHxekx94h4Uc6b8kB/401aqwsUZ7sku787dg5b0/s=";
|
|
};
|
|
};
|
|
|
|
dploot = buildPythonPackage rec {
|
|
pname = "dploot";
|
|
version = "2.2.4";
|
|
pyproject = true;
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-40/5KOlEFvPL9ohCfR3kqoikpKFfJO22MToq3GhamKM=";
|
|
};
|
|
nativeBuildInputs = with python.pkgs; [
|
|
poetry-core
|
|
];
|
|
propagatedBuildInputs = with python.pkgs; [
|
|
impacket
|
|
cryptography
|
|
pyasn1
|
|
lxml
|
|
];
|
|
};
|
|
|
|
resource = buildPythonPackage rec {
|
|
pname = "resource";
|
|
version = "0.2.1";
|
|
doCheck = false;
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "Resource";
|
|
hash = "sha256-mDVKvY7+c9WhDyEJnYC774Xs7ffKIqQW/yAlClGs2RY=";
|
|
};
|
|
propagatedBuildInputs = with python.pkgs; [
|
|
python-easyconfig
|
|
jsonform
|
|
jsonsir
|
|
];
|
|
};
|
|
in
|
|
python.pkgs.buildPythonApplication rec {
|
|
pname = "netexec";
|
|
version = "1.1.0";
|
|
pyproject = true;
|
|
doCheck = true;
|
|
pythonRelaxDeps = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Pennyw0rth";
|
|
repo = "NetExec";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-cNkZoIdfrKs5ZvHGKGBybCWGwA6C4rqjCOEM+pX70S8=";
|
|
};
|
|
|
|
nativeBuildInputs = with python.pkgs; [
|
|
poetry-core
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
propagatedBuildInputs = with python.pkgs; [
|
|
requests
|
|
beautifulsoup4
|
|
lsassy
|
|
termcolor
|
|
msgpack
|
|
neo4j
|
|
pylnk3
|
|
pypsrp
|
|
paramiko
|
|
impacket
|
|
dsinternals
|
|
xmltodict
|
|
terminaltables
|
|
aioconsole
|
|
pywerview
|
|
minikerberos
|
|
pypykatz
|
|
aardwolf
|
|
dploot
|
|
bloodhound-py
|
|
asyauth
|
|
masky
|
|
sqlalchemy
|
|
aiosqlite
|
|
pyasn1-modules
|
|
rich
|
|
python-libnmap
|
|
resource
|
|
oscrypto
|
|
];
|
|
|
|
nativeCheckInputs = with python.pkgs; [
|
|
pytest
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace '{ git = "https://github.com/Pennyw0rth/impacket.git", branch = "gkdi" }' '"*"'
|
|
|
|
substituteInPlace pyproject.toml \
|
|
--replace '{ git = "https://github.com/Pennyw0rth/oscrypto" }' '"*"'
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Network service exploitation tool (Maintaned fork of CrackMapExec)";
|
|
homepage = "https://github.com/Pennyw0rth/NetExec";
|
|
changelog = "https://github.com/Pennyw0rth/NetExec/releases/tag/v${version}";
|
|
license = with licenses; [ bsd2 ];
|
|
mainProgram = "nxc";
|
|
maintainers = with maintainers; [ vncsb ];
|
|
};
|
|
}
|