Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions autosploit.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,11 +289,18 @@ def main():
print "\n[" + t.green("+") + "]Welcome to AutoSploit. Please select an action."
print """

1. Usage 3. View Hosts 5. Quit
2. Gather Hosts 4. Exploit
"""
0. Ethics 2. Gather Hosts 4. Exploit
1. Usage 3. View Hosts 5. Quit

"""

action = raw_input("\n<" + t.cyan("AUTOSPLOIT") + ">$ ")
action = raw_input("\n<" + t.cyan("AUTOSPLOIT") + ">$ ")

#Pull Request from @AriSaastamoinen
if action == '0':
print "\"Consider if playing Xbox would be a wiser choice before proceeding...\""
time.sleep(1.5)
break

if action == '1':
usage()
Expand Down