35 lines
873 B
HTML
35 lines
873 B
HTML
<!--
|
|
Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
|
|
Browser Exploitation Framework (BeEF) - https://beefproject.com
|
|
See the file 'doc/COPYING' for copying permission
|
|
-->
|
|
<html>
|
|
<head>
|
|
|
|
<title>BeEF Control Panel</title>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
|
|
|
<%= script_tag 'ext-base.js' %>
|
|
<%= script_tag 'ext-all.js' %>
|
|
<%= script_tag_min 'web_ui_all.js' %>
|
|
<%= script_tag 'vis.js/vis.min.js' %>
|
|
<%= stylesheet_tag 'ext-all.css' %>
|
|
<%= stylesheet_tag 'base.css' %>
|
|
</head>
|
|
|
|
<body>
|
|
<%= nonce_tag %>
|
|
<div id="header">
|
|
<div class="left-menu" id="header-right">
|
|
</div>
|
|
<div class="right-menu">
|
|
<img src="<%= base_path %>/media/images/favicon.png" />
|
|
BeEF <%= BeEF::Core::Configuration.instance.get('beef.version') %> |
|
|
<a id='do-logout-menu' href='#'>Logout</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|