Skip to content

Commit d842769

Browse files
authored
Merge branch 'master' into dev-beta
2 parents d39cc7e + e046c8f commit d842769

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,22 @@ misc arguments:
149149
--whitelist PATH only exploit hosts listed in the whitelist file
150150
```
151151

152+
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;
153+
154+
```bash
155+
sudo -s << '_EOF'
156+
pip2 install virtualenv --user
157+
git clone https://github.com/NullArray/AutoSploit.git
158+
virtualenv <PATH-TO-YOUR-ENV>
159+
source <PATH-TO-YOUR-ENV>/bin/activate
160+
cd <PATH-TO-AUTOSPLOIT>
161+
pip2 install -r requirements.txt
162+
chmod +x install.sh
163+
./install.sh
164+
python autosploit.py
165+
_EOF
166+
```
167+
152168
## Dependencies
153169
_Note_: All dependencies should be installed using the above installation method, however, if you find they are not:
154170

lib/cmdline/cmd.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ def optparser():
2626

2727
parser = argparse.ArgumentParser(
2828
usage="python autosploit.py -[c|z|s|a] -[q] QUERY\n"
29-
"{spacer}[-C] WORKSPACE LHOST LPORT [-e] [--whitelist]\n"
29+
30+
"{spacer}[-C] WORKSPACE LHOST LPORT [-e] [--whitewash] PATH\n"
3031
"{spacer}[--ruby-exec] [--msf-path] PATH [-E] EXPLOIT-FILE-PATH\n"
3132
"{spacer}[--rand-agent] [--proxy] PROTO://IP:PORT [-P] AGENT".format(
3233
spacer=" " * 28

0 commit comments

Comments
 (0)