Skip to content

Commit dd1bf66

Browse files
committed
v1.2.4 update with improvements/drops PyPi
1 parent df82580 commit dd1bf66

8 files changed

+120
-151
lines changed

CHANGELOG.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
# Change Log
22
All notable changes to the Sandcastle script will be documented in this file.
33

4+
## 1.2.4 – 2017-05-28
5+
* Temporarily removed PyPi distribution channel
6+
* Shipping an updated bucket names wordlist
7+
* Script identifies potential matches and uses S3 CLI to check Read permissions
8+
49
## 1.2.3 – 2017-04-09
5-
- Due to PyPi issues, Sandcastle will not ship with a default `bucket-names.txt`.
6-
* The example `bucket-names.txt` can be downloaded from this repo
7-
* By default, Sandcastle searches for `bucket-names.txt` in the current directory
8-
* As previously, use the `-f` flag to specify a different input file
10+
- PyPi distribution info not applicable; please see above
911
- Removes "no match" display from Sandcastle script
1012

1113
## 1.2.2 – 2017-04-09

MANIFEST

-9
This file was deleted.

README.md

+17-9
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ The script takes a target name as the "stem" argument (e.g. `instacart`) and ite
2121
[...]
2222
```
2323
## Getting started
24-
Here's how to get started:
25-
1. Install with Pip: `pip install sandcastle`
24+
I've temporarily disabled Pip distribution. Here's how to get started:
25+
1. Clone this repo.
2626
2. Run `sandcastle.py` with a target name and input file (grab an example from this repo)
27-
3. Valid bucket permutations will be identified as "matches"
27+
3. Matching bucket permutations will be identified, and read permissions tested
2828

2929
```
3030
usage: sandcastle.py [-h] -t targetStem [-f inputFile]
@@ -39,12 +39,20 @@ arguments:
3939
```
4040

4141
```
42-
[+] Match: shopify-dev --> 403
43-
[+] Match: shopify-pics --> 403
44-
[+] Match: shopify-assets --> 403
45-
[+] Match: shopify-development --> 403
46-
[+] Match: shopify-content --> 403
47-
[+] Match: shopify-ops --> 200
42+
____ __ __ __
43+
/ __/__ ____ ___/ /______ ____ / /_/ /__
44+
_\ \/ _ `/ _ \/ _ / __/ _ `(_-</ __/ / -_)
45+
/___/\_,_/_//_/\_,_/\__/\_,_/___/\__/_/\__/
46+
47+
S3 bucket enumeration // release v1.2.4 // ysx
48+
49+
50+
[*] Commencing enumeration of 'shopify', reading 138 lines from 'bucket-names.txt'.
51+
52+
[+] Checking potential match: shopify-content --> 403
53+
54+
An error occurred (AccessDenied) when calling the ListObjects operation: Access Denied
55+
4856
```
4957

5058
### Status codes and testing

README.rst

-99
This file was deleted.

bucket-names.txt

+79-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,83 @@
1+
-vanity-production
2+
-vanity-staging
3+
-vanity-dev
4+
-vanity-development
5+
-media-uploads
6+
-datasets
7+
-dataset
8+
-website-assets
9+
-logos
10+
-avatars
11+
-backgrounds
12+
-share
13+
-matrix
14+
-s3-connector-test
15+
-media
16+
-terraform-binaries
17+
-consultant
18+
-consultants
19+
-consulting
20+
-consumer
21+
-contact
22+
-content
23+
-contracts
24+
-gemini
25+
-general
26+
-kerberos
27+
-keynote
28+
-loadbalancer
29+
-local
30+
-localhost
31+
-splunk
32+
-git
33+
-subversion
34+
-mercurial
35+
-design
36+
-package
37+
-packages
38+
-ios
39+
-android
40+
-betas
41+
-bugs
42+
-bugzilla
43+
-build
44+
-bulletins
45+
-corporate
146
-training
47+
-conference
48+
-conferencing
49+
-confidential
50+
-cloud
51+
-club
52+
-clubs
53+
-cluster
54+
-clusters
55+
-developer
56+
-developers
57+
-engineer
58+
-engineering
59+
-fileserv
60+
-fileserver
61+
-filestore
62+
-intranet
63+
-invalid
64+
-investor
65+
-investors
66+
-member
67+
-members
68+
-operations
69+
-products
70+
-profiles
71+
-project
72+
-projects
73+
-research
74+
-reseller
75+
-reserved
76+
-static
77+
-statistics
78+
-stats
79+
-reports
80+
-bugbounty
281
-bucket
382
-dev
483
-attachments
@@ -16,7 +95,6 @@
1695
-files
1796
-production
1897
-development
19-
-content
2098
-uploads
2199
-aws
22100
-marketing

sandcastle.py

+18-9
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,43 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3-
# Initialise – import and present
4-
import sys, os, requests
3+
4+
import sys, os, commands, requests
55
from argparse import ArgumentParser
6+
67
print """
78
____ __ __ __
89
/ __/__ ____ ___/ /______ ____ / /_/ /__
910
_\ \/ _ `/ _ \/ _ / __/ _ `(_-</ __/ / -_)
1011
/___/\_,_/_//_/\_,_/\__/\_,_/___/\__/_/\__/
1112
12-
S3 bucket enumeration // release v1.2.3 // ysx
13+
S3 bucket enumeration // release v1.2.4 // ysx
14+
1315
"""
14-
# Receive – target stem and argument check
1516
targetStem = ""
1617
inputFile = ""
18+
1719
parser = ArgumentParser()
1820
parser.add_argument("-t", "--target", dest="targetStem",
19-
help="Select a target stem name (e.g. 'instacart')", metavar="targetStem", required="True")
21+
help="Select a target stem name (e.g. 'shopify')", metavar="targetStem", required="True")
2022
parser.add_argument("-f", "--file", dest="inputFile",
2123
help="Select a bucket permutation file (default: bucket-names.txt)", default="bucket-names.txt", metavar="inputFile")
2224
args = parser.parse_args()
25+
2326
with open(args.inputFile, 'r') as f:
2427
bucketNames = [line.strip() for line in f]
2528
lineCount = len(bucketNames)
26-
print "[*] Commencing enumeration of target '%s', reading %i lines from '%s'." % (args.targetStem, lineCount, f.name)
27-
# Enumerate – standard permutations and status code analysis
29+
30+
print "[*] Commencing enumeration of '%s', reading %i lines from '%s'." % (args.targetStem, lineCount, f.name)
31+
2832
for name in bucketNames:
2933
r = requests.head("http://%s%s.s3.amazonaws.com" % (args.targetStem, name))
3034
if r.status_code != 404:
31-
print "[+] Match: %s%s --> %s" % (args.targetStem, name, r.status_code)
35+
# macOS, coming soon: os.system("notify Potential match found! %s%s: %s" % (args.targetStem, name, r.status_code))
36+
print "[+] Checking potential match: %s%s --> %s" % (args.targetStem, name, r.status_code)
37+
check = commands.getoutput("/usr/local/bin/aws s3 ls s3://%s%s" % (args.targetStem, name))
38+
print check
3239
else:
3340
sys.stdout.write('')
34-
print "[+] Enumeration of '%s' complete." % (args.targetStem)
41+
42+
print "[*] Enumeration of '%s' buckets complete." % (args.targetStem)
43+
# macOS, coming soon: os.system("notify Enumeration of %s buckets complete." % (args.targetStem))

setup.cfg

-2
This file was deleted.

setup.py

-18
This file was deleted.

0 commit comments

Comments
 (0)