new: implemented ble.recon (ref #74)

This commit is contained in:
evilsocket 2018-02-26 18:18:58 +01:00
parent 536614068c
commit 7fe6cd232c
10 changed files with 443 additions and 2 deletions

View file

@ -39,7 +39,7 @@ func NormalizeMac(mac string) string {
parts[i] = "0" + p
}
}
return strings.Join(parts, ":")
return strings.ToLower(strings.Join(parts, ":"))
}
func buildEndpointFromInterface(iface net.Interface) (*Endpoint, error) {