Skip to content

Commit 36d02e0

Browse files
committed
v1.2.1 - support persisting recon results to MongoDB instance
1 parent 26e0e55 commit 36d02e0

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ $ s3recon "word-list.txt" --db
117117
```
118118

119119
#### 3. Inspect the results.
120-
Check the `results.json` output file to view the S3 buckets you have discovered!
120+
Check the MongoDB database: `s3recon` collection: `hits` to view the S3 buckets you have discovered!
121121

122122
```bash
123123
$ mongo "s3recon" --quiet --eval 'db.hits.find({}, {"url": 1, "access": 1, "_id": 0}).limit(5)'
@@ -185,7 +185,7 @@ environments: []
185185
#### A:
186186
The database *host* and *port* can be configured by altering the `database` map in your `s3recon.yml` configuration file.
187187

188-
For example, to only search lines from the word-list *verbatim* (i.e. without modification) you can set this value to an empty array.
188+
For example, `host` and `port` can be set directly inside the `database` map
189189
```yaml
190190
# s3recon.yml
191191
@@ -196,7 +196,7 @@ database:
196196

197197
#### Q: How do I use a database other than MongoDB?
198198
#### A:
199-
At the moment only MongoDB is supported.
199+
Sorry, at the moment only MongoDB is supported.
200200

201201
## Going Forward
202202

docs/source/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ $ s3recon "word-list.txt" --db
136136
```
137137

138138
#### 3. Inspect the results.
139-
Check the `results.json` output file to view the S3 buckets you have discovered!
139+
Check the MongoDB database: `s3recon` collection: `hits` to view the S3 buckets you have discovered!
140140

141141
```bash
142142
$ mongo "s3recon" --quiet --eval 'db.hits.find({}, {"url": 1, "access": 1, "_id": 0}).limit(5)'
@@ -204,7 +204,7 @@ environments: []
204204
#### A:
205205
The database *host* and *port* can be configured by altering the `database` map in your `s3recon.yml` configuration file.
206206

207-
For example, to only search lines from the word-list *verbatim* (i.e. without modification) you can set this value to an empty array.
207+
For example, `host` and `port` can be set directly inside the `database` map
208208
```yaml
209209
# s3recon.yml
210210
@@ -215,7 +215,7 @@ database:
215215

216216
#### Q: How do I use a database other than MongoDB?
217217
#### A:
218-
At the moment only MongoDB is supported.
218+
Sorry, at the moment only MongoDB is supported.
219219

220220
## Going Forward
221221

s3recon/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.1.3"
1+
__version__ = "1.2.1"

0 commit comments

Comments
 (0)