Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0xsha/CloudBrute
Awesome cloud enumerator
https://github.com/0xsha/CloudBrute
amazon bugbounty cloud cloud-security cloud-storage digitalocean google hacking infosec linode pentest-tool pentesting redteam s3-bucket vultr
Last synced: about 13 hours ago
JSON representation
Awesome cloud enumerator
- Host: GitHub
- URL: https://github.com/0xsha/CloudBrute
- Owner: 0xsha
- License: mit
- Created: 2020-09-09T08:31:01.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-03-14T08:15:18.000Z (8 months ago)
- Last Synced: 2024-04-19T08:20:33.088Z (7 months ago)
- Topics: amazon, bugbounty, cloud, cloud-security, cloud-storage, digitalocean, google, hacking, infosec, linode, pentest-tool, pentesting, redteam, s3-bucket, vultr
- Language: Go
- Homepage:
- Size: 286 KB
- Stars: 780
- Watchers: 15
- Forks: 124
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-bugbounty-tools - CloudBrute - Awesome cloud enumerator (Miscellaneous / Buckets)
- awesome-cloud-security - CloudBrute
- awesome-hacking-lists - 0xsha/CloudBrute - Awesome cloud enumerator (Go)
- awesome-cloud-security - 地址
- Awesome-Azure-Pentest - CloudBrute - Tool to find a cloud infrastructure of a company on top Cloud providers (Tools / Enumeration)
README
# CloudBrute
A tool to find a company (target) infrastructure, files, and apps on the top cloud providers (Amazon, Google, Microsoft, DigitalOcean, Alibaba, Vultr, Linode).
The outcome is useful for bug bounty hunters, red teamers, and penetration testers alike.The complete writeup is available. [here](https://web.archive.org/web/20210123180246/https://0xsha.io/posts/introducing-cloudbrute-wild-hunt-on-the-clouds)
## At a glance
![CloudBrute](./assets/cloudbrute_digram.png)
## Motivation
we are always thinking of something we can automate to make black-box security testing easier. We discussed this idea of creating a multiple platform cloud brute-force hunter.mainly to find open buckets, apps, and databases hosted on the clouds and possibly app behind proxy servers.
Here is the list issues on previous approaches we tried to fix:- separated wordlists
- lack of proper concurrency
- lack of supporting all major cloud providers
- require authentication or keys or cloud CLI access
- outdated endpoints and regions
- Incorrect file storage detection
- lack support for proxies (useful for bypassing region restrictions)
- lack support for user agent randomization (useful for bypassing rare restrictions)
- hard to use, poorly configured## Features
- Cloud detection (IPINFO API and Source Code)
- Supports all major providers
- Black-Box (unauthenticated)
- Fast (concurrent)
- Modular and easily customizable
- Cross Platform (windows, linux, mac)
- User-Agent Randomization
- Proxy Randomization (HTTP, Socks5)## Supported Cloud Providers
Microsoft:
- Storage
- AppsAmazon:
- Storage
- AppsGoogle:
- Storage
- AppsDigitalOcean:
- storageVultr:
- StorageLinode:
- StorageAlibaba:
- Storage## Version
1.0.0## Usage
Just download the latest [release](https://github.com/0xsha/CloudBrute/releases) for your operation system and follow the usage.To make the best use of this tool, you have to understand how to configure it correctly. When you open your downloaded version, there is a config folder, and there is a config.YAML file in there.
It looks like this
```yaml
providers: ["amazon","alibaba","amazon","microsoft","digitalocean","linode","vultr","google"] # supported providers
environments: [ "test", "dev", "prod", "stage" , "staging" , "bak" ] # used for mutations
proxytype: "http" # socks5 / http
ipinfo: "" # IPINFO.io API KEY
```For IPINFO API, you can register and get a free key at [IPINFO](https://ipinfo.io), the environments used to generate URLs, such as test-keyword.target.region and test.keyword.target.region, etc.
We provided some wordlist out of the box, but it's better to customize and minimize your wordlists (based on your recon) before executing the tool.
After setting up your API key, you are ready to use CloudBrute.
```
██████╗██╗ ██████╗ ██╗ ██╗██████╗ ██████╗ ██████╗ ██╗ ██╗████████╗███████╗
██╔════╝██║ ██╔═══██╗██║ ██║██╔══██╗██╔══██╗██╔══██╗██║ ██║╚══██╔══╝██╔════╝
██║ ██║ ██║ ██║██║ ██║██║ ██║██████╔╝██████╔╝██║ ██║ ██║ █████╗
██║ ██║ ██║ ██║██║ ██║██║ ██║██╔══██╗██╔══██╗██║ ██║ ██║ ██╔══╝
╚██████╗███████╗╚██████╔╝╚██████╔╝██████╔╝██████╔╝██║ ██║╚██████╔╝ ██║ ███████╗
╚═════╝╚══════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚══════╝
V 1.0.7
usage: CloudBrute [-h|--help] -d|--domain "" -k|--keyword ""
-w|--wordlist "" [-c|--cloud ""] [-t|--threads
] [-T|--timeout ] [-p|--proxy ""]
[-a|--randomagent ""] [-D|--debug] [-q|--quite]
[-m|--mode ""] [-o|--output ""]
[-C|--configFolder ""]Awesome Cloud Enumerator
Arguments:
-h --help Print help information
-d --domain domain
-k --keyword keyword used to generator urls
-w --wordlist path to wordlist
-c --cloud force a search, check config.yaml providers list
-t --threads number of threads. Default: 80
-T --timeout timeout per request in seconds. Default: 10
-p --proxy use proxy list
-a --randomagent user agent randomization
-D --debug show debug logs. Default: false
-q --quite suppress all output. Default: false
-m --mode storage or app. Default: storage
-o --output Output file. Default: out.txt
-C --configFolder Config path. Default: config```
for example
```
CloudBrute -d target.com -k target -m storage -t 80 -T 10 -w "./data/storage_small.txt"
```
please note -k keyword used to generate URLs, so if you want the full domain to be part of mutation, you have used it for both domain (-d) and keyword (-k) argumentsIf a cloud provider not detected or want force searching on a specific provider, you can use -c option.
```
CloudBrute -d target.com -k keyword -m storage -t 80 -T 10 -w -c amazon -o target_output.txt
```## Dev
- Clone the repo
- go build -o CloudBrute main.go
- go test internal## in action
[![asciicast](https://asciinema.org/a/QIYRNgJMKhGX3woUTB3kh0HmC.svg)](https://asciinema.org/a/QIYRNgJMKhGX3woUTB3kh0HmC)
## How to contribute
- Add a module or fix something and then pull request.
- Share it with whomever you believe can use it.
- Do the extra work and share your findings with community ♥## FAQ
##### How to make the best out of this tool?
Read the usage.##### I get errors; what should I do?
Make sure you read the usage correctly, and if you think you found a bug open an issue.##### When I use proxies, I get too many errors, or it's too slow?
It's because you use public proxies, use private and higher quality proxies. You can use [ProxyFor](https://github.com/0xsha/proxyfor) to verify the good proxies with your chosen provider.##### too fast or too slow ?
change -T (timeout) option to get best results for your run.## Credits
Inspired by every single repo listed [here](https://github.com/mxm0z/awesome-sec-s3) .