79580307

Date: 2025-04-18 01:37:25
Score: 1.5
Natty:
Report link
def mac_fmt(bssid):
    return "{:02x}:{:02x}:{:02x}:{:02x}:{:02x}:{:02x}".format(*bssid)

for ssid, bssid, channel, RSSI, authmode, hidden in ap.scan():
    mac = mac_fmt(bssid)
    print(f"BSSID: {mac}")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Helmut Doring