6

我正在尝试对 iPhone 进行一些接近检测,但我需要以编程方式获取它们的蓝牙MAC 地址。有谁知道怎么做?

我假设蓝牙已激活,但没有设备与 iPhone 配对。

4

3 回答 3

6

在我可以使用的所有设备上,以下规则似乎都适用 - iPhone wifi MAC 地址比 iPhone 蓝牙 MAC 地址大一 - iPad wifi MAC 地址比 iPad 蓝牙 MAC 地址小一。

如果人们在他们的 iPhone 或 iPad 上检查这一点会很有帮助,这样我们就可以增加对理论的信心。我检查了一些 iPhone4、iPhone3 和 iPad1 设备。

您可以通过打开设置 - 常规 - 关于并查看“Wi-Fi地址”和“蓝牙”来检查它

如果理论正确,下面的合法代码将检索你的蓝牙mac地址:

#include <sys/types.h>
#include <sys/socket.h>
#include <ifaddrs.h>
#include <netdb.h>
#include <net/if_dl.h>
#include <string.h>

#if ! defined(IFT_ETHER)
#define IFT_ETHER 0x6/* Ethernet CSMACD */
#endif

void doMacTest() {
    BOOL                        success;
    struct ifaddrs *            addrs;
    const struct ifaddrs *      cursor;
    const struct sockaddr_dl *  dlAddr;
    const uint8_t *             base;

    // We look for interface "en0" on iPhone

    success = getifaddrs(&addrs) == 0;
    if (success) {
        cursor = addrs;
        while (cursor != NULL) {
            if ( (cursor->ifa_addr->sa_family == AF_LINK)
                  && (((const struct sockaddr_dl *) cursor->ifa_addr)->sdl_type == IFT_ETHER)
                  && (strcmp(cursor->ifa_name, "en0") == 0)) {
                dlAddr = (const struct sockaddr_dl *) cursor->ifa_addr;
                base = (const uint8_t *) &dlAddr->sdl_data[dlAddr->sdl_nlen];

                if (dlAddr->sdl_alen == 6) {
                    fprintf(stderr, ">>>             WIFI MAC ADDRESS: %02x:%02x:%02x:%02x:%02x:%02x\n", base[0], base[1], base[2], base[3], base[4], base[5]);
                    fprintf(stderr, ">>> IPHONE BLUETOOTH MAC ADDRESS: %02x:%02x:%02x:%02x:%02x:%02x\n", base[0], base[1], base[2], base[3], base[4], base[5]-1);
                    fprintf(stderr, ">>>   IPAD BLUETOOTH MAC ADDRESS: %02x:%02x:%02x:%02x:%02x:%02x\n", base[0], base[1], base[2], base[3], base[4], base[5]+1);
                } else {
                    fprintf(stderr, "ERROR - len is not 6");
                }
            }
            cursor = cursor->ifa_next;
        }
        freeifaddrs(addrs);
    }

}
于 2011-09-27T09:15:54.590 回答
4

没有公共 API 可以获取此信息。

如果这是一个内部或越狱应用程序,您可以通过liblockdown.dylibkLockdownBluetoothAddressKey获取密钥的值

于 2010-06-04T03:05:18.357 回答
0

我的 iPhone4 iOS 5.0.1 的 MAC 地址按以下顺序比较它们的最后一位数字:

63 = Bluetooth
64 = WiFi

iPad2 v5.0.1 was:

0D = Bluetooth
0E = WiFi

iPod-Touch 第二代 iOS 4.2.1 完全不同。

??.FC = WiFi
xx.04 = Bluetooth
于 2011-11-29T12:10:25.640 回答