Any chance you could add SSL support, I've got my WP admin area encrypted with an SSL Cert except for 2 pesky javascript documents from your Security Plugin! I just added a few str_replace to the mrt_hd function to fix, but perhaps adding an option or auto-detect to the plugin might be beneficial.
<br />
function mrt_hd()<br />
{<br />
$siteurl = get_option('siteurl');?><br />
<script language="JavaScript" type="text/javascript" src="<?php echo str_replace('http:', 'https:',WP_PLUGIN_URL);?>/wp-security-scan/js/scripts.js"></script><br />
<script language="JavaScript" type="text/javascript" src="<?php echo str_replace('http:', 'https:',WP_PLUGIN_URL);?>/wp-security-scan/scripts.js"></script><br />
<script type="text/javascript"><br />
//window.onload=function(){enableTooltips()};<br />
</script><br />
<!--<link rel="stylesheet" type="text/css" href="<?php //echo WP_PLUGIN_URL;?>/plugins/wp-security-scan/style.css" />--><br />
<?php }<br />
?>
Otherwise, killer plugin! Thanks!