From b2eefacd699cd496f30cc831592d538e94d7a299 Mon Sep 17 00:00:00 2001 From: "wade@bindshell.net" Date: Wed, 23 Mar 2011 06:40:04 +0000 Subject: [PATCH] Fixes issue 248. The about window has been removed. git-svn-id: https://beef.googlecode.com/svn/trunk@801 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9 --- lib/ui/panel/index.html | 2 - public/javascript/ui/panel/AboutWindow.js | 53 ----------------------- public/javascript/ui/panel/PanelViewer.js | 1 - 3 files changed, 56 deletions(-) delete mode 100644 public/javascript/ui/panel/AboutWindow.js diff --git a/lib/ui/panel/index.html b/lib/ui/panel/index.html index 365730ab7..7957e2dc5 100644 --- a/lib/ui/panel/index.html +++ b/lib/ui/panel/index.html @@ -29,7 +29,6 @@ <%= script_tag 'ui/panel/zombiesTreeList.js' %> <%= script_tag 'ui/panel/ZombiesMgr.js' %> - <%= script_tag 'ui/panel/AboutWindow.js' %> <%= script_tag 'ui/panel/Logout.js' %> <%= script_tag 'ui/panel/WelcomeTab.js' %> @@ -41,7 +40,6 @@ <%= nonce_tag %> diff --git a/public/javascript/ui/panel/AboutWindow.js b/public/javascript/ui/panel/AboutWindow.js deleted file mode 100644 index f633d4a38..000000000 --- a/public/javascript/ui/panel/AboutWindow.js +++ /dev/null @@ -1,53 +0,0 @@ -AboutWindow = function() { - - about = " \ -

\ - BeEF, the Browser Exploitation Framework is a professional security \ - tool provided for lawful research and testing purposes. It allows \ - the experienced penetration tester or system administrator additional \ - attack vectors when assessing the posture of a target. The user of \ - BeEF will control which browser will launch which module and at \ - which target.\ -


\ - BeEF hooks one or more web browsers as beachheads for the launching \ - of directed modules in real-time. Each browser is likely to be \ - within a different security context. This provides additional vectors \ - that can be exploited by security professionals. \ -


\ - Authors:
\ - - Wade Alcorn (Founder, Architect)
\ - - Benjamin Mosse (Main developer) \ -

\ - "; - - var button = Ext.get('open-about-menu'); - var about_open = false; - - button.on('click', function(){ - if(!about_open) { - var content = new Ext.Panel({ - region: 'center', - padding: '3 3 3 3', - html: about - }); - - var win = new Ext.Window({ - title: 'About BeEF', - closable:true, - width:600, - height:250, - plain:true, - layout: 'border', - shadow: true, - items: [content] - }); - - win.on('close', function() { - about_open = false; - }); - - win.show(this); - about_open = true; - } - }) -}; \ No newline at end of file diff --git a/public/javascript/ui/panel/PanelViewer.js b/public/javascript/ui/panel/PanelViewer.js index 562c315b7..742ec1c06 100644 --- a/public/javascript/ui/panel/PanelViewer.js +++ b/public/javascript/ui/panel/PanelViewer.js @@ -28,7 +28,6 @@ Ext.onReady(function() { }); new DoLogout(); - new AboutWindow(); }); /*