2017-10-21 18:21:54 +02:00
2017-10-21 15:57:20 +02:00
2017-10-21 19:39:36 +02:00
2017-10-21 18:21:54 +02:00
2017-10-21 16:53:33 -07:00
2017-10-23 16:59:22 +02:00

S3 bucket scanner

Simple public s3 bucket scanner written in python

How it works

This script is a public s3 bucket scanner. It uses wordlist to test for existence of publicly open s3 buckets and lists their contents. Wordlist provided with it is just a PoC wordlist I've gathered from various subdomain enumeration lists.

Scanner supports two different modes:

  • simple wordlist scan where it check if there is a publicly accessible s3 bucket for every word in the wordlist
  • keyword scan where it uses the keyword in combination with the wordlist. Is uses the wordlist in three different combinations: {keyword}-{wordlist},{keyword}_{wordlist} and {keyword}{wordlist}

For example if we use the keyword nsa and the wordlist contains the word "backup" the script will test for:

nsa-backup
nsa_backup
nsabackup

Requirements

The only requirements for this to run is python's requests lib .

pip install -r requirements.txt

License

This project is licensed under the MIT License - see the LICENSE file for details

Description
No description provided
Readme MIT 2.7 MiB
Languages
Python 100%