From 447f61c71b4876135b6614fc3d1ea84cdc270975 Mon Sep 17 00:00:00 2001 From: Wade Alcorn Date: Fri, 2 Nov 2012 14:00:44 +1000 Subject: [PATCH] Changed license header and stdout banner --- core/main/console/banners.rb | 28 +++++++++------------------- 1 file changed, 9 insertions(+), 19 deletions(-) diff --git a/core/main/console/banners.rb b/core/main/console/banners.rb index cb460a0b2..bdf2c72fa 100644 --- a/core/main/console/banners.rb +++ b/core/main/console/banners.rb @@ -1,17 +1,7 @@ # -# Copyright 2012 Wade Alcorn wade@bindshell.net -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. +# Copyright (c) 2006-2012 Wade Alcorn - wade@bindshell.net +# Browser Exploitation Framework (BeEF) - http://beefproject.com +# See the file 'doc/COPYING' for copying permission # module BeEF module Core @@ -46,6 +36,7 @@ module Banners data += "Blog: http://blog.beefproject.com\n" data += "Wiki: https://github.com/beefproject/beef/wiki\n" print_more data + print_info "Project Creator: " + "Wade Alcorn".red + " (@WadeAlcorn)" end # @@ -106,13 +97,12 @@ module Banners # def print_loaded_extensions extensions = BeEF::Extensions.get_loaded - print_info "#{extensions.size} extensions loaded:" + print_info "#{extensions.size} extensions enabled." output = '' - - - extensions.each do |key,ext| - output += "#{ext['name']}\n" - end + + #extensions.each do |key,ext| + # output += "#{ext['name']}\n" + #end print_more output end