指令碼 - 透過 mac 反查 IP

难德糊涂發表於2024-06-06
import scapy

def mac_to_ip(mac, net_scope):
    # mac 為 mac 地址
    # net_scope 為 網段

    pkg = Ether(dst=mac)/ARP(pdst=net_scopte)
    ans, unans = srp(pkg, verbose=False, timeout=1)

    for k, v in ans:
        if v.sprintf("%Ether.src%").lower() == mac.lower():
            return v.sprintf("%ARP.psrc%")

相關文章