metasploit-framework/data/msfweb/app/views/layouts/msfweb.rhtml

31 lines
1.2 KiB
Plaintext

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Metasploit Framework Web Console <%=h ::Msf::Framework::Version %></title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta name="Author" content="Mike Whitehead (mwhite22[at]caledonian.ac.uk), Metasploit LLC" />
<meta name="Copyright" content="(c) 2007, Mike Whitehead (mwhite22[at]caledonian.ac.uk), (c) 2006-2007 Metasploit LLC" />
<% ["prototype","effects","controls","window","application","cookiecheck"].each do |js| %>
<%= javascript_include_tag js %><% end %>
<script>
document.writeln('<link rel="stylesheet" type="text/css" href="' + mainStyle + '">'); // MSFWeb main stylesheet
document.writeln('<link rel="stylesheet" type="text/css" href="' + windowStyle + '">'); // Window frame stylesheet
</script>
</head>
<body>
<div id="menuBar">
<%= render :partial => 'layouts/menu_bar' %>
</div>
<div id="maincontent">
<%= @content_for_layout %>
</div>
<script type="text/javascript">
run_tasks();
</script>
</body>
</html>