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