Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!--
In order for us to properly diagnose and troubleshoot your issue
we will need you to follow this issue template
-->

# Running information

<!-- Running detail, OS, arch, did you clone, etc -->
- What branch did you download?
- Clone, or docker run?
- What OS are you running?

# Exploit module information

<!-- We will need this information to determine if it is a metasploit issue or not -->
- What exploit was deployed?
- Was a session generated for the target?
- What version of metasploit are you running?

# Program information

<!-- Basic python information we will need -->
- Python version number?
- AutoSploit version number?
- Any console output that is relevant to the issue:
- Traceback (error) if any:

2 changes: 1 addition & 1 deletion Docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
shodan==1.7.7
requests==2.18.4
psutil==5.3.0