Codice che riconosce il proprio pc

  • Creatore Discussione Creatore Discussione Shyson
  • Data di inizio Data di inizio

Shyson

Utente Attivo
19 Ago 2012
1.179
1
38
Ho questo codice che riconosce l'url di provenienza, dovrei modificarlo in modo che il codice deve identificare in modo univoco il mio mac. Si può fare?

PHP:
...
if (isset($_SERVER['HTTP_REFERER']) != "") {
  $from = parse_url($_SERVER['HTTP_REFERER']);
  $from = $from['host'];
}
else {
  $from = "";
} 
...
 
Ti incollo una risposta di stackoverflow perché potrei non essere così chiaro nel spiegare perché non è possibile prendere il mac del client:
Server IP

You can get the server IP address from $_SERVER['SERVER_ADDR'].

Server MAC address

For the MAC address, you could parse the output of netstat -ie in Linux, or ipconfig /all in Windows.

Client IP address

You can get the client IP from $_SERVER['REMOTE_ADDR']

Client MAC address

The client MAC address will not be available to you except in one special circumstance: if the client is on the same ethernet segment as the server.

So, if you are building some kind of LAN based system and your clients are on the same ethernet segment, then you could get the MAC address by parsing the output of arp -n (linux) or arp -a (windows).
 
Perché dici che non si può identificare in modo univoco il mio mac?
Ho varie sigle che lo identificano, si tratta solo di adattarli al codice (cosa che non so fare), es:

PHP:
Identificatore universale: 0D091393-0F4F-53A9-F4DF-7481BAF1A453      
N° di serie:C02FNAFPDH9W
Mac Address Ethernet: v5:0m:14:31:04:m6 
Mac Address Wireless: k9:ce:8f:0f:4c:64

Ovviamente li ho modificati
 

Discussioni simili