1{
2 buildGoModule,
3 fetchFromGitHub,
4 lib,
5}:
6
7buildGoModule rec {
8 pname = "cloudbrute";
9 version = "1.0.7";
10
11 src = fetchFromGitHub {
12 owner = "0xsha";
13 repo = "CloudBrute";
14 rev = "v${version}";
15 hash = "sha256-L233VdQolSPDPDXQALLvF5seb3peHiLRiZuj2RqdaRU=";
16 };
17
18 vendorHash = "sha256-SRk5kEUVmY3IJSB/XwchqWGnaXLQUoisx6KlVzMHdjg=";
19
20 meta = with lib; {
21 description = "Cloud enumeration tool";
22 mainProgram = "cloudbrute";
23 longDescription = ''
24 A tool to find a company (target) infrastructure, files, and apps on
25 the top cloud providers (Amazon, Google, Microsoft, DigitalOcean,
26 Alibaba, Vultr, Linode).
27 '';
28 homepage = "https://github.com/0xsha/CloudBrute";
29 license = with licenses; [ mit ];
30 maintainers = with maintainers; [ fab ];
31 };
32}