想得到远程PC的mac地址

时间:2009-07-07 13:35:38

标签: python python-3.x

我在python中有我的网页,我能够获得用户的IP地址,谁将访问我们的网页,我们想获得用户PC的mac地址,是否可以在python中,我们正在使用Linux PC,我们想在linux上使用它。

4 个答案:

答案 0 :(得分:5)

我有一个小的,已签名的Java Applet,它需要远程计算机上的Java 6运行时才能执行此操作。它使用getHardwareAddress()上的NetworkInterface方法获取MAC地址。我使用javascript来访问applet中的一个方法,该方法调用它并返回一个包含该地址的JSON对象。这会被填充到表单中的隐藏字段中,并与其余字段一起发布。

答案 1 :(得分:3)

from Active code

#!/usr/bin/env python

import ctypes
import socket
import struct

def get_macaddress(host):
    """ Returns the MAC address of a network host, requires >= WIN2K. """

    # Check for api availability
    try:
        SendARP = ctypes.windll.Iphlpapi.SendARP
    except:
        raise NotImplementedError('Usage only on Windows 2000 and above')

    # Doesn't work with loopbacks, but let's try and help.
    if host == '127.0.0.1' or host.lower() == 'localhost':
        host = socket.gethostname()

    # gethostbyname blocks, so use it wisely.
    try:
        inetaddr = ctypes.windll.wsock32.inet_addr(host)
        if inetaddr in (0, -1):
            raise Exception
    except:
        hostip = socket.gethostbyname(host)
        inetaddr = ctypes.windll.wsock32.inet_addr(hostip)

    buffer = ctypes.c_buffer(6)
    addlen = ctypes.c_ulong(ctypes.sizeof(buffer))
    if SendARP(inetaddr, 0, ctypes.byref(buffer), ctypes.byref(addlen)) != 0:
        raise WindowsError('Retreival of mac address(%s) - failed' % host)

    # Convert binary data into a string.
    macaddr = ''
    for intval in struct.unpack('BBBBBB', buffer):
        if intval > 15:
            replacestr = '0x'
        else:
            replacestr = 'x'
        macaddr = ''.join([macaddr, hex(intval).replace(replacestr, '')])

    return macaddr.upper()

if __name__ == '__main__':
    print 'Your mac address is %s' % get_macaddress('localhost')

答案 2 :(得分:1)

您可以访问的只是用户发送给您的内容。

MAC地址不是该数据的一部分。

答案 3 :(得分:0)

dpkt包是already mentioned在SO上。它允许解析TCP / IP数据包。不过,我还没有将它用于你的情况。