Skip to content

Commit b4d9b1f

Browse files
author
ekultek
committed
edited the README for the installation methods
1 parent a62885b commit b4d9b1f

1 file changed

Lines changed: 30 additions & 4 deletions

File tree

README.md

Lines changed: 30 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ The new version of AutoSploit has a feature that allows you to set a proxy befor
1212
# Helpful links
1313

1414
- [Usage](https://github.com/NullArray/AutoSploit#usage)
15+
- [Installing](https://github.com/NullArray/AutoSploit#Installation)
1516
- [Dependencies](https://github.com/NullArray/AutoSploit#dependencies)
1617
- [User Manual](https://github.com/NullArray/AutoSploit/wiki)
1718
- [Extensive usage breakdown](https://github.com/NullArray/AutoSploit/wiki/Usage#usage-options)
@@ -21,15 +22,40 @@ The new version of AutoSploit has a feature that allows you to set a proxy befor
2122
- [Shoutouts](https://github.com/NullArray/AutoSploit#acknowledgements)
2223
- [Development](https://github.com/NullArray/AutoSploit#active-development)
2324
- [Discord server](https://discord.gg/9BeeZQk)
25+
26+
# Installation
2427

25-
## Usage
28+
Installing AutoSploit is very simple, you can find the latest stable release [here](https://github.com/NullArray/AutoSploit/releases/tag/2.0). You can also download the master branch as a [zip](https://github.com/NullArray/AutSploit/zipball/master) or [tarball](https://github.com/NullArray/AutSploit/tarball/master) or follow one of the below methods;
2629

27-
Clone the repo. Or deploy via Docker. Details for which can be found [here](https://github.com/NullArray/AutoSploit/tree/master/Docker)
30+
###### Cloning
2831

29-
`git clone https://github.com/NullArray/AutoSploit.git`
32+
```bash
33+
sudo -s << EOF
34+
git clone https://github.com/NullArray/Autosploit.git
35+
cd AutoSploit
36+
pip2 install -r requirements.txt
37+
python2 autosploit.py
38+
EOF
39+
```
3040

31-
Starting the program with `python autosploit.py` will open an AutoSploit terminal session. The options for which are as follows.
41+
###### Docker
3242

43+
```bash
44+
sudo -s << EOF
45+
git clone https://github.com/NullArray/AutoSploit.git
46+
cd AutoSploit/Docker
47+
docker network create -d bridge haknet
48+
docker run --network haknet --name msfdb -e POSTGRES_PASSWORD=s3cr3t -d postgres
49+
docker build -t autosploit .
50+
docker run -it --network haknet -p 80:80 -p 443:443 -p 4444:4444 autosploit
51+
EOF
52+
```
53+
54+
More information on running Docker can be found [here](https://github.com/NullArray/AutoSploit/tree/master/Docker)
55+
56+
## Usage
57+
58+
Starting the program with `python autosploit.py` will open an AutoSploit terminal session. The options for which are as follows.
3359
```
3460
1. Usage And Legal
3561
2. Gather Hosts

0 commit comments

Comments
 (0)