From 36d02e0d9a62d6d2c730808f9b96556d235f2b57 Mon Sep 17 00:00:00 2001 From: Travis Clarke Date: Mon, 11 Feb 2019 20:59:28 -0800 Subject: [PATCH] v1.2.1 - support persisting recon results to MongoDB instance --- README.md | 6 +++--- docs/source/index.md | 6 +++--- s3recon/__init__.py | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 7c37f24..95c7c44 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,7 @@ $ s3recon "word-list.txt" --db ``` #### 3. Inspect the results. -Check the `results.json` output file to view the S3 buckets you have discovered! +Check the MongoDB database: `s3recon` collection: `hits` to view the S3 buckets you have discovered! ```bash $ mongo "s3recon" --quiet --eval 'db.hits.find({}, {"url": 1, "access": 1, "_id": 0}).limit(5)' @@ -185,7 +185,7 @@ environments: [] #### A: The database *host* and *port* can be configured by altering the `database` map in your `s3recon.yml` configuration file. -For example, to only search lines from the word-list *verbatim* (i.e. without modification) you can set this value to an empty array. +For example, `host` and `port` can be set directly inside the `database` map ```yaml # s3recon.yml @@ -196,7 +196,7 @@ database: #### Q: How do I use a database other than MongoDB? #### A: -At the moment only MongoDB is supported. +Sorry, at the moment only MongoDB is supported. ## Going Forward diff --git a/docs/source/index.md b/docs/source/index.md index 4740600..76763f1 100644 --- a/docs/source/index.md +++ b/docs/source/index.md @@ -136,7 +136,7 @@ $ s3recon "word-list.txt" --db ``` #### 3. Inspect the results. -Check the `results.json` output file to view the S3 buckets you have discovered! +Check the MongoDB database: `s3recon` collection: `hits` to view the S3 buckets you have discovered! ```bash $ mongo "s3recon" --quiet --eval 'db.hits.find({}, {"url": 1, "access": 1, "_id": 0}).limit(5)' @@ -204,7 +204,7 @@ environments: [] #### A: The database *host* and *port* can be configured by altering the `database` map in your `s3recon.yml` configuration file. -For example, to only search lines from the word-list *verbatim* (i.e. without modification) you can set this value to an empty array. +For example, `host` and `port` can be set directly inside the `database` map ```yaml # s3recon.yml @@ -215,7 +215,7 @@ database: #### Q: How do I use a database other than MongoDB? #### A: -At the moment only MongoDB is supported. +Sorry, at the moment only MongoDB is supported. ## Going Forward diff --git a/s3recon/__init__.py b/s3recon/__init__.py index 0b2f79d..a955fda 100644 --- a/s3recon/__init__.py +++ b/s3recon/__init__.py @@ -1 +1 @@ -__version__ = "1.1.3" +__version__ = "1.2.1"