From d3fb82e8dc313067f2a0afe260644eefe796b846 Mon Sep 17 00:00:00 2001 From: NotPike Date: Wed, 31 Jan 2018 13:27:45 -0800 Subject: [PATCH] Update autosploit.py Pull Request from @AriSaastamoinen --- autosploit.py | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/autosploit.py b/autosploit.py index f6ca6b9..22d5739 100644 --- a/autosploit.py +++ b/autosploit.py @@ -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()