17 lines
596 B
JavaScript
17 lines
596 B
JavaScript
//
|
|
// Copyright (c) 2006-2013 Wade Alcorn - wade@bindshell.net
|
|
// Browser Exploitation Framework (BeEF) - http://beefproject.com
|
|
// See the file 'doc/COPYING' for copying permission
|
|
//
|
|
|
|
/*
|
|
Sometimes there are timing issues and looks like beef_init
|
|
is not called at all (always in cross-domain situations,
|
|
for example calling the hook with jquery getScript,
|
|
or sometimes with event handler injections).
|
|
|
|
To fix this, we call again beef_init after 1 second.
|
|
Cheers to John Wilander that discussed this bug with me at OWASP AppSec Research Greece
|
|
antisnatchor
|
|
*/
|
|
setTimeout(beef_init, 1000); |