Detect MAC Addresses? - via browser, without a plugin

后端 未结 2 1747
长发绾君心
长发绾君心 2021-01-16 10:42

For validation purposes, is there a way to detect a user\'s mac address as they\'re signing up on a webpage, for example? I\'d prefer a LAMP approach, but also open to ASP.N

2条回答
  •  死守一世寂寞
    2021-01-16 11:01

    I guess you could by reading the ARP cache of the underlying OS, assuming that the client and server are on the same network.

    However, using the MAC address for validation is under most circumstances a bad idea:

    • The MAC address can be easily spoofed. Many network drivers allow you to set the address to whatever you want.

    • The MAC address is link local. If there is at least one router between the server and the client, the server will see the closest routers MAC address.

提交回复
热议问题