Skip to content

Commit

Permalink
initial stable commit
Browse files Browse the repository at this point in the history
  • Loading branch information
clarketm committed Feb 4, 2019
1 parent ee99b03 commit 5b26283
Show file tree
Hide file tree
Showing 14 changed files with 257 additions and 209 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ endif

.PHONY: format
f format:
python -m black -l 110 .
python -m black .

.PHONY: docstring
docstring:
pyment -w ./api_tools
pyment -w ./s3recon
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
# [s3finder](https://s3finder.readthedocs.io/en/latest/)
# [s3recon](https://s3recon.readthedocs.io/en/latest/)

[![PyPi release](https://img.shields.io/pypi/v/s3finder.svg)](https://pypi.org/project/s3finder/)
[![Documentation Status](https://readthedocs.org/projects/s3finder/badge/?version=latest)](https://s3finder.readthedocs.io/en/latest/?badge=latest)
[![PyPi release](https://img.shields.io/pypi/v/s3recon.svg)](https://pypi.org/project/s3recon/)
[![Documentation Status](https://readthedocs.org/projects/s3recon/badge/?version=latest)](https://s3recon.readthedocs.io/en/latest/?badge=latest)

Amazon S3 bucket finder.
Amazon S3 bucket finder and crawler.

[Check out the s3finder docs](https://s3finder.readthedocs.io/en/latest/)
[Check out the s3recon docs](https://s3recon.readthedocs.io/en/latest/)

## Installation
WIP
```bash
$ pip install s3recon
```

## Usage
WIP



## License
Expand Down
53 changes: 0 additions & 53 deletions constants.py

This file was deleted.

7 changes: 4 additions & 3 deletions words.txt → data/words.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
walmart
amazon
kmart
bestbuy
google
apple
microsoft
uber
lyft
amazon
5 changes: 0 additions & 5 deletions s3finder.yml

This file was deleted.

3 changes: 0 additions & 3 deletions s3finder/__main__.py

This file was deleted.

128 changes: 0 additions & 128 deletions s3finder/s3finder.py

This file was deleted.

File renamed without changes.
3 changes: 3 additions & 0 deletions s3recon/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from s3recon.s3recon import cli

cli()
18 changes: 18 additions & 0 deletions s3recon/constants.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
private_key = "-"
private_text = "PRIVATE"
public_key = "+"
public_text = "PUBLIC"

format_list = [
"https://s3.{region}.amazonaws.com/{word}{sep}{env}",
"https://s3.{region}.amazonaws.com/{env}{sep}{word}",
"https://{word}{sep}{env}.s3.{region}.amazonaws.com",
"https://{env}{sep}{word}.s3.{region}.amazonaws.com",
]

useragent_list = [
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36",
"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36",
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36",
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/603.2.4 (KHTML, like Gecko) Version/10.1.1 Safari/603.2.4",
]
Loading

0 comments on commit 5b26283

Please sign in to comment.