increased friendly console output

git-svn-id: https://beef.googlecode.com/svn/trunk@1298 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
This commit is contained in:
wade@bindshell.net
2011-09-17 13:32:54 +00:00
parent 0362c536e5
commit 23dd67a63f
2 changed files with 8 additions and 3 deletions

1
beef
View File

@@ -107,5 +107,6 @@ if config.get("beef.extension.console.shell.enable") == true
rescue Interrupt
end
else
print_info 'BeEF server started (press control+c to stop)'
http_hook_server.start
end

View File

@@ -38,9 +38,13 @@ module Banners
# Prints BeEF's welcome message
#
def print_welcome_msg
config = BeEF::Core::Configuration.instance
version = config.get('beef.version')
print_info "Version: #{version} - Run 'svn update' to update to the latest version."
config = BeEF::Core::Configuration.instance
version = config.get('beef.version')
print_info "Browser Exploitation Framework (BeEF)"
print_more "Version #{version}"
print_more "Site http://beefproject.com"
print_more "Run 'svn update' to update to the latest revision."
print_info "BeEF server starting..."
end
#