about summary refs log tree commit diff
path: root/pkgs/by-name/po
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-02-20 22:04:32 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2024-02-20 22:04:32 +0100
commit138e97f7e4108b0ac4edc6e5c310223bbf4246ae (patch)
tree75e1feed4f92899ccfb6e12fd42feb04ba116cd7 /pkgs/by-name/po
parent57d41a34f2e7e9b8b612f47bb249355d7fc55e0b (diff)
powerhub: init at 2.0.7
Post exploitation tool based on a web application

https://github.com/AdrianVollmer/PowerHub
Diffstat (limited to 'pkgs/by-name/po')
-rw-r--r--pkgs/by-name/po/powerhub/package.nix64
1 files changed, 64 insertions, 0 deletions
diff --git a/pkgs/by-name/po/powerhub/package.nix b/pkgs/by-name/po/powerhub/package.nix
new file mode 100644
index 0000000000000..2200985699660
--- /dev/null
+++ b/pkgs/by-name/po/powerhub/package.nix
@@ -0,0 +1,64 @@
+{ 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";
+  };
+}