Enumerate S3 buckets via certstream, domain, or keywords
- First of all, credit to https://github.com/eth0izzle/bucket-stream for the certstream idea.
- Also, credit to all the vendor packages that made this tool possible.
- Not responsible for how you use this tool.
- Written in Go:
- It's faster than python.
- No dependency hell and version locks (ie python 3 and requirements.txt, etc); easier to deploy, static binary, etc.
- Better concurrency.
- Punycode support for internationalized domains (S3 doesn't allow internationalized buckets; so this app just notifies and skips (certstream) or exits (domain mode)).
- Domain mode so that you can test individual domains.
- New Keywords mode so that you can attempt enumeration based on keywords. Why is this useful? Sometimes organizations have shorthand names that they go by. If you wanted to test that shorthand name you could not do so previously; now you can by using this mode of enumeration.
- New Supports a list of domains now.
- Certstream mode so that you can enumerate s3 buckets in real time.
- Colorized output for visual grep.
- Currently generates over 28,000 permutations per domain and keyword (thanks to @jakewarren and @random-robbie for additions).
- Strong copyleft license.
slurp domain <-t|--target> google.comwill enumerate the S3 domains for a specific target.slurp keyword <-t|--target> linux,golang,pythonwill enumerate S3 buckets based on those 3 key words.slurp certstreamwill follow certstream and enumerate S3 buckets from each domain.permutations.jsonstores the permutations that are used by the program; they are in JSON format and loaded during execution this is required; it assumes a specific format per permutation:anything_you_want.%s; the ending.%sis required otherwise the AWS S3 URL will not be attached to it, and therefore no results will come from S3 enumeration. If you need flexible permutations then seePermutateDomainfunction.permutations-large.jsonis a much larger list that you can also use.
- Download from Releases section, or build yourself with
go buildorbuild.sh.- Make sure you clone to
$GOPATH/srcor you will get build errors!
- Make sure you clone to
- AGPLv3


