cloudrecon: init at 1.0.3

Tool to find assets from certificates

https://github.com/g0ldencybersec/CloudRecon
This commit is contained in:
Fabian Affolter 2024-03-04 16:53:39 +01:00
parent f36cf57e73
commit 4917ed47a2

View File

@ -0,0 +1,32 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "cloudrecon";
version = "1.0.3";
src = fetchFromGitHub {
owner = "g0ldencybersec";
repo = "CloudRecon";
rev = "refs/tags/v${version}";
hash = "sha256-I/pdipBC+DndAGS6L4i3YoMVBTlaXNzXopD+ZxyyRmY=";
};
vendorHash = "sha256-hLEmRq7Iw0hHEAla0Ehwk1EfmpBv6ddBuYtq12XdhVc=";
ldflags = [
"-s"
"-w"
];
meta = with lib; {
description = "Tool to find assets from certificates";
homepage = "https://github.com/g0ldencybersec/CloudRecon";
changelog = "https://github.com/g0ldencybersec/CloudRecon/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
mainProgram = "cloudrecon";
};
}