通过主机名识别Android设备


15

我们网络中的每个Android设备都具有主机名android_[some-hex-number].domain.local。我确实有一台设备请求10个IP地址(不同的MAC,但始终是相同的主机名)。有没有办法从该主机名获取IMEI或序列号?

我发现了有关主机名的其他信息:

但它们似乎都不适合。

PS:MAC地址全部来自“ InPro Comm ”。也许有办法从这一方面缩小范围?


6
AFAIK,十六进制数是ANDROID-ID,它是在首次启动设备时(或在恢复出厂设置后)随机生成的。因此,与设备,制造商或MAC地址不应有任何关系。
罗伯特

Answers:


3

如果net.hostname设备制造商在生产过程中未预先设置,则Android将使用它ANDROID_ID来生成唯一的android-XXXXXXXXXXXXXXXX主机名:

    // setup our unique device name
    if (TextUtils.isEmpty(SystemProperties.get("net.hostname"))) {
        String id = Settings.Secure.getString(context.getContentResolver(),
                Settings.Secure.ANDROID_ID);
        if (id != null && id.length() > 0) {
            String name = new String("android-").concat(id);
            SystemProperties.set("net.hostname", name);
        }
    }
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.