I built this tool in 2019 for a pentest involving Azure, as no other enumeration tools supported it at the time. It grew from there, and I learned a lot while adding features.
Building tools is fun, but maintaining tools is hard. I haven’t actively used this tool myself in a while, but I’ve done my best to fix bugs and review pull requests.
Moving forward, it makes sense to consolidate this functionality into a well-maintained project that handles the essentials (web/dns requests, threading, I/O, logging, etc.). Nuclei is really well suited for this. You can see my first PR to migrate cloud_enum functionality to Nuclei here.
I encourage others to contribute templates to Nuclei, allowing us to focus on detecting cloud resources while leaving the groundwork to Nuclei.
I’ll still try to review PRs here to address bugs as time permits, but likely won’t have time for major changes.
Thanks to all the great contributors. Good luck with your recon!
Multi-cloud OSINT tool. Enumerate public resources in AWS, Azure, and Google Cloud.
Currently enumerates the following:
See it in action in Codingo‘s video demo here.
Several non-standard libaries are required to support threaded HTTP requests and dns lookups. You’ll need to install the requirements as follows:
pip3 install -r ./requirements.txt The only required argument is at least one keyword. You can use the built-in fuzzing strings, but you will get better results if you supply your own with -m and/or -b.
You can provide multiple keywords by specifying the -k argument multiple times.
Keywords are mutated automatically using strings from enum_tools/fuzz.txt or a file you provide with the -m flag.
Services that require a second-level of brute forcing (Azure Containers and GCP Functions) will also use fuzz.txt by default or a file you provide with the -b flag.
Let’s say you were researching “somecompany” whose website is “somecompany.io” that makes a product called “blockchaindoohickey”. You could run the tool like this:
./cloud_enum.py -k somecompany -k somecompany.io -k blockchaindoohickey For more information click here.
Redis is an open-source, in-memory key-value store built for raw speed and versatility. It works equally well as…
Skype doesn't ship with Ubuntu by default it's a proprietary application owned by Microsoft and…
PHP is the backbone of the web. Frameworks like Laravel, WordPress, and Magento all run on…
Cybersecurity teams use OSINT to see what attackers can already see from public sources. In…
Legal OSINT is about collecting and analyzing publicly available information without bypassing privacy controls, breaking…
Developers building cross-platform .NET applications often rely on Mono Ubuntu Install to create a flexible…