Skip to content

Commit a5408c8

Browse files
author
ekultek
committed
merging the double install method into a single section
1 parent d6bccb0 commit a5408c8

File tree

1 file changed

+26
-27
lines changed

1 file changed

+26
-27
lines changed

README.md

Lines changed: 26 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,32 @@ docker run -it --network haknet -p 80:80 -p 443:443 -p 4444:4444 autosploit
5555
EOF
5656
```
5757

58+
On any Linux system the following should work;
59+
60+
```bash
61+
git clone https://github.com/NullArray/AutoSploit
62+
cd AutoSploit
63+
chmod +x install.sh
64+
./install.sh
65+
```
66+
67+
If you want to run AutoSploit on a macOS system, AutoSploit is compatible with macOS, however, you have to be inside a virtual environment for it to run successfully. To do this, do the following;
68+
69+
```bash
70+
sudo -s << '_EOF'
71+
pip2 install virtualenv --user
72+
git clone https://github.com/NullArray/AutoSploit.git
73+
virtualenv <PATH-TO-YOUR-ENV>
74+
source <PATH-TO-YOUR-ENV>/bin/activate
75+
cd <PATH-TO-AUTOSPLOIT>
76+
pip2 install -r requirements.txt
77+
chmod +x install.sh
78+
./install.sh
79+
python autosploit.py
80+
_EOF
81+
```
82+
83+
5884
More information on running Docker can be found [here](https://github.com/NullArray/AutoSploit/tree/master/Docker)
5985

6086
## Usage
@@ -123,33 +149,6 @@ misc arguments:
123149
--whitelist PATH only exploit hosts listed in the whitelist file
124150
```
125151

126-
## Installation
127-
128-
On any Linux system the following should work;
129-
130-
```bash
131-
git clone https://github.com/NullArray/AutoSploit
132-
cd AutoSploit
133-
chmod +x install.sh
134-
./install.sh
135-
```
136-
137-
If you want to run AutoSploit on a macOS system, AutoSploit is compatible with macOS, however, you have to be inside a virtual environment for it to run successfully. To do this, do the following;
138-
139-
```bash
140-
sudo -s << '_EOF'
141-
pip2 install virtualenv --user
142-
git clone https://github.com/NullArray/AutoSploit.git
143-
virtualenv <PATH-TO-YOUR-ENV>
144-
source <PATH-TO-YOUR-ENV>/bin/activate
145-
cd <PATH-TO-AUTOSPLOIT>
146-
pip2 install -r requirements.txt
147-
chmod +x install.sh
148-
./install.sh
149-
python autosploit.py
150-
_EOF
151-
```
152-
153152
## Dependencies
154153
_Note_: All dependencies should be installed using the above installation method, however, if you find they are not:
155154

0 commit comments

Comments
 (0)