Add logging for MAC vendor lookup process

This commit is contained in:
Yaro Kasear 2025-05-02 11:48:32 -05:00
parent ce437ca43c
commit 7ccddd89c5

View file

@ -323,6 +323,7 @@ def main():
def get_mac_vendor(mac): def get_mac_vendor(mac):
prefix = mac.upper()[0:8].replace(":", "-") prefix = mac.upper()[0:8].replace(":", "-")
print(f"[+] Looking up vendor for {prefix}...")
if prefix in vendor_cache: if prefix in vendor_cache:
return vendor_cache[prefix] return vendor_cache[prefix]
try: try: