yatas: init at 1.3.3

This commit is contained in:
Fabian Affolter 2023-02-05 10:19:33 +01:00
parent 5a6b558d00
commit d08e2fa87c
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "yatas";
version = "1.3.3";
src = fetchFromGitHub {
owner = "padok-team";
repo = "YATAS";
rev = "refs/tags/v${version}";
hash = "sha256-BjcqEO+rDEjPttGgTH07XyQKLcs/O+FarKTWjqXWQOo=";
};
vendorHash = "sha256-QOFt9h4Hdt+Mx82yw4mjAoyUXHeprvjRoLYLBnihwJo=";
meta = with lib; {
description = "Tool to audit AWS infrastructure for misconfiguration or potential security issues";
homepage = "https://github.com/padok-team/YATAS";
changelog = "https://github.com/padok-team/YATAS/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -38538,6 +38538,8 @@ with pkgs;
yersinia = callPackage ../tools/security/yersinia { };
yatas = callPackage ../tools/security/yatas { };
yaxg = callPackage ../tools/graphics/yaxg {};
zap = callPackage ../tools/networking/zap { };