Skip to content

Commit a4c13bd

Browse files
authored
Merge pull request #72 from NullArray/trivial
Updates that have more to do with the user
2 parents bc1994b + c7f05ca commit a4c13bd

File tree

4 files changed

+31
-5
lines changed

4 files changed

+31
-5
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!--
2+
In order for us to properly diagnose and troubleshoot your issue
3+
we will need you to follow this issue template
4+
-->
5+
6+
# Running information
7+
8+
<!-- Running detail, OS, arch, did you clone, etc -->
9+
- What branch did you download?
10+
- Clone, or docker run?
11+
- What OS are you running?
12+
13+
# Exploit module information
14+
15+
<!-- We will need this information to determine if it is a metasploit issue or not -->
16+
- What exploit was deployed?
17+
- Was a session generated for the target?
18+
- What version of metasploit are you running?
19+
20+
# Program information
21+
22+
<!-- Basic python information we will need -->
23+
- Python version number?
24+
- AutoSploit version number?
25+
- Any console output that is relevant to the issue:
26+
- Traceback (error) if any:
27+

Docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RUN apt update && apt install -y postgresql \
88
git \
99
metasploit-framework
1010

11-
RUN git clone https://github.com/NullArray/AutoSploit.git && pip install shodan blessings
11+
RUN git clone https://github.com/NullArray/AutoSploit.git && pip install requests psutil
1212
COPY database.yml /root/.msf4/database.yml
1313
WORKDIR AutoSploit
1414
EXPOSE 80 443 4444

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ With each new module on it's own line.
4545
AutoSploit depends on the following Python2.7 modules.
4646

4747
```
48-
shodan
49-
blessings
48+
requests
49+
psutil
5050
```
5151

5252
Should you find you do not have these installed get them with pip like so.
5353

5454
```bash
55-
pip install shodan blessings
55+
pip install requests psutil
5656
```
5757

5858
or

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
shodan==1.7.7
21
requests==2.18.4
32
psutil==5.3.0

0 commit comments

Comments
 (0)