Merge pull request #233233 from fabaff/kubestroyer

kubestroyer: init at 0.2
This commit is contained in:
figsoda 2023-05-21 11:17:05 -04:00 committed by GitHub
commit 936612681e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "kubestroyer";
version = "0.2";
src = fetchFromGitHub {
owner = "Rolix44";
repo = "Kubestroyer";
rev = "refs/tags/v${version}";
hash = "sha256-M/abb2IT0mXwj8lAitr18VtIgC4NvapPywBwcUWr9i8=";
};
vendorHash = "sha256-x0lIi4QUuYn0kv0HV4h8k61kRu10LCyELudisqUdTAg=";
ldflags = [
"-s"
"-w"
];
meta = with lib; {
description = "Kubernetes exploitation tool";
homepage = "https://github.com/Rolix44/Kubestroyer";
changelog = "https://github.com/Rolix44/Kubestroyer/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -31834,6 +31834,8 @@ with pkgs;
kubeseal = callPackage ../applications/networking/cluster/kubeseal { };
kubestroyer = callPackage ../tools/security/kubestroyer { };
kubernix = callPackage ../applications/networking/cluster/kubernix { };
kubeconform = callPackage ../applications/networking/cluster/kubeconform { };