2021-01-09 17:12:41 +00:00
|
|
|
{ buildGoModule
|
|
|
|
, fetchFromGitHub
|
2021-01-25 08:26:54 +00:00
|
|
|
, lib
|
2021-01-09 17:12:41 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "cloudbrute";
|
|
|
|
version = "1.0.7";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "0xsha";
|
|
|
|
repo = "CloudBrute";
|
|
|
|
rev = "v${version}";
|
2023-09-21 14:23:40 +00:00
|
|
|
hash = "sha256-L233VdQolSPDPDXQALLvF5seb3peHiLRiZuj2RqdaRU=";
|
2021-01-09 17:12:41 +00:00
|
|
|
};
|
|
|
|
|
2023-09-21 14:23:40 +00:00
|
|
|
vendorHash = "sha256-SRk5kEUVmY3IJSB/XwchqWGnaXLQUoisx6KlVzMHdjg=";
|
2021-01-09 17:12:41 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-01-09 17:12:41 +00:00
|
|
|
description = "Cloud enumeration tool";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "cloudbrute";
|
2021-01-09 17:12:41 +00:00
|
|
|
longDescription = ''
|
|
|
|
A tool to find a company (target) infrastructure, files, and apps on
|
|
|
|
the top cloud providers (Amazon, Google, Microsoft, DigitalOcean,
|
|
|
|
Alibaba, Vultr, Linode).
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/0xsha/CloudBrute";
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|