Fixes issue 248. The about window has been removed.
git-svn-id: https://beef.googlecode.com/svn/trunk@801 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
This commit is contained in:
@@ -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 %>
|
||||
<div id="header">
|
||||
<div class="right-menu">
|
||||
<a id='open-about-menu' href='#'>About</a>
|
||||
<a id='do-logout-menu' href='#'>Logout</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,53 +0,0 @@
|
||||
AboutWindow = function() {
|
||||
|
||||
about = " \
|
||||
<p> \
|
||||
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.\
|
||||
<p><br> \
|
||||
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. \
|
||||
<p><br> \
|
||||
<b>Authors:</b><br> \
|
||||
- Wade Alcorn (Founder, Architect)<br> \
|
||||
- Benjamin Mosse (Main developer) \
|
||||
</p> \
|
||||
";
|
||||
|
||||
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;
|
||||
}
|
||||
})
|
||||
};
|
||||
@@ -28,7 +28,6 @@ Ext.onReady(function() {
|
||||
});
|
||||
|
||||
new DoLogout();
|
||||
new AboutWindow();
|
||||
});
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user