From ef52595708090bcad768ecb732673258a8f125a5 Mon Sep 17 00:00:00 2001 From: ekultek Date: Tue, 27 Feb 2018 13:32:09 -0600 Subject: [PATCH 1/4] created an issue template for furture issues --- .github/ISSUE_TEMPLATE.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..ec4b632 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,27 @@ + + +# Running information + + + - What branch did you download? + - Clone, or docker run? + - What OS are you running? + +# Exploit module information + + + - What exploit was deployed? + - Was a session generated for the target? + - What version of metasploit are you running? + +# Program information + + + - Python version number? + - AutoSploit version number? + - Any console output that is relevant to the issue: + - Traceback (error) if any: + From 38122d223b72b20fcb4da3837adbcd33788e285f Mon Sep 17 00:00:00 2001 From: ekultek Date: Tue, 27 Feb 2018 13:32:30 -0600 Subject: [PATCH 2/4] fixed the docker file to download the correct requirements --- Docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docker/Dockerfile b/Docker/Dockerfile index 4881822..ae03a59 100644 --- a/Docker/Dockerfile +++ b/Docker/Dockerfile @@ -8,7 +8,7 @@ RUN apt update && apt install -y postgresql \ git \ metasploit-framework -RUN git clone https://github.com/NullArray/AutoSploit.git && pip install shodan blessings +RUN git clone https://github.com/NullArray/AutoSploit.git && pip install requests psutil COPY database.yml /root/.msf4/database.yml WORKDIR AutoSploit EXPOSE 80 443 4444 From 2a90d8901f0dc5c267c3237b419ef99f446c2736 Mon Sep 17 00:00:00 2001 From: ekultek Date: Tue, 27 Feb 2018 13:32:47 -0600 Subject: [PATCH 3/4] fixed the README to have the correct requirements --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0c61ce9..9aaa904 100644 --- a/README.md +++ b/README.md @@ -45,14 +45,14 @@ With each new module on it's own line. AutoSploit depends on the following Python2.7 modules. ``` -shodan -blessings +requests +psutil ``` Should you find you do not have these installed get them with pip like so. ```bash -pip install shodan blessings +pip install requests psutil ``` or From c7f05ca5e4bee6fc1f01a23cf46068b7af4e8c5f Mon Sep 17 00:00:00 2001 From: ekultek Date: Tue, 27 Feb 2018 13:33:06 -0600 Subject: [PATCH 4/4] fixed the req file to have the correct requirements --- requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 8473843..c9675f1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,2 @@ -shodan==1.7.7 requests==2.18.4 psutil==5.3.0