Merging in Mike's changes for msfweb

git-svn-id: file:///home/svn/framework3/trunk@4794 4d416f70-5f16-0410-b530-b9f4589650da
unstable
HD Moore 2007-04-28 18:15:40 +00:00
parent af8db5d3cd
commit ca1f4f5cdc
38 changed files with 360 additions and 690 deletions

View File

@ -10,10 +10,7 @@ class OptionsController < ApplicationController
def index
@force_reload = false
p params
p cookies
if (params[:style])
cookies[:style] = params[:style]
@force_reload = true

View File

@ -1,34 +1,34 @@
<!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" />
<script>
function get_cookie ( cookie_name ){
var results = document.cookie.match ( cookie_name + '=(.*?)(;|$)' );
if ( results )
return ( unescape ( results[1] ) );
else
return null;
}
var styleCheck = get_cookie("style");
var styleName = "default";
if (styleCheck)
styleName = get_cookie("style");
}
<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" />
<script>
function get_cookie ( cookie_name ) {
var results = document.cookie.match ( cookie_name + '=(.*?)(;|$)' );
if ( results )
return ( unescape ( results[1] ) );
else
return null;
}
var styleFile = "/stylesheets/skins/" + styleName + "/" + styleName + ".css";
document.writeln('<link rel="stylesheet" type="text/css" href="' + styleFile + '">'); // Overall stylesheet
document.writeln('<link rel="stylesheet" type="text/css" href="/stylesheets/window-themes/' + styleName + '/window.css">'); // Windowing stylesheet
var styleName = get_cookie("style");
</script>
<% ["prototype","effects","controls", "window", "application"].each do |js| %>
<%= javascript_include_tag js %><% end %>
</head>
if (styleName == null){
styleName = "default";
}
var styleFile = "/stylesheets/skins/" + styleName + "/" + styleName + ".css";
document.writeln('<link rel="stylesheet" type="text/css" href="' + styleFile + '">'); // Overall stylesheet
document.writeln('<link rel="stylesheet" type="text/css" href="/stylesheets/window-themes/' + styleName + '/window.css">'); // Windowing stylesheet
</script>
<% ["prototype","effects","controls", "window", "application"].each do |js| %>
<%= javascript_include_tag js %><% end %>
</head>
<body>
<div id="menuBar">
<ul>

View File

@ -18,7 +18,7 @@
<option value="empty">Choose a skin</option>
<%
sbase = File.join(Msf::Config::InstallRoot, "data", "msfweb", "public", "stylesheets", "skins")
sdirs = Dir.new(sbase).grep(/[^\.]+/)
sdirs = Dir.new(sbase).grep(/^[a-z]/i)
sdirs.each do |style|
sname = style.capitalize + " Style"
%>

View File

@ -1,79 +0,0 @@
/*
* Copyright (c) 2006 LMH <lmh[at]info-pull.com>
* Added to Metasploit under the terms of the Metasploit Framework License v1.2
* Additions Copyright (C) 2006-2007 Metasploit LLC
*/
html, body {
height: 100%;
width: 100%;
margin: 0px;
padding: 0px;
overflow: hidden;
}
body {
background: #444444 url(/images/banner.gif) fixed center no-repeat;
color: #FFFFFF;
font-size: 8pt;
font-family: Trebuchet, Sans, Arial, serif;
}
#menuBar {
height: 35px;
width: 100%;
background-color: #F4F4F4;
}
td.menuButton {
height: 33px;
/* width: 85px; */
color: #000000;
background-color: inherit;
padding-left: 5px;
padding-right: 10px;
}
td.menuButton:hover {
cursor: pointer;
color: #FFFFFF;
background-color: #316AC5;
}
td.menuButton img {
padding-right: 8px;
vertical-align: text-bottom;
}
.spacer {
height: 35px;
width: 1px;
background-color: #DDDDDD;
}
#maincontent {
position: relative;
min-height: 100%;
height: 100%;
}
.desktop-tip {
margin-top: 7em;
margin-left: 1em;
font-family: Trebuchet, Sans, Arial, serif;
font-size: 90%;
padding-left: 4em;
padding-right: 1em;
padding-top: 1em;
padding-bottom: 1em;
width: 400px;
clear: both;
color: #000;
background: #fff url(/images/help.png) no-repeat;
}
.env-info {
float: right;
border-left: 1px solid #ddd;
padding: 3px;
}

View File

@ -1,79 +1,81 @@
/*
* Copyright (c) 2007 Mike Whitehead <mwhite22[at]caledonian.ac.uk>
* Added to Metasploit under the terms of the Metasploit Framework License v1.2
* Additions Copyright (C) 2006-2007 Metasploit LLC
*/
* {
margin: 0;
padding : 0;
}
html,body {
overflow: hidden;
}
body {
background: #444444 url(images/banner.gif) fixed center no-repeat;
font-size: 8pt;
font-family: Trebuchet, Sans, Arial, serif;
}
body>div#menuBar {
position: relative;
top: 0px;
left: 0px;
}
#menuBar {
height: 35px;
width: 100%;
background-color: #F4F4F4;
overflow: hidden;
}
*:first-child+html #menuBar ul {
padding-top: 10px;
}
#menuBar ul {
list-style-type: none;
list-style-image: none;
}
#menuBar li {
padding-top: 10px;
padding-bottom: 10px;
display: inline;
}
.menuButton {
line-height: 35px;
max-width: 300px;
border-right: 1px solid #DDDDDD;
padding-left: 5px;
padding-right: 10px;
background-color: inherit;
color: #000000;
}
.menuButton:hover {
cursor: pointer;
max-width: 300px;
padding-top: 15px;
padding-bottom: 10px;
padding-left: 5px;
padding-right: 10px;
background-color: #316AC5;
color: #FFFFFF;
}
.menuButton img {
padding-right: 8px;
vertical-align: text-bottom;
}
div#mainContents {
padding: 0px;
/*
* Copyright (c) 2007 Mike Whitehead <mwhite22[at]caledonian.ac.uk>
* Added to Metasploit under the terms of the Metasploit Framework License v1.2
* Additions Copyright (C) 2006-2007 Metasploit LLC
*/
* {
margin: 0;
padding : 0;
}
html,body {
overflow: hidden;
height: 100%;
width: 100%;
}
body {
background: #444444 url(images/banner.gif) fixed center no-repeat;
font-size: 8pt;
font-family: Trebuchet, Sans, Arial, serif;
}
body>div#menuBar {
position: fixed;
top: 0px;
left: 0px;
}
#menuBar {
height: 35px;
width: 100%;
background-color: #F4F4F4;
overflow: hidden;
}
#menuBar ul {
list-style-type: none;
list-style-image: none;
}
/* IE7 Padding hack */
*:first-child+html #menuBar ul {
padding-top: 10px;
}
#menuBar li {
padding-top: 10px;
padding-bottom: 11px;
display: inline;
}
.menuButton {
line-height: 35px;
max-width: 300px;
border-right: 1px solid #DDDDDD;
padding-left: 5px;
padding-right: 10px;
background-color: inherit;
color: #000000;
}
.menuButton:hover {
cursor: pointer;
max-width: 300px;
padding-top: 15px;
padding-bottom: 10px;
padding-left: 5px;
padding-right: 10px;
background-color: #316AC5;
color: #FFFFFF;
}
.menuButton img {
padding-right: 8px;
vertical-align: text-bottom;
}
div#mainContents {
padding: 0px;
}

View File

@ -1,75 +1,74 @@
/*
* Copyright (c) 2007 Mike Whitehead <mwhite22[at]caledonian.ac.uk>
* Added to Metasploit under the terms of the Metasploit Framework License v1.2
* Additions Copyright (C) 2006-2007 Metasploit LLC
*/
html,body {
padding: 0px;
margin: 0px;
height: 100%;
width: 100%;
overflow: hidden;
}
body {
background: #000000 url(images/banner.jpg) fixed center no-repeat;
color: #FFFFFF;
font-size: 8pt;
font-family: Trebuchet, Sans, Arial, serif;
}
body>div#menuBar {
position: fixed;
}
#menuBar {
width: 100px;
margin: 0px;
background: url(images/menu-button-back.jpg) repeat-y;
overflow: auto;
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
}
#menuBar ul {
padding: 0px;
list-style-type: none;
list-style-image: none;
background: url(images/menu-button-back.jpg) repeat-y;
}
.menuButton {
max-width: 300px;
padding-top: 15px;
padding-bottom: 10px;
border-bottom: 1px solid #777777;
padding-left: 5px;
padding-right: 10px;
background-color: inherit;
color: #FFFFFF;
}
.menuButton:hover {
cursor: pointer;
max-width: 300px;
padding-top: 15px;
padding-bottom: 10px;
padding-left: 5px;
padding-right: 10px;
background: url(images/menu-button-back-hover.jpg) repeat-y;
color: #FFFFFF;
}
.menuButton img {
padding-right: 8px;
vertical-align: text-bottom;
}
div#mainContents {
padding: 0px;
}
/*
* Copyright (c) 2007 Mike Whitehead <mwhite22[at]caledonian.ac.uk>
* Added to Metasploit under the terms of the Metasploit Framework License v1.2
* Additions Copyright (C) 2006-2007 Metasploit LLC
*/
* {
margin: 0;
padding : 0;
}
html,body {
overflow: hidden;
height: 100%;
width: 100%;
}
body {
background: #000000 url(images/banner.jpg) fixed center no-repeat;
font-size: 8pt;
font-family: Trebuchet, Sans, Arial, serif;
}
body>div#menuBar {
position: fixed;
top: 0px;
bottom: 0px;
left: 0px;
}
#menuBar {
width: 100px;
background: url(images/menu-button-back.jpg) repeat-y;
overflow: hidden;
}
#menuBar ul {
list-style-type: none;
list-style-image: none;
background: url(images/menu-button-back.jpg) repeat-y;
}
.menuButton {
max-width: 300px;
padding-top: 15px;
padding-bottom: 10px;
border-bottom: 1px solid #777777;
padding-left: 5px;
padding-right: 10px;
background-color: inherit;
color: #FFFFFF;
}
.menuButton:hover {
cursor: pointer;
max-width: 300px;
padding-top: 15px;
padding-bottom: 10px;
padding-left: 5px;
padding-right: 10px;
background: url(images/menu-button-back-hover.jpg) repeat-y;
color: #FFFFFF;
}
.menuButton img {
padding-right: 8px;
vertical-align: text-bottom;
}
div#mainContents {
padding: 0px;
}

View File

@ -1,77 +1,82 @@
/*
* Copyright (c) 2007 Mike Whitehead <mwhite22[at]caledonian.ac.uk>
* Added to Metasploit under the terms of the Metasploit Framework License v1.2
* Additions Copyright (C) 2006-2007 Metasploit LLC
*/
html,body {
padding: 35px 0px 0px 0px;
margin: 0px;
height: 100%;
width: 100%;
overflow: hidden;
}
body {
background: #00354C url(images/banner.gif) fixed center no-repeat;
color: #FFFFFF;
font-size: 8pt;
font-family: Trebuchet, Sans, Arial, serif;
}
body>div#menuBar {
position: fixed;
}
#menuBar {
width: 100%;
margin: 0px;
background-color: #F4F4F4;
overflow: auto;
position: absolute;
top: 0px;
left: 0px;
}
#menuBar ul {
padding: 0px;
list-style-type: none;
list-style-image: none;
}
#menuBar li {
display: inline;
}
.menuButton {
max-width: 300px;
padding-top: 15px;
padding-bottom: 10px;
border-right: 1px solid #DDDDDD;
padding-left: 5px;
padding-right: 10px;
background-color: inherit;
color: #000000;
}
.menuButton:hover {
cursor: pointer;
max-width: 300px;
padding-top: 15px;
padding-bottom: 10px;
padding-left: 5px;
padding-right: 10px;
background-color: #316AC5;
color: #FFFFFF;
}
.menuButton img {
padding-right: 8px;
vertical-align: text-bottom;
}
div#mainContents {
padding: 0px;
}
/*
* Copyright (c) 2007 Mike Whitehead <mwhite22[at]caledonian.ac.uk>
* Added to Metasploit under the terms of the Metasploit Framework License v1.2
* Additions Copyright (C) 2006-2007 Metasploit LLC
*/
* {
margin: 0;
padding : 0;
}
html,body {
overflow: hidden;
height: 100%;
width: 100%;
}
body {
background: #00354C url(images/banner.gif) fixed center no-repeat;
font-size: 8pt;
font-family: Trebuchet, Sans, Arial, serif;
}
body>div#menuBar {
position: fixed;
top: 0px;
left: 0px;
}
#menuBar {
height: 35px;
width: 100%;
background-color: #F4F4F4;
overflow: hidden;
}
#menuBar ul {
padding: 0px;
list-style-type: none;
list-style-image: none;
}
/* IE7 Padding hack */
*:first-child+html #menuBar ul {
padding-top: 10px;
}
#menuBar li {
padding-top: 10px;
padding-bottom: 11px;
display: inline;
}
.menuButton {
line-height: 35px;
max-width: 300px;
border-right: 1px solid #DDDDDD;
padding-left: 5px;
padding-right: 10px;
background-color: inherit;
color: #000000;
}
.menuButton:hover {
cursor: pointer;
max-width: 300px;
padding-top: 15px;
padding-bottom: 10px;
padding-left: 5px;
padding-right: 10px;
background-color: #316AC5;
color: #FFFFFF;
}
.menuButton img {
padding-right: 8px;
vertical-align: text-bottom;
}
div#mainContents {
padding: 0px;
}

View File

@ -1,80 +1,96 @@
/*
* Copyright (c) 2007 Mike Whitehead <mwhite22[at]caledonian.ac.uk>
* Added to Metasploit under the terms of the Metasploit Framework License v1.2
* Additions Copyright (C) 2006-2007 Metasploit LLC
*/
html {
background: url(images/background.jpg) repeat;
}
html,body {
padding: 0px;
margin: 0px;
height: 100%;
width: 100%;
overflow: hidden;
}
body {
background: url(images/banner.gif) fixed center no-repeat;
color: #FFFFFF;
font-size: 8pt;
font-family: Trebuchet, Sans, Arial, serif;
}
body>div#menuBar {
position: fixed;
}
#menuBar {
height: 40px;
width: 100%;
margin: 0px;
background: url(images/menu-button-back.jpg) repeat-x;
overflow: hidden;
position: absolute;
top: 0px;
left: 0px;
}
#menuBar ul {
padding: 0px;
list-style-type: none;
list-style-image: none;
}
#menuBar li {
display: inline;
}
.menuButton {
max-width: 300px;
padding-top: 15px;
padding-bottom: 10px;
padding-left: 5px;
padding-right: 10px;
border-right: 1px solid #5C2A0F;
background-color: inherit;
color: #FFFFFF;
}
.menuButton:hover {
cursor: pointer;
max-width: 300px;
padding-left: 5px;
padding-right: 10px;
background: url(images/menu-button-back-hover.jpg) repeat-x;
color: #FFFFFF;
}
.menuButton img {
padding-right: 8px;
vertical-align: text-bottom;
}
div#mainContents {
padding: 0px;
}
/*
* Copyright (c) 2007 Mike Whitehead <mwhite22[at]caledonian.ac.uk>
* Added to Metasploit under the terms of the Metasploit Framework License v1.2
* Additions Copyright (C) 2006-2007 Metasploit LLC
*/
* {
margin: 0;
padding : 0;
}
html {
background: url(images/background.jpg) repeat;
}
html,body {
overflow: hidden;
height: 100%;
width: 100%;
}
body {
background: url(images/banner.gif) fixed center no-repeat;
font-size: 8pt;
font-family: Trebuchet, Sans, Arial, serif;
}
body>div#menuBar {
position: fixed;
top: 0px;
left: 0px;
}
#menuBar {
height: 40px;
width: 100%;
background: url(images/menu-button-back.jpg) repeat-x;
overflow: hidden;
}
#menuBar ul {
list-style-type: none;
list-style-image: none;
}
/*
* IE7 Padding hack (Start)
*/
*:first-child+html #menuBar ul {
padding-top: 10px;
}
*:first-child+html #menuBar li {
padding-top:11px;
padding-bottom:12px;
}
/*
* IE7 Padding Hack (End)
*/
#menuBar li {
padding-top: 13px;
padding-bottom: 12px;
display: inline;
}
.menuButton {
line-height: 40px;
max-width: 300px;
border-right: 1px solid #5C2A0F;
padding-left: 5px;
padding-right: 10px;
background-color: inherit;
color: #FFFFFF;
}
.menuButton:hover {
cursor: pointer;
max-width: 300px;
padding-top: 15px;
padding-bottom: 10px;
padding-left: 5px;
padding-right: 10px;
background: url(images/menu-button-back-hover.jpg) repeat-x;
color: #FFFFFF;
}
.menuButton img {
padding-right: 8px;
vertical-align: text-bottom;
}
div#mainContents {
padding: 0px;
}

View File

@ -1,146 +0,0 @@
.overlay_dialog {
background-color: #666666;
filter:alpha(opacity=60);
-moz-opacity: 0.6;
opacity: 0.6;
}
.overlay___invisible__ {
background-color: #666666;
filter:alpha(opacity=0);
-moz-opacity: 0;
opacity: 0;
}
.dialog_nw {
width: 9px;
height: 23px;
background: transparent url(default/top_left.gif) no-repeat 0 0;
}
.dialog_n {
background: transparent url(default/top_mid.gif) repeat-x 0 0;
height: 23px;
}
.dialog_ne {
width: 9px;
height: 23px;
background: transparent url(default/top_right.gif) no-repeat 0 0;
}
.dialog_e {
width: 2px;
background: transparent url(default/center_right.gif) repeat-y 0 0;
}
.dialog_w {
width: 2px;
background: transparent url(default/center_left.gif) repeat-y 0 0;
}
.dialog_sw {
width: 9px;
height: 19px;
background: transparent url(default/bottom_left.gif) no-repeat 0 0;
}
.dialog_s {
background: transparent url(default/bottom_mid.gif) repeat-x 0 0;
height: 19px;
}
.dialog_se {
width: 9px;
height: 19px;
background: transparent url(default/bottom_right.gif) no-repeat 0 0;
}
.dialog_sizer {
width: 9px;
height: 19px;
background: transparent url(default/sizer.gif) no-repeat 0 0;
cursor:se-resize;
}
.dialog_close {
width: 14px;
height: 14px;
background: transparent url(default/close.gif) no-repeat 0 0;
position:absolute;
top:5px;
left:8px;
cursor:pointer;
z-index:2000;
}
.dialog_minimize {
width: 14px;
height: 15px;
background: transparent url(default/minimize.gif) no-repeat 0 0;
position:absolute;
top:5px;
left:28px;
cursor:pointer;
z-index:2000;
}
.dialog_maximize {
width: 14px;
height: 15px;
background: transparent url(default/maximize.gif) no-repeat 0 0;
position:absolute;
top:5px;
left:49px;
cursor:pointer;
z-index:2000;
}
.dialog_title {
float:left;
height:14px;
font-size:12px;
text-align:center;
width:100%;
color:#000;
}
.dialog_content {
overflow:auto;
color: #DDD;
font-family: Tahoma, Arial, sans-serif;
font-size: 10px;
background-color:#123;
}
.top_draggable, .bottom_draggable {
cursor:move;
}
.status_bar {
font-size:12px;
}
.status_bar input{
font-size:12px;
}
/* DO NOT CHANGE THESE VALUES*/
.dialog {
display: block;
position: absolute;
}
.dialog table.table_window {
border-collapse: collapse;
border-spacing: 0;
width: 100%;
margin: 0px;
padding:0px;
}
.dialog table.table_window td , .dialog table.table_window th {
padding: 0;
}
.dialog .title_window {
-moz-user-select:none;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 187 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 68 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 187 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 201 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 49 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1014 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1012 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 556 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1023 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 138 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 201 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 358 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 149 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 357 B

View File

@ -1,124 +0,0 @@
/*
* Theme ported by L.M.H. <lmh@info-pull.com>
*/
.overlay_metasploit {
background-color: #85BBEF;
filter:alpha(opacity=60);
-moz-opacity: 0.6;
opacity: 0.6;
}
.metasploit_nw {
background: transparent url(metasploit/titlebar-left-shaded-focused.png) no-repeat 0 0;
width:10px;
height:23px;
}
.metasploit_n {
background: transparent url(metasploit/titlebar-mid-shaded-focused.png) repeat-x 0 0;
height:23px;
}
.metasploit_ne {
background: transparent url(metasploit/titlebar-right-shaded-focused.png) no-repeat 0 0;
width:10px;
height:23px;
}
.metasploit_w {
background: transparent url(metasploit/frame-left-focused.png) repeat-y top left;
width:5px;
}
.metasploit_e {
background: transparent url(metasploit/frame-right-focused.png) repeat-y top right;
width:5px;
}
.metasploit_sw {
background: transparent url(metasploit/frame-bottom-left-focused.png) no-repeat 0 0;
width:5px;
height:5px;
}
.metasploit_s {
background: transparent url(metasploit/frame-bottom-mid-focused.png) repeat-x 0 0;
height:5px;
}
.metasploit_se, .metasploit_sizer {
background: transparent url(metasploit/frame-bottom-right-focused.png) no-repeat 0 0;
width:5px;
height:5px;
}
.metasploit_sizer {
cursor:se-resize;
}
.metasploit_close {
width: 26px;
height: 23px;
background: transparent url(metasploit/button-close-focused.png) no-repeat 0 0;
position:absolute;
top:0px;
right:5px;
cursor:pointer;
z-index:1000;
}
.metasploit_minimize {
width: 26px;
height: 23px;
background: transparent url(metasploit/button-minimize-focused.png) no-repeat 0 0;
position:absolute;
top:0px;
right:26px;
cursor:pointer;
z-index:1000;
}
.metasploit_maximize {
width: 26px;
height: 23px;
background: transparent url(metasploit/button-maximize-focused.png) no-repeat 0 0;
position:absolute;
top:0px;
right:47px;
cursor:pointer;
z-index:1000;
}
.metasploit_title {
float:left;
height:14px;
font-size:12px;
text-align:center;
margin-top:2px;
width:100%;
color:#FFF;
}
.metasploit_content {
overflow:auto;
color: #444;
font-family: Trebuchet, Sans, Arial;
font-size: 14px;
background:#ddd;
}
/* FOR IE */
* html .metasploit_minimize {
background-color: transparent;
background-image: none;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="/stylesheets/window-themes/metasploit/button-minimize-focused.png", sizingMethod="crop");
}
* html .metasploit_maximize {
background-color: transparent;
background-image: none;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="/stylesheets/window-themes/metasploit/button-maximize-focused.png", sizingMethod="scale");
}
* html .metasploit_close {
background-color: transparent;
background-image: none;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="/stylesheets/window-themes/metasploit/button-close-focused.png", sizingMethod="crop");
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 317 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 203 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 202 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 144 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 137 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 146 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 136 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 136 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 150 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 185 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 148 B