-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #321 from NullArray/dev-beta
New Years Update. Happy new year everyone!
- Loading branch information
Showing
16 changed files
with
729 additions
and
366 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,23 @@ | ||
FROM kalilinux/kali-linux-docker | ||
|
||
RUN apt update && apt install -y postgresql \ | ||
apache2 \ | ||
python-pip \ | ||
python-dev \ | ||
build-essential \ | ||
git \ | ||
metasploit-framework | ||
RUN apt update \ | ||
&& apt install -y \ | ||
apache2 \ | ||
build-essential \ | ||
git \ | ||
metasploit-framework \ | ||
postgresql \ | ||
python-dev \ | ||
python-pip | ||
|
||
RUN git clone https://github.com/NullArray/AutoSploit.git \ | ||
&& pip install -r AutoSploit/requirements.txt | ||
|
||
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 | ||
|
||
ENTRYPOINT ["python", "autosploit.py"] | ||
#ENTRYPOINT ["bash"] | ||
# ENTRYPOINT ["bash"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Usage of AutoSploit for attacking targets without prior mutual consent is illegal in pretty much every sense of the word. It is the | ||
end user's responsibility to obey all applicable local, state, and federal laws. Developers assume no liability and are not responsible | ||
for any misuse or damage caused by this program or any component thereof. | ||
|
||
Developers do not encourage nor condone any illegal activity; | ||
|
||
In OffSec/RedTeam engagements it is important however to mind your operational security. With that in mind, please consider the following: | ||
|
||
- Use AutoSploit on a VPS through a proxy(chain) or Tor | ||
- Keep calm and wipe/data-poison the logs or use tools to do so | ||
- Never connect from your local IP address | ||
- Keep a low profile, AutoSploit is loud | ||
|
||
|
||
In closing, knowledge is not illegal and anybody that tells you learning is wrong is a fool. | ||
Get as much out of this program as we got from writing it. Remember though, common sense and a sense of ethics go a long way. | ||
|
||
Thank you. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import os | ||
import random | ||
|
||
VERSION = "2.2.3" | ||
VERSION = "3.0" | ||
|
||
|
||
def banner_1(line_sep="#--", space=" " * 30): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.