From 87e3262bae4911713bb1d4774d2fdb61c31c084f Mon Sep 17 00:00:00 2001 From: Wade Alcorn Date: Fri, 14 Sep 2012 21:36:50 +1000 Subject: [PATCH] Tidied up splash --- core/main/console/banners.rb | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/core/main/console/banners.rb b/core/main/console/banners.rb index 258efbf1b..cb460a0b2 100644 --- a/core/main/console/banners.rb +++ b/core/main/console/banners.rb @@ -40,12 +40,11 @@ module Banners def print_welcome_msg config = BeEF::Core::Configuration.instance version = config.get('beef.version') - print_info "Browser Exploitation Framework (BeEF)" - data = "Version: #{version}\n" - data += "Twitter: @beefproject\n" - data += "Website: http://beefproject.com\n" + print_info "Browser Exploitation Framework (BeEF) #{version}" + data = "Twit: @beefproject\n" + data += "Site: http://beefproject.com\n" data += "Blog: http://blog.beefproject.com\n" - data += "Help: run 'beef -h'\n" + data += "Wiki: https://github.com/beefproject/beef/wiki\n" print_more data end