mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
138e97f7e4
Post exploitation tool based on a web application https://github.com/AdrianVollmer/PowerHub
64 lines
1.3 KiB
Nix
64 lines
1.3 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "powerhub";
|
|
version = "2.0.7";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AdrianVollmer";
|
|
repo = "PowerHub";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-ejdG/vMINyvToP8GAhRMdp/Jq8rZNBubDbRcg2i05lM=";
|
|
};
|
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
cheroot
|
|
cryptography
|
|
dnspython
|
|
flask
|
|
flask-socketio
|
|
flask-sqlalchemy
|
|
importlib-metadata
|
|
jinja2
|
|
pyopenssl
|
|
python-magic
|
|
python-socketio
|
|
requests
|
|
service-identity
|
|
simple-websocket
|
|
sqlalchemy
|
|
twisted
|
|
watchdog
|
|
werkzeug
|
|
wsgidav
|
|
];
|
|
|
|
# Tests uses XDG
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"powerhub"
|
|
];
|
|
|
|
preCheck = ''
|
|
cd tests/helpers
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Post exploitation tool based on a web application, focusing on bypassing endpoint protection and application whitelisting";
|
|
homepage = "https://github.com/AdrianVollmer/PowerHub";
|
|
changelog = "https://github.com/AdrianVollmer/PowerHub/blob/${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "powerhub";
|
|
};
|
|
}
|