├── README.md ├── oui.h └── valora.ino /README.md: -------------------------------------------------------------------------------- 1 | # VALORA - WiFi Tracker Confuser 2 | 3 | This project is a little Arduino sketch for [ESP8266](https://github.com/esp8266/Arduino) enabled devices. It generates a stream of 802.11 probe requests with random source MAC address and random SSID. Its purpose is to confuse WiFi tracking systems, which are used in stores, e.g. for indoor positioning or client tracking in shopping malls. 4 | 5 | The software was only tested on the ESP8266 embedded in the [2016 Area41 Security Conference Badge](http://area41.io/badge/). However, it should work as well on any [NodeMcu](http://nodemcu.com/index_en.html), which is available for as less as 5$. 6 | 7 | _Update:_ the sketch works without modification on NodeMcu. 8 | -------------------------------------------------------------------------------- /oui.h: -------------------------------------------------------------------------------- 1 | static const byte oui[][3] = { 2 | {0x00,0x04,0x20}, // Slim Devices, Inc. 3 | {0x00,0x04,0x4b}, // NVIDIA 4 | {0x00,0x0e,0x8c}, // Siemens AG A&D ET 5 | {0x00,0x0e,0x8e}, // SparkLAN Communications, Inc. 6 | {0x00,0x10,0x40}, // INTERMEC CORPORATION 7 | {0x00,0x16,0xeb}, // Intel Corporate 8 | {0x00,0x18,0x8d}, // Nokia Danmark A/S 9 | {0x00,0x1b,0x1b}, // Siemens AG, 10 | {0x00,0x22,0x43}, // AzureWave Technology Inc. 11 | {0x00,0x26,0xb4}, // Ford Motor Company 12 | {0x00,0x26,0xcc}, // Nokia Danmark A/S 13 | {0x00,0x27,0x09}, // Nintendo Co., Ltd. 14 | {0x00,0x28,0xf8}, // Intel Corporate 15 | {0x00,0x34,0xda}, // LG Electronics (Mobile Communications) 16 | {0x00,0x37,0x6d}, // Murata Manufacturing Co., Ltd. 17 | {0x00,0x5a,0x13}, // HUAWEI TECHNOLOGIES CO.,LTD 18 | {0x00,0x87,0x01}, // Samsung Electronics Co.,Ltd 19 | {0x00,0x98,0x08}, // Vendor not found 20 | {0x00,0x9a,0xcd}, // HUAWEI TECHNOLOGIES CO.,LTD 21 | {0x00,0xa0,0xf8}, // Zebra Technologies Inc 22 | {0x00,0xae,0xfa}, // Murata Manufacturing Co., Ltd. 23 | {0x00,0xc0,0xa8}, // GVC CORPORATION 24 | {0x00,0xcd,0xfe}, // Apple, Inc. 25 | {0x00,0xe3,0xb2}, // Samsung Electronics Co.,Ltd 26 | {0x00,0xec,0x0a}, // Xiaomi Communications Co Ltd 27 | {0x00,0xee,0xbd}, // HTC Corporation 28 | {0x00,0xf4,0xb9}, // Apple, Inc. 29 | {0x02,0x07,0xc8}, // Vendor not found 30 | {0x02,0x29,0xc6}, // Vendor not found 31 | {0x02,0x65,0x17}, // Vendor not found 32 | {0x02,0x87,0x70}, // Vendor not found 33 | {0x02,0x93,0x5f}, // Vendor not found 34 | {0x02,0xa0,0xe7}, // Vendor not found 35 | {0x02,0xa2,0x54}, // Vendor not found 36 | {0x02,0xb8,0x4c}, // Vendor not found 37 | {0x04,0x02,0x1f}, // HUAWEI TECHNOLOGIES CO.,LTD 38 | {0x04,0xc2,0x3e}, // HTC Corporation 39 | {0x04,0xdb,0x56}, // Apple, Inc. 40 | {0x04,0xe5,0x36}, // Apple, Inc. 41 | {0x04,0xf7,0xe4}, // Apple, Inc. 42 | {0x06,0x12,0xbb}, // Vendor not found 43 | {0x06,0x13,0xfb}, // Vendor not found 44 | {0x06,0x20,0x09}, // Vendor not found 45 | {0x06,0x23,0x1a}, // Vendor not found 46 | {0x06,0x2d,0x6e}, // Vendor not found 47 | {0x06,0x45,0x45}, // Vendor not found 48 | {0x06,0x4f,0x38}, // Vendor not found 49 | {0x06,0x74,0xb8}, // Vendor not found 50 | {0x06,0x94,0xde}, // Vendor not found 51 | {0x06,0xa9,0x19}, // Vendor not found 52 | {0x06,0xc7,0xb2}, // Vendor not found 53 | {0x06,0xd0,0xac}, // Vendor not found 54 | {0x06,0xd3,0x6c}, // Vendor not found 55 | {0x06,0xd6,0x6f}, // Vendor not found 56 | {0x06,0xf6,0xdb}, // Vendor not found 57 | {0x06,0xf9,0x70}, // Vendor not found 58 | {0x08,0x21,0xef}, // Samsung Electronics Co.,Ltd 59 | {0x08,0x3d,0x88}, // Samsung Electronics Co.,Ltd 60 | {0x08,0x70,0x45}, // Apple, Inc. 61 | {0x08,0xec,0xa9}, // Samsung Electronics Co.,Ltd 62 | {0x08,0xee,0x8b}, // Samsung Electronics Co.,Ltd 63 | {0x0a,0x02,0x1f}, // Vendor not found 64 | {0x0a,0x0d,0x7e}, // Vendor not found 65 | {0x0a,0x25,0xd9}, // Vendor not found 66 | {0x0a,0x2d,0x94}, // Vendor not found 67 | {0x0a,0x34,0xa7}, // Vendor not found 68 | {0x0a,0x75,0x1d}, // Vendor not found 69 | {0x0a,0x7a,0xd8}, // Vendor not found 70 | {0x0a,0x84,0x6c}, // Vendor not found 71 | {0x0a,0x89,0x10}, // Vendor not found 72 | {0x0c,0x60,0x1f}, // Vendor not found 73 | {0x0c,0x77,0x1a}, // Apple, Inc. 74 | {0x0c,0xb3,0x19}, // Samsung Electronics Co.,Ltd 75 | {0x0c,0xd7,0x46}, // Apple, Inc. 76 | {0x0e,0x08,0x1e}, // Vendor not found 77 | {0x0e,0x37,0x45}, // Vendor not found 78 | {0x0e,0x4a,0x99}, // Vendor not found 79 | {0x0e,0x4b,0xb8}, // Vendor not found 80 | {0x0e,0x7a,0x15}, // Vendor not found 81 | {0x0e,0x8a,0xae}, // Vendor not found 82 | {0x0e,0x8d,0x4c}, // Vendor not found 83 | {0x0e,0xa3,0x0e}, // Vendor not found 84 | {0x0e,0xad,0x17}, // Vendor not found 85 | {0x0e,0xcf,0x18}, // Vendor not found 86 | {0x0e,0xdf,0x20}, // Vendor not found 87 | {0x0e,0xf5,0xec}, // Vendor not found 88 | {0x0e,0xff,0x95}, // Vendor not found 89 | {0x10,0x1c,0x0c}, // Apple, Inc. 90 | {0x10,0x66,0x75}, // Vendor not found 91 | {0x10,0x9a,0xdd}, // Apple, Inc. 92 | {0x10,0xa5,0xd0}, // Murata Manufacturing Co., Ltd. 93 | {0x10,0xae,0x60}, // Private 94 | {0x12,0x06,0x90}, // Vendor not found 95 | {0x12,0x07,0x1d}, // Vendor not found 96 | {0x12,0x1f,0x9d}, // Vendor not found 97 | {0x12,0x2d,0xb1}, // Vendor not found 98 | {0x12,0x5f,0x52}, // Vendor not found 99 | {0x12,0x73,0x38}, // Vendor not found 100 | {0x12,0x80,0x96}, // Vendor not found 101 | {0x12,0xb6,0xdf}, // Vendor not found 102 | {0x12,0xc7,0xda}, // Vendor not found 103 | {0x12,0xca,0x70}, // Vendor not found 104 | {0x12,0xd6,0x9d}, // Vendor not found 105 | {0x12,0xe5,0x77}, // Vendor not found 106 | {0x14,0x1f,0x78}, // Samsung Electronics Co.,Ltd 107 | {0x14,0x32,0xd1}, // Samsung Electronics Co.,Ltd 108 | {0x14,0x5a,0x05}, // Apple, Inc. 109 | {0x14,0x8f,0xc6}, // Apple, Inc. 110 | {0x14,0x99,0xe2}, // Apple, Inc. 111 | {0x14,0x9a,0x10}, // Microsoft Corporation 112 | {0x14,0xb4,0x84}, // Samsung Electronics Co.,Ltd 113 | {0x14,0xcc,0x20}, // TP-LINK TECHNOLOGIES CO.,LTD. 114 | {0x14,0xdd,0xa9}, // ASUSTek COMPUTER INC. 115 | {0x16,0x02,0xea}, // Vendor not found 116 | {0x16,0x19,0x57}, // Vendor not found 117 | {0x16,0x2f,0x8d}, // Vendor not found 118 | {0x16,0x41,0xd6}, // Vendor not found 119 | {0x16,0x4b,0x38}, // Vendor not found 120 | {0x16,0x53,0x43}, // Vendor not found 121 | {0x16,0x6d,0x4b}, // Vendor not found 122 | {0x16,0x6f,0x24}, // Vendor not found 123 | {0x16,0x6f,0x39}, // Vendor not found 124 | {0x16,0x99,0x6e}, // Vendor not found 125 | {0x16,0xaf,0x79}, // Vendor not found 126 | {0x16,0xd4,0xd7}, // Vendor not found 127 | {0x16,0xea,0x26}, // Vendor not found 128 | {0x16,0xf7,0x32}, // Vendor not found 129 | {0x16,0xfe,0x87}, // Vendor not found 130 | {0x18,0x1e,0xb0}, // Samsung Electronics Co.,Ltd 131 | {0x18,0x3a,0x2d}, // Samsung Electronics Co.,Ltd 132 | {0x18,0x65,0x90}, // Apple, Inc. 133 | {0x18,0x9e,0xfc}, // Apple, Inc. 134 | {0x18,0xaf,0x61}, // Apple, Inc. 135 | {0x18,0xd2,0x76}, // HUAWEI TECHNOLOGIES CO.,LTD 136 | {0x1a,0x14,0x43}, // Vendor not found 137 | {0x1a,0x18,0xa7}, // Vendor not found 138 | {0x1a,0x1d,0x03}, // Vendor not found 139 | {0x1a,0x34,0x18}, // Vendor not found 140 | {0x1a,0x6f,0x63}, // Vendor not found 141 | {0x1a,0x70,0x89}, // Vendor not found 142 | {0x1a,0x76,0x24}, // Vendor not found 143 | {0x1a,0x7d,0x1f}, // Vendor not found 144 | {0x1a,0x98,0x1a}, // Vendor not found 145 | {0x1a,0x9e,0xca}, // Vendor not found 146 | {0x1a,0xa3,0xfa}, // Vendor not found 147 | {0x1a,0xb1,0xc1}, // Vendor not found 148 | {0x1a,0xb4,0xd0}, // Vendor not found 149 | {0x1a,0xb6,0xbe}, // Vendor not found 150 | {0x1a,0xd2,0x35}, // Vendor not found 151 | {0x1a,0xdb,0x58}, // Vendor not found 152 | {0x1a,0xdf,0x22}, // Vendor not found 153 | {0x1a,0xe7,0x9d}, // Vendor not found 154 | {0x1c,0x23,0x2c}, // Samsung Electronics Co.,Ltd 155 | {0x1c,0x39,0x47}, // COMPAL INFORMATION (KUNSHAN) CO., LTD. 156 | {0x1c,0x3e,0x84}, // Hon Hai Precision Ind. Co.,Ltd. 157 | {0x1c,0xe6,0x2b}, // Apple, Inc. 158 | {0x1e,0x07,0xf6}, // Vendor not found 159 | {0x1e,0x0e,0x2b}, // Vendor not found 160 | {0x1e,0x16,0xb4}, // Vendor not found 161 | {0x1e,0x17,0x99}, // Vendor not found 162 | {0x1e,0x1e,0x1f}, // Vendor not found 163 | {0x1e,0x21,0xa2}, // Vendor not found 164 | {0x1e,0x47,0xa4}, // Vendor not found 165 | {0x1e,0x4a,0x39}, // Vendor not found 166 | {0x1e,0x58,0x30}, // Vendor not found 167 | {0x1e,0x65,0x1d}, // Vendor not found 168 | {0x1e,0x67,0x65}, // Vendor not found 169 | {0x1e,0x82,0xd5}, // Vendor not found 170 | {0x1e,0x8c,0x83}, // Vendor not found 171 | {0x1e,0x9b,0x74}, // Vendor not found 172 | {0x1e,0x9d,0x0f}, // Vendor not found 173 | {0x1e,0x9f,0x39}, // Vendor not found 174 | {0x1e,0xa7,0xe7}, // Vendor not found 175 | {0x1e,0xbd,0x04}, // Vendor not found 176 | {0x1e,0xc8,0x9b}, // Vendor not found 177 | {0x1e,0xe7,0xfc}, // Vendor not found 178 | {0x1e,0xf1,0xfd}, // Vendor not found 179 | {0x20,0x08,0xed}, // HUAWEI TECHNOLOGIES CO.,LTD 180 | {0x20,0x2d,0x07}, // Samsung Electronics Co.,Ltd 181 | {0x20,0x33,0x44}, // Vendor not found 182 | {0x20,0x6e,0x9c}, // Samsung Electronics Co.,Ltd 183 | {0x20,0xa2,0xe4}, // Apple, Inc. 184 | {0x22,0x16,0xcc}, // Vendor not found 185 | {0x22,0x1b,0x6e}, // Vendor not found 186 | {0x22,0x28,0xa4}, // Vendor not found 187 | {0x22,0x42,0x39}, // Vendor not found 188 | {0x22,0x56,0xbd}, // Vendor not found 189 | {0x22,0x80,0x79}, // Vendor not found 190 | {0x22,0x89,0xf9}, // Vendor not found 191 | {0x22,0x91,0xe1}, // Vendor not found 192 | {0x22,0x91,0xef}, // Vendor not found 193 | {0x22,0xa4,0x02}, // Vendor not found 194 | {0x22,0xb0,0x1c}, // Vendor not found 195 | {0x22,0xe7,0x89}, // Vendor not found 196 | {0x22,0xfa,0xf5}, // Vendor not found 197 | {0x24,0x4b,0x03}, // Samsung Electronics Co.,Ltd 198 | {0x24,0x92,0x0e}, // Samsung Electronics Co.,Ltd 199 | {0x24,0xda,0x9b}, // Motorola Mobility LLC, a Lenovo Company 200 | {0x24,0xdb,0xed}, // Samsung Electronics Co.,Ltd 201 | {0x24,0xdf,0x6a}, // HUAWEI TECHNOLOGIES CO.,LTD 202 | {0x24,0xfd,0x52}, // Liteon Technology Corporation 203 | {0x26,0x0e,0x18}, // Vendor not found 204 | {0x26,0x13,0x3f}, // Vendor not found 205 | {0x26,0x17,0x25}, // Vendor not found 206 | {0x26,0x1e,0x4d}, // Vendor not found 207 | {0x26,0x31,0x43}, // Vendor not found 208 | {0x26,0x36,0x99}, // Vendor not found 209 | {0x26,0x38,0x2b}, // Vendor not found 210 | {0x26,0x43,0xb3}, // Vendor not found 211 | {0x26,0x50,0x22}, // Vendor not found 212 | {0x26,0x57,0x8a}, // Vendor not found 213 | {0x26,0x66,0xda}, // Vendor not found 214 | {0x26,0x6a,0xd1}, // Vendor not found 215 | {0x26,0x7b,0xbd}, // Vendor not found 216 | {0x26,0x81,0x6e}, // Vendor not found 217 | {0x26,0x8a,0x4a}, // Vendor not found 218 | {0x26,0x95,0x7d}, // Vendor not found 219 | {0x26,0xaa,0xb7}, // Vendor not found 220 | {0x26,0xab,0x21}, // Vendor not found 221 | {0x26,0xbb,0xc0}, // Vendor not found 222 | {0x26,0xe4,0x0b}, // Vendor not found 223 | {0x26,0xfb,0x6a}, // Vendor not found 224 | {0x28,0x16,0xad}, // Intel Corporate 225 | {0x28,0x3f,0x69}, // Sony Mobile Communications AB 226 | {0x28,0x5a,0xeb}, // Apple, Inc. 227 | {0x28,0xa1,0x83}, // ALPS ELECTRIC CO.,LTD. 228 | {0x28,0xb2,0xbd}, // Intel Corporate 229 | {0x28,0xba,0xb5}, // Samsung Electronics Co.,Ltd 230 | {0x28,0xcf,0xe9}, // Apple, Inc. 231 | {0x28,0xe0,0x2c}, // Apple, Inc. 232 | {0x28,0xe1,0x4c}, // Apple, Inc. 233 | {0x28,0xe7,0xcf}, // Apple, Inc. 234 | {0x28,0xf0,0x76}, // Apple, Inc. 235 | {0x2a,0x3b,0x8f}, // Vendor not found 236 | {0x2a,0x42,0x3c}, // Vendor not found 237 | {0x2a,0x67,0xcd}, // Vendor not found 238 | {0x2a,0x7c,0xd4}, // Vendor not found 239 | {0x2a,0x87,0xd9}, // Vendor not found 240 | {0x2a,0xa5,0x32}, // Vendor not found 241 | {0x2a,0xcc,0x5a}, // Vendor not found 242 | {0x2a,0xfb,0x08}, // Vendor not found 243 | {0x2c,0x0e,0x3d}, // SAMSUNG ELECTRO-MECHANICS(THAILAND) 244 | {0x2c,0x59,0x8a}, // LG Electronics (Mobile Communications) 245 | {0x2c,0x8a,0x72}, // HTC Corporation 246 | {0x2c,0xa8,0x35}, // RIM 247 | {0x2c,0xae,0x2b}, // Samsung Electronics Co.,Ltd 248 | {0x2e,0x34,0x80}, // Vendor not found 249 | {0x2e,0x37,0x0c}, // Vendor not found 250 | {0x2e,0x4c,0x2a}, // Vendor not found 251 | {0x2e,0x54,0xb5}, // Vendor not found 252 | {0x2e,0x74,0xc8}, // Vendor not found 253 | {0x2e,0x8f,0xdd}, // Vendor not found 254 | {0x2e,0x96,0x18}, // Vendor not found 255 | {0x2e,0xa4,0x4c}, // Vendor not found 256 | {0x2e,0xd2,0xea}, // Vendor not found 257 | {0x2e,0xeb,0xc9}, // Vendor not found 258 | {0x30,0x07,0x4d}, // SAMSUNG ELECTRO-MECHANICS(THAILAND) 259 | {0x30,0x0d,0x43}, // Microsoft Mobile Oy 260 | {0x30,0x5a,0x3a}, // ASUSTek COMPUTER INC. 261 | {0x30,0x63,0x6b}, // Apple, Inc. 262 | {0x30,0x74,0x96}, // HUAWEI TECHNOLOGIES CO.,LTD 263 | {0x30,0x75,0x12}, // Sony Mobile Communications AB 264 | {0x30,0x85,0xa9}, // ASUSTek COMPUTER INC. 265 | {0x30,0x96,0xfb}, // Samsung Electronics Co.,Ltd 266 | {0x30,0xc7,0xae}, // Samsung Electronics Co.,Ltd 267 | {0x32,0x08,0x32}, // Vendor not found 268 | {0x32,0x18,0x1b}, // Vendor not found 269 | {0x32,0x1c,0x18}, // Vendor not found 270 | {0x32,0x48,0xb5}, // Vendor not found 271 | {0x32,0x4a,0xf6}, // Vendor not found 272 | {0x32,0x60,0x1f}, // Vendor not found 273 | {0x32,0x61,0xcc}, // Vendor not found 274 | {0x32,0x6c,0xc9}, // Vendor not found 275 | {0x32,0x73,0xe2}, // Vendor not found 276 | {0x32,0x88,0x8b}, // Vendor not found 277 | {0x32,0xb5,0x58}, // Vendor not found 278 | {0x32,0xc2,0x2e}, // Vendor not found 279 | {0x32,0xd2,0xe8}, // Vendor not found 280 | {0x32,0xda,0xe1}, // Vendor not found 281 | {0x32,0xdc,0x08}, // Vendor not found 282 | {0x34,0x14,0x5f}, // Samsung Electronics Co.,Ltd 283 | {0x34,0x23,0xba}, // SAMSUNG ELECTRO-MECHANICS(THAILAND) 284 | {0x34,0x8a,0x7b}, // Samsung Electronics Co.,Ltd 285 | {0x34,0xa3,0x95}, // Apple, Inc. 286 | {0x34,0xe6,0xad}, // Intel Corporate 287 | {0x36,0x0b,0x31}, // Vendor not found 288 | {0x36,0x2c,0xd2}, // Vendor not found 289 | {0x36,0x43,0x3f}, // Vendor not found 290 | {0x36,0x57,0xfa}, // Vendor not found 291 | {0x36,0x5f,0x94}, // Vendor not found 292 | {0x36,0x68,0x21}, // Vendor not found 293 | {0x36,0x6f,0xfc}, // Vendor not found 294 | {0x36,0x9b,0x72}, // Vendor not found 295 | {0x36,0xab,0x6e}, // Vendor not found 296 | {0x36,0xac,0x69}, // Vendor not found 297 | {0x36,0xb3,0xa9}, // Vendor not found 298 | {0x36,0xc7,0xb2}, // Vendor not found 299 | {0x36,0xd0,0x88}, // Vendor not found 300 | {0x36,0xd8,0x72}, // Vendor not found 301 | {0x36,0xdb,0xc0}, // Vendor not found 302 | {0x36,0xe2,0x70}, // Vendor not found 303 | {0x36,0xec,0x7e}, // Vendor not found 304 | {0x36,0xef,0x35}, // Vendor not found 305 | {0x36,0xf4,0x0e}, // Vendor not found 306 | {0x36,0xff,0x91}, // Vendor not found 307 | {0x38,0x25,0x6b}, // Microsoft Mobile Oy 308 | {0x38,0x2d,0xe8}, // Samsung Electronics Co.,Ltd 309 | {0x38,0x48,0x4c}, // Apple, Inc. 310 | {0x38,0xaa,0x3c}, // SAMSUNG ELECTRO MECHANICS CO., LTD. 311 | {0x38,0xca,0xda}, // Apple, Inc. 312 | {0x38,0xf2,0x3e}, // Microsoft Mobile Oy 313 | {0x3a,0x11,0x37}, // Vendor not found 314 | {0x3a,0x19,0xce}, // Vendor not found 315 | {0x3a,0x1b,0x13}, // Vendor not found 316 | {0x3a,0x2e,0xc8}, // Vendor not found 317 | {0x3a,0x3b,0xd0}, // Vendor not found 318 | {0x3a,0x6c,0x02}, // Vendor not found 319 | {0x3a,0x7c,0x17}, // Vendor not found 320 | {0x3a,0x7c,0xf9}, // Vendor not found 321 | {0x3a,0xa3,0x5e}, // Vendor not found 322 | {0x3a,0xb3,0x7e}, // Vendor not found 323 | {0x3a,0xd8,0xf3}, // Vendor not found 324 | {0x3a,0xeb,0xf6}, // Vendor not found 325 | {0x3a,0xfa,0x22}, // Vendor not found 326 | {0x3c,0x05,0x18}, // Samsung Electronics Co.,Ltd 327 | {0x3c,0x15,0xc2}, // Apple, Inc. 328 | {0x3c,0x83,0x75}, // Microsoft Corporation 329 | {0x3c,0xd0,0xf8}, // Apple, Inc. 330 | {0x3c,0xe0,0x72}, // Apple, Inc. 331 | {0x3e,0x15,0x12}, // Vendor not found 332 | {0x3e,0x1f,0xf4}, // Vendor not found 333 | {0x3e,0x25,0x50}, // Vendor not found 334 | {0x3e,0x56,0x74}, // Vendor not found 335 | {0x3e,0x6c,0xec}, // Vendor not found 336 | {0x3e,0x6d,0xaf}, // Vendor not found 337 | {0x3e,0x7a,0x2e}, // Vendor not found 338 | {0x3e,0x7b,0x43}, // Vendor not found 339 | {0x3e,0x7f,0x73}, // Vendor not found 340 | {0x3e,0x99,0x78}, // Vendor not found 341 | {0x3e,0x9c,0xf7}, // Vendor not found 342 | {0x3e,0xa2,0x75}, // Vendor not found 343 | {0x3e,0xbc,0x8e}, // Vendor not found 344 | {0x3e,0xe3,0x19}, // Vendor not found 345 | {0x3e,0xe4,0xb5}, // Vendor not found 346 | {0x40,0x0e,0x85}, // SAMSUNG ELECTRO-MECHANICS(THAILAND) 347 | {0x40,0x40,0xa7}, // Sony Mobile Communications AB 348 | {0x40,0x4e,0x36}, // HTC Corporation 349 | {0x40,0xb3,0x95}, // Apple, Inc. 350 | {0x40,0xb8,0x37}, // Sony Mobile Communications AB 351 | {0x40,0xd3,0xae}, // Samsung Electronics Co.,Ltd 352 | {0x40,0xf3,0x08}, // Murata Manufacturing Co., Ltd. 353 | {0x42,0x18,0xdf}, // Vendor not found 354 | {0x42,0x2a,0x8a}, // Vendor not found 355 | {0x42,0x3b,0x70}, // Vendor not found 356 | {0x42,0x46,0x8f}, // Vendor not found 357 | {0x42,0x4a,0x3e}, // Vendor not found 358 | {0x42,0x63,0xb6}, // Vendor not found 359 | {0x42,0x7f,0x0f}, // Vendor not found 360 | {0x42,0xa9,0xa6}, // Vendor not found 361 | {0x42,0xae,0xca}, // Vendor not found 362 | {0x42,0xb2,0x94}, // Vendor not found 363 | {0x42,0xbb,0xdc}, // Vendor not found 364 | {0x42,0xbd,0x26}, // Vendor not found 365 | {0x42,0xc1,0x34}, // Vendor not found 366 | {0x42,0xc5,0x04}, // Vendor not found 367 | {0x42,0xec,0x47}, // Vendor not found 368 | {0x44,0x00,0x10}, // Apple, Inc. 369 | {0x44,0x2a,0x60}, // Apple, Inc. 370 | {0x44,0x6d,0x6c}, // Samsung Electronics Co.,Ltd 371 | {0x44,0x6e,0xe5}, // HUAWEI TECHNOLOGIES CO.,LTD 372 | {0x44,0x78,0x3e}, // Samsung Electronics Co.,Ltd 373 | {0x44,0x85,0x00}, // Intel Corporate 374 | {0x44,0xc3,0x46}, // HUAWEI TECHNOLOGIES CO.,LTD 375 | {0x46,0x08,0x8b}, // Vendor not found 376 | {0x46,0x27,0x95}, // Vendor not found 377 | {0x46,0x2e,0xfc}, // Vendor not found 378 | {0x46,0x3b,0x97}, // Vendor not found 379 | {0x46,0x4a,0xc0}, // Vendor not found 380 | {0x46,0x4e,0x18}, // Vendor not found 381 | {0x46,0x55,0x62}, // Vendor not found 382 | {0x46,0x6d,0xc7}, // Vendor not found 383 | {0x46,0x7e,0x91}, // Vendor not found 384 | {0x46,0x8a,0x21}, // Vendor not found 385 | {0x46,0x8e,0x96}, // Vendor not found 386 | {0x46,0x97,0x52}, // Vendor not found 387 | {0x46,0xa7,0xf7}, // Vendor not found 388 | {0x46,0xb6,0x97}, // Vendor not found 389 | {0x46,0xd3,0x06}, // Vendor not found 390 | {0x46,0xea,0xe8}, // Vendor not found 391 | {0x46,0xf1,0xcc}, // Vendor not found 392 | {0x48,0x13,0x7e}, // Samsung Electronics Co.,Ltd 393 | {0x48,0x27,0xea}, // Samsung Electronics Co.,Ltd 394 | {0x48,0x50,0x73}, // Microsoft Corporation 395 | {0x48,0x5a,0x3f}, // WISOL 396 | {0x48,0x5d,0x60}, // AzureWave Technology Inc. 397 | {0x48,0x86,0xe8}, // Microsoft Corporation 398 | {0x48,0xbf,0x6b}, // Apple, Inc. 399 | {0x48,0xdb,0x50}, // HUAWEI TECHNOLOGIES CO.,LTD 400 | {0x4a,0x30,0x0e}, // Vendor not found 401 | {0x4a,0x3f,0xa3}, // Vendor not found 402 | {0x4a,0x44,0x26}, // Vendor not found 403 | {0x4a,0x6c,0x9d}, // Vendor not found 404 | {0x4a,0x6c,0xea}, // Vendor not found 405 | {0x4a,0x75,0x42}, // Vendor not found 406 | {0x4a,0xa1,0xce}, // Vendor not found 407 | {0x4a,0xa4,0x9b}, // Vendor not found 408 | {0x4a,0xb3,0x2f}, // Vendor not found 409 | {0x4a,0xbd,0x1d}, // Vendor not found 410 | {0x4a,0xc9,0x39}, // Vendor not found 411 | {0x4a,0xc9,0x94}, // Vendor not found 412 | {0x4a,0xca,0xb2}, // Vendor not found 413 | {0x4a,0xd4,0x3a}, // Vendor not found 414 | {0x4a,0xd4,0xcf}, // Vendor not found 415 | {0x4a,0xd5,0x50}, // Vendor not found 416 | {0x4a,0xde,0x9b}, // Vendor not found 417 | {0x4a,0xe7,0x4b}, // Vendor not found 418 | {0x4a,0xec,0xc4}, // Vendor not found 419 | {0x4a,0xf2,0xac}, // Vendor not found 420 | {0x4a,0xf8,0xb8}, // Vendor not found 421 | {0x4c,0x0f,0x6e}, // Hon Hai Precision Ind. Co.,Ltd. 422 | {0x4c,0x49,0xe3}, // Xiaomi Communications Co Ltd 423 | {0x4c,0x66,0x41}, // SAMSUNG ELECTRO-MECHANICS(THAILAND) 424 | {0x4c,0x74,0x03}, // BQ 425 | {0x4c,0x7c,0x5f}, // Apple, Inc. 426 | {0x4c,0xa5,0x6d}, // Samsung Electronics Co.,Ltd 427 | {0x4c,0xb1,0x99}, // Apple, Inc. 428 | {0x4e,0x00,0xa8}, // Vendor not found 429 | {0x4e,0x0b,0xf6}, // Vendor not found 430 | {0x4e,0x49,0xfe}, // Vendor not found 431 | {0x4e,0x4d,0xbd}, // Vendor not found 432 | {0x4e,0x4f,0xcc}, // Vendor not found 433 | {0x4e,0x51,0xc4}, // Vendor not found 434 | {0x4e,0x53,0x08}, // Vendor not found 435 | {0x4e,0x76,0xec}, // Vendor not found 436 | {0x4e,0xa0,0x05}, // Vendor not found 437 | {0x4e,0xb3,0xbe}, // Vendor not found 438 | {0x4e,0xdf,0x2a}, // Vendor not found 439 | {0x4e,0xe8,0xbc}, // Vendor not found 440 | {0x4e,0xeb,0xf8}, // Vendor not found 441 | {0x50,0x04,0xb8}, // HUAWEI TECHNOLOGIES CO.,LTD 442 | {0x50,0x9e,0xa7}, // Samsung Electronics Co.,Ltd 443 | {0x52,0x00,0x99}, // Vendor not found 444 | {0x52,0x05,0xb1}, // Vendor not found 445 | {0x52,0x16,0x0f}, // Vendor not found 446 | {0x52,0x1a,0x74}, // Vendor not found 447 | {0x52,0x3c,0x6b}, // Vendor not found 448 | {0x52,0x44,0xa2}, // Vendor not found 449 | {0x52,0x48,0xab}, // Vendor not found 450 | {0x52,0x4b,0xae}, // Vendor not found 451 | {0x52,0x97,0xa7}, // Vendor not found 452 | {0x52,0x9d,0x89}, // Vendor not found 453 | {0x52,0xa7,0x3d}, // Vendor not found 454 | {0x52,0xba,0x06}, // Vendor not found 455 | {0x52,0xc6,0xed}, // Vendor not found 456 | {0x52,0xca,0x23}, // Vendor not found 457 | {0x54,0x26,0x96}, // Apple, Inc. 458 | {0x54,0x40,0xad}, // Samsung Electronics Co.,Ltd 459 | {0x54,0x72,0x4f}, // Apple, Inc. 460 | {0x54,0xea,0xa8}, // Apple, Inc. 461 | {0x56,0x00,0xe2}, // Vendor not found 462 | {0x56,0x1c,0x26}, // Vendor not found 463 | {0x56,0x3c,0x22}, // Vendor not found 464 | {0x56,0x4a,0x7e}, // Vendor not found 465 | {0x56,0x63,0x05}, // Vendor not found 466 | {0x56,0x7d,0x09}, // Vendor not found 467 | {0x56,0x7d,0x81}, // Vendor not found 468 | {0x56,0x7e,0x18}, // Vendor not found 469 | {0x56,0x87,0x73}, // Vendor not found 470 | {0x56,0xa5,0xf0}, // Vendor not found 471 | {0x56,0xac,0xb0}, // Vendor not found 472 | {0x56,0xbc,0x15}, // Vendor not found 473 | {0x56,0xc5,0x94}, // Vendor not found 474 | {0x56,0xd2,0xcb}, // Vendor not found 475 | {0x56,0xdd,0x62}, // Vendor not found 476 | {0x56,0xec,0x9a}, // Vendor not found 477 | {0x56,0xf9,0x94}, // Vendor not found 478 | {0x56,0xfc,0x64}, // Vendor not found 479 | {0x58,0x1f,0xaa}, // Apple, Inc. 480 | {0x58,0x40,0x4e}, // Apple, Inc. 481 | {0x58,0x48,0x22}, // Sony Mobile Communications AB 482 | {0x5a,0x04,0xff}, // Vendor not found 483 | {0x5a,0x0a,0xdb}, // Vendor not found 484 | {0x5a,0x2b,0xa4}, // Vendor not found 485 | {0x5a,0x67,0x60}, // Vendor not found 486 | {0x5a,0x77,0xf2}, // Vendor not found 487 | {0x5a,0x87,0xa4}, // Vendor not found 488 | {0x5a,0x95,0x35}, // Vendor not found 489 | {0x5a,0xa0,0x7d}, // Vendor not found 490 | {0x5a,0xad,0x88}, // Vendor not found 491 | {0x5a,0xda,0x70}, // Vendor not found 492 | {0x5a,0xf2,0xe8}, // Vendor not found 493 | {0x5a,0xf3,0x9f}, // Vendor not found 494 | {0x5a,0xf3,0xbf}, // Vendor not found 495 | {0x5a,0xfc,0x81}, // Vendor not found 496 | {0x5c,0x0a,0x5b}, // SAMSUNG ELECTRO MECHANICS CO., LTD. 497 | {0x5c,0x70,0xa3}, // LG Electronics (Mobile Communications) 498 | {0x5c,0x95,0xae}, // Apple, Inc. 499 | {0x5c,0xc5,0xd4}, // Intel Corporate 500 | {0x5c,0xcf,0x7f}, // Espressif Inc. 501 | {0x5c,0xe0,0xc5}, // Intel Corporate 502 | {0x5c,0xf8,0xa1}, // Murata Manufacturing Co., Ltd. 503 | {0x5e,0x01,0x94}, // Vendor not found 504 | {0x5e,0x03,0x48}, // Vendor not found 505 | {0x5e,0x06,0x91}, // Vendor not found 506 | {0x5e,0x08,0xa5}, // Vendor not found 507 | {0x5e,0x1f,0x1f}, // Vendor not found 508 | {0x5e,0x2b,0x9d}, // Vendor not found 509 | {0x5e,0x2c,0x3b}, // Vendor not found 510 | {0x5e,0x33,0x8d}, // Vendor not found 511 | {0x5e,0x54,0xad}, // Vendor not found 512 | {0x5e,0x5a,0x5f}, // Vendor not found 513 | {0x5e,0x79,0x6c}, // Vendor not found 514 | {0x5e,0x7b,0x67}, // Vendor not found 515 | {0x5e,0x7e,0x88}, // Vendor not found 516 | {0x5e,0x8d,0x1c}, // Vendor not found 517 | {0x5e,0x96,0xdb}, // Vendor not found 518 | {0x5e,0x9a,0x5a}, // Vendor not found 519 | {0x5e,0xb6,0x20}, // Vendor not found 520 | {0x5e,0xca,0x2b}, // Vendor not found 521 | {0x5e,0xd1,0x35}, // Vendor not found 522 | {0x5e,0xe3,0xb8}, // Vendor not found 523 | {0x5e,0xe5,0xc6}, // Vendor not found 524 | {0x5e,0xf9,0x41}, // Vendor not found 525 | {0x60,0x21,0xc0}, // Murata Manufacturing Co., Ltd. 526 | {0x60,0xa3,0x7d}, // Apple, Inc. 527 | {0x60,0xc5,0x47}, // Apple, Inc. 528 | {0x60,0xe3,0xac}, // LG Electronics (Mobile Communications) 529 | {0x60,0xf1,0x89}, // Murata Manufacturing Co., Ltd. 530 | {0x60,0xf4,0x45}, // Apple, Inc. 531 | {0x60,0xf8,0x1d}, // Apple, Inc. 532 | {0x62,0x30,0x2e}, // Vendor not found 533 | {0x62,0x36,0x66}, // Vendor not found 534 | {0x62,0x3a,0x36}, // Vendor not found 535 | {0x62,0x4a,0x1b}, // Vendor not found 536 | {0x62,0x61,0x92}, // Vendor not found 537 | {0x62,0x66,0x29}, // Vendor not found 538 | {0x62,0x7a,0x54}, // Vendor not found 539 | {0x62,0xad,0xf1}, // Vendor not found 540 | {0x62,0xcd,0x82}, // Vendor not found 541 | {0x62,0xd6,0xd5}, // Vendor not found 542 | {0x62,0xf7,0x03}, // Vendor not found 543 | {0x64,0x6c,0xb2}, // Samsung Electronics Co.,Ltd 544 | {0x64,0x76,0xba}, // Apple, Inc. 545 | {0x64,0x89,0x9a}, // LG Electronics (Mobile Communications) 546 | {0x64,0x9a,0xbe}, // Apple, Inc. 547 | {0x64,0xb8,0x53}, // Samsung Electronics Co.,Ltd 548 | {0x64,0xbc,0x0c}, // LG Electronics (Mobile Communications) 549 | {0x64,0xcc,0x2e}, // Xiaomi Communications Co Ltd 550 | {0x66,0x33,0xd4}, // Vendor not found 551 | {0x66,0x43,0x2d}, // Vendor not found 552 | {0x66,0x55,0x6b}, // Vendor not found 553 | {0x66,0x59,0x25}, // Vendor not found 554 | {0x66,0x77,0x74}, // Vendor not found 555 | {0x66,0x81,0x22}, // Vendor not found 556 | {0x66,0x8a,0x63}, // Vendor not found 557 | {0x66,0x8b,0x07}, // Vendor not found 558 | {0x66,0xab,0xf2}, // Vendor not found 559 | {0x66,0xb9,0x8c}, // Vendor not found 560 | {0x66,0xbb,0x6f}, // Vendor not found 561 | {0x66,0xbd,0xac}, // Vendor not found 562 | {0x66,0xf9,0x83}, // Vendor not found 563 | {0x68,0x09,0x27}, // Apple, Inc. 564 | {0x68,0x96,0x7b}, // Apple, Inc. 565 | {0x68,0xa0,0xf6}, // HUAWEI TECHNOLOGIES CO.,LTD 566 | {0x68,0xc4,0x4d}, // Motorola Mobility LLC, a Lenovo Company 567 | {0x68,0xfb,0x7e}, // Apple, Inc. 568 | {0x6a,0x0a,0x6a}, // Vendor not found 569 | {0x6a,0x0c,0xd9}, // Vendor not found 570 | {0x6a,0x17,0xf8}, // Vendor not found 571 | {0x6a,0x19,0x91}, // Vendor not found 572 | {0x6a,0x37,0xc6}, // Vendor not found 573 | {0x6a,0x3a,0x3b}, // Vendor not found 574 | {0x6a,0x3d,0x0e}, // Vendor not found 575 | {0x6a,0x3e,0x8b}, // Vendor not found 576 | {0x6a,0x3f,0x86}, // Vendor not found 577 | {0x6a,0x3f,0xb3}, // Vendor not found 578 | {0x6a,0x52,0x3f}, // Vendor not found 579 | {0x6a,0x54,0x4d}, // Vendor not found 580 | {0x6a,0x57,0x6d}, // Vendor not found 581 | {0x6a,0x5e,0x41}, // Vendor not found 582 | {0x6a,0x66,0xf9}, // Vendor not found 583 | {0x6a,0x83,0x43}, // Vendor not found 584 | {0x6a,0xa9,0x8e}, // Vendor not found 585 | {0x6a,0xaa,0x51}, // Vendor not found 586 | {0x6a,0xb0,0x29}, // Vendor not found 587 | {0x6a,0xbc,0x3b}, // Vendor not found 588 | {0x6a,0xc1,0x47}, // Vendor not found 589 | {0x6a,0xc8,0xe1}, // Vendor not found 590 | {0x6a,0xd4,0x99}, // Vendor not found 591 | {0x6a,0xe3,0x98}, // Vendor not found 592 | {0x6a,0xec,0xc0}, // Vendor not found 593 | {0x6c,0x2f,0x2c}, // Samsung Electronics Co.,Ltd 594 | {0x6c,0x3e,0x6d}, // Apple, Inc. 595 | {0x6c,0x72,0xe7}, // Apple, Inc. 596 | {0x6c,0x8f,0xb5}, // Microsoft Mobile Oy 597 | {0x6c,0xab,0x31}, // Apple, Inc. 598 | {0x6c,0xad,0xf8}, // AzureWave Technology Inc. 599 | {0x6c,0xc2,0x6b}, // Apple, Inc. 600 | {0x6e,0x23,0xb0}, // Vendor not found 601 | {0x6e,0x31,0x7c}, // Vendor not found 602 | {0x6e,0x38,0xff}, // Vendor not found 603 | {0x6e,0x4e,0xbe}, // Vendor not found 604 | {0x6e,0x52,0x16}, // Vendor not found 605 | {0x6e,0x75,0x7d}, // Vendor not found 606 | {0x6e,0x78,0x35}, // Vendor not found 607 | {0x6e,0x7d,0x3d}, // Vendor not found 608 | {0x6e,0x7e,0x8c}, // Vendor not found 609 | {0x6e,0x85,0x85}, // Vendor not found 610 | {0x6e,0x8f,0xa3}, // Vendor not found 611 | {0x6e,0x95,0x1e}, // Vendor not found 612 | {0x6e,0x9a,0xdc}, // Vendor not found 613 | {0x6e,0xa9,0xd0}, // Vendor not found 614 | {0x6e,0xb0,0xc2}, // Vendor not found 615 | {0x6e,0xd1,0x4e}, // Vendor not found 616 | {0x6e,0xd7,0x7b}, // Vendor not found 617 | {0x6e,0xeb,0x49}, // Vendor not found 618 | {0x6e,0xef,0x48}, // Vendor not found 619 | {0x6e,0xf7,0x3b}, // Vendor not found 620 | {0x6e,0xf8,0x2b}, // Vendor not found 621 | {0x70,0x28,0x8b}, // Samsung Electronics Co.,Ltd 622 | {0x70,0x70,0x0d}, // Apple, Inc. 623 | {0x70,0xec,0xe4}, // Apple, Inc. 624 | {0x72,0x00,0x0c}, // Vendor not found 625 | {0x72,0x2f,0x31}, // Vendor not found 626 | {0x72,0x30,0xd4}, // Vendor not found 627 | {0x72,0x41,0x98}, // Vendor not found 628 | {0x72,0x65,0xcc}, // Vendor not found 629 | {0x72,0x6f,0x58}, // Vendor not found 630 | {0x72,0x9d,0x2f}, // Vendor not found 631 | {0x72,0xb2,0x60}, // Vendor not found 632 | {0x72,0xb4,0x1c}, // Vendor not found 633 | {0x72,0xc0,0x08}, // Vendor not found 634 | {0x72,0xc8,0xc3}, // Vendor not found 635 | {0x72,0xce,0x39}, // Vendor not found 636 | {0x72,0xe5,0x39}, // Vendor not found 637 | {0x72,0xe6,0x47}, // Vendor not found 638 | {0x72,0xec,0x53}, // Vendor not found 639 | {0x72,0xf6,0x10}, // Vendor not found 640 | {0x72,0xfb,0x72}, // Vendor not found 641 | {0x74,0x8d,0x08}, // Apple, Inc. 642 | {0x74,0xc2,0x46}, // Amazon Technologies Inc. 643 | {0x76,0x38,0x18}, // Vendor not found 644 | {0x76,0x4b,0x24}, // Vendor not found 645 | {0x76,0x64,0xd8}, // Vendor not found 646 | {0x76,0x6e,0x7f}, // Vendor not found 647 | {0x76,0x8d,0x9a}, // Vendor not found 648 | {0x76,0x97,0x15}, // Vendor not found 649 | {0x76,0xa7,0xa7}, // Vendor not found 650 | {0x76,0xbe,0xcd}, // Vendor not found 651 | {0x76,0xc5,0x8e}, // Vendor not found 652 | {0x76,0xc5,0xb1}, // Vendor not found 653 | {0x76,0xd0,0x03}, // Vendor not found 654 | {0x76,0xec,0x7c}, // Vendor not found 655 | {0x78,0x00,0x9e}, // Samsung Electronics Co.,Ltd 656 | {0x78,0x3a,0x84}, // Apple, Inc. 657 | {0x78,0x4b,0x87}, // Murata Manufacturing Co., Ltd. 658 | {0x78,0x4f,0x43}, // Apple, Inc. 659 | {0x78,0x7e,0x61}, // Apple, Inc. 660 | {0x78,0x88,0x6d}, // Apple, Inc. 661 | {0x78,0x9e,0xd0}, // Samsung Electronics Co.,Ltd 662 | {0x78,0xa3,0xe4}, // Apple, Inc. 663 | {0x78,0xc3,0xe9}, // Samsung Electronics Co.,Ltd 664 | {0x78,0xf8,0x82}, // LG Electronics (Mobile Communications) 665 | {0x7a,0x06,0x82}, // Vendor not found 666 | {0x7a,0x18,0xf8}, // Vendor not found 667 | {0x7a,0x33,0x42}, // Vendor not found 668 | {0x7a,0x4f,0x8f}, // Vendor not found 669 | {0x7a,0x5d,0x45}, // Vendor not found 670 | {0x7a,0x60,0x80}, // Vendor not found 671 | {0x7a,0x6b,0x41}, // Vendor not found 672 | {0x7a,0xb9,0xed}, // Vendor not found 673 | {0x7a,0xbb,0x96}, // Vendor not found 674 | {0x7a,0xc9,0x88}, // Vendor not found 675 | {0x7c,0x04,0xd0}, // Apple, Inc. 676 | {0x7c,0x11,0xcb}, // HUAWEI TECHNOLOGIES CO.,LTD 677 | {0x7c,0x91,0x22}, // Samsung Electronics Co.,Ltd 678 | {0x7c,0xb0,0xc2}, // Intel Corporate 679 | {0x7c,0xb7,0x33}, // ASKEY COMPUTER CORP 680 | {0x7c,0xfa,0xdf}, // Apple, Inc. 681 | {0x7e,0x01,0x56}, // Vendor not found 682 | {0x7e,0x1f,0x9d}, // Vendor not found 683 | {0x7e,0x4a,0x7f}, // Vendor not found 684 | {0x7e,0x52,0x8b}, // Vendor not found 685 | {0x7e,0x54,0x41}, // Vendor not found 686 | {0x7e,0x67,0x2c}, // Vendor not found 687 | {0x7e,0x73,0xb3}, // Vendor not found 688 | {0x7e,0x7b,0xfb}, // Vendor not found 689 | {0x7e,0x8d,0x75}, // Vendor not found 690 | {0x7e,0xab,0x04}, // Vendor not found 691 | {0x7e,0xac,0x1d}, // Vendor not found 692 | {0x7e,0xb4,0x0d}, // Vendor not found 693 | {0x7e,0xdf,0x88}, // Vendor not found 694 | {0x7e,0xe7,0x73}, // Vendor not found 695 | {0x7e,0xf6,0xcb}, // Vendor not found 696 | {0x7e,0xf7,0x03}, // Vendor not found 697 | {0x7e,0xff,0x67}, // Vendor not found 698 | {0x80,0x01,0x84}, // HTC Corporation 699 | {0x80,0x4e,0x81}, // Samsung Electronics Co.,Ltd 700 | {0x80,0x58,0xf8}, // Motorola Mobility LLC, a Lenovo Company 701 | {0x80,0x65,0x6d}, // Samsung Electronics Co.,Ltd 702 | {0x80,0x6c,0x1b}, // Motorola Mobility LLC, a Lenovo Company 703 | {0x80,0xbe,0x05}, // Apple, Inc. 704 | {0x80,0xe6,0x50}, // Apple, Inc. 705 | {0x82,0x1d,0x9b}, // Vendor not found 706 | {0x82,0x29,0xae}, // Vendor not found 707 | {0x82,0x49,0x41}, // Vendor not found 708 | {0x82,0x76,0x8c}, // Vendor not found 709 | {0x82,0x80,0xd7}, // Vendor not found 710 | {0x82,0x87,0x47}, // Vendor not found 711 | {0x82,0x92,0x7d}, // Vendor not found 712 | {0x82,0x98,0xc6}, // Vendor not found 713 | {0x82,0xab,0x11}, // Vendor not found 714 | {0x82,0xb9,0xb0}, // Vendor not found 715 | {0x82,0xe6,0x7d}, // Vendor not found 716 | {0x82,0xfc,0x0d}, // Vendor not found 717 | {0x84,0x38,0x38}, // SAMSUNG ELECTRO-MECHANICS(THAILAND) 718 | {0x84,0x41,0x67}, // Apple, Inc. 719 | {0x84,0x51,0x81}, // Samsung Electronics Co.,Ltd 720 | {0x84,0x55,0xa5}, // Samsung Electronics Co.,Ltd 721 | {0x84,0x7a,0x88}, // HTC Corporation 722 | {0x84,0x85,0x06}, // Apple, Inc. 723 | {0x84,0x89,0xad}, // Apple, Inc. 724 | {0x84,0x8e,0x0c}, // Apple, Inc. 725 | {0x84,0x98,0x66}, // Samsung Electronics Co.,Ltd 726 | {0x84,0x9f,0xb5}, // HUAWEI TECHNOLOGIES CO.,LTD 727 | {0x84,0xb5,0x41}, // Samsung Electronics Co.,Ltd 728 | {0x84,0xc7,0xea}, // Sony Mobile Communications AB 729 | {0x84,0xcf,0xbf}, // Fairphone 730 | {0x86,0x07,0xaa}, // Vendor not found 731 | {0x86,0x0b,0x2c}, // Vendor not found 732 | {0x86,0x17,0x3b}, // Vendor not found 733 | {0x86,0x28,0x9f}, // Vendor not found 734 | {0x86,0x2d,0x36}, // Vendor not found 735 | {0x86,0x2f,0x2e}, // Vendor not found 736 | {0x86,0x3d,0x26}, // Vendor not found 737 | {0x86,0x51,0x8d}, // Vendor not found 738 | {0x86,0x54,0x2a}, // Vendor not found 739 | {0x86,0x5c,0x8d}, // Vendor not found 740 | {0x86,0x84,0x88}, // Vendor not found 741 | {0x86,0x90,0x08}, // Vendor not found 742 | {0x86,0x99,0xa5}, // Vendor not found 743 | {0x86,0xc7,0xab}, // Vendor not found 744 | {0x86,0xd4,0xef}, // Vendor not found 745 | {0x86,0xde,0xc7}, // Vendor not found 746 | {0x86,0xf5,0xeb}, // Vendor not found 747 | {0x86,0xfe,0x5d}, // Vendor not found 748 | {0x88,0x32,0x9b}, // SAMSUNG ELECTRO-MECHANICS(THAILAND) 749 | {0x88,0x53,0x95}, // Apple, Inc. 750 | {0x88,0x70,0x8c}, // Lenovo Mobile Communication Technology Ltd. 751 | {0x88,0x79,0x7e}, // Motorola Mobility LLC, a Lenovo Company 752 | {0x88,0x83,0x22}, // Samsung Electronics Co.,Ltd 753 | {0x88,0xad,0xd2}, // Samsung Electronics Co.,Ltd 754 | {0x88,0xc6,0x63}, // Apple, Inc. 755 | {0x88,0xc9,0xd0}, // LG Electronics (Mobile Communications) 756 | {0x88,0xe8,0x7f}, // Apple, Inc. 757 | {0x8a,0x0d,0xd0}, // Vendor not found 758 | {0x8a,0x0f,0xd1}, // Vendor not found 759 | {0x8a,0x13,0x40}, // Vendor not found 760 | {0x8a,0x26,0x83}, // Vendor not found 761 | {0x8a,0x2b,0xe2}, // Vendor not found 762 | {0x8a,0x31,0x21}, // Vendor not found 763 | {0x8a,0x46,0xaf}, // Vendor not found 764 | {0x8a,0x48,0xae}, // Vendor not found 765 | {0x8a,0x4d,0x3c}, // Vendor not found 766 | {0x8a,0x53,0x85}, // Vendor not found 767 | {0x8a,0x55,0x36}, // Vendor not found 768 | {0x8a,0x73,0x46}, // Vendor not found 769 | {0x8a,0x8a,0xe8}, // Vendor not found 770 | {0x8a,0x8d,0x45}, // Vendor not found 771 | {0x8a,0x92,0x95}, // Vendor not found 772 | {0x8a,0xaa,0x20}, // Vendor not found 773 | {0x8a,0xc6,0x46}, // Vendor not found 774 | {0x8a,0xd7,0xd1}, // Vendor not found 775 | {0x8a,0xf2,0xd9}, // Vendor not found 776 | {0x8c,0x00,0x6d}, // Apple, Inc. 777 | {0x8c,0x1a,0xbf}, // Samsung Electronics Co.,Ltd 778 | {0x8c,0x34,0xfd}, // HUAWEI TECHNOLOGIES CO.,LTD 779 | {0x8c,0x3a,0xe3}, // LG Electronics (Mobile Communications) 780 | {0x8c,0x70,0x5a}, // Intel Corporate 781 | {0x8c,0x7b,0x9d}, // Apple, Inc. 782 | {0x8c,0xbf,0xa6}, // Samsung Electronics Co.,Ltd 783 | {0x8c,0xf5,0xa3}, // SAMSUNG ELECTRO-MECHANICS(THAILAND) 784 | {0x8e,0x00,0xb0}, // Vendor not found 785 | {0x8e,0x07,0x32}, // Vendor not found 786 | {0x8e,0x1c,0x3a}, // Vendor not found 787 | {0x8e,0x1e,0xf3}, // Vendor not found 788 | {0x8e,0x3c,0x06}, // Vendor not found 789 | {0x8e,0x3c,0x9c}, // Vendor not found 790 | {0x8e,0x3f,0x84}, // Vendor not found 791 | {0x8e,0x4b,0x07}, // Vendor not found 792 | {0x8e,0x66,0x00}, // Vendor not found 793 | {0x8e,0x73,0x53}, // Vendor not found 794 | {0x8e,0x73,0xcf}, // Vendor not found 795 | {0x8e,0x77,0x2b}, // Vendor not found 796 | {0x8e,0x8d,0x35}, // Vendor not found 797 | {0x8e,0xa9,0xc8}, // Vendor not found 798 | {0x8e,0xb8,0x4c}, // Vendor not found 799 | {0x8e,0xc1,0x72}, // Vendor not found 800 | {0x8e,0xca,0x23}, // Vendor not found 801 | {0x8e,0xd8,0x15}, // Vendor not found 802 | {0x8e,0xdd,0x8d}, // Vendor not found 803 | {0x8e,0xe5,0x7e}, // Vendor not found 804 | {0x8e,0xf9,0x22}, // Vendor not found 805 | {0x8e,0xff,0xc6}, // Vendor not found 806 | {0x90,0x00,0xdb}, // Samsung Electronics Co.,Ltd 807 | {0x90,0x06,0x28}, // Samsung Electronics Co.,Ltd 808 | {0x90,0x21,0x81}, // Shanghai Huaqin Telecom Technology Co.,Ltd 809 | {0x90,0x72,0x40}, // Apple, Inc. 810 | {0x90,0xb6,0x86}, // Murata Manufacturing Co., Ltd. 811 | {0x90,0xe7,0xc4}, // HTC Corporation 812 | {0x92,0x00,0x36}, // Vendor not found 813 | {0x92,0x1c,0xc4}, // Vendor not found 814 | {0x92,0x1c,0xea}, // Vendor not found 815 | {0x92,0x26,0x07}, // Vendor not found 816 | {0x92,0x3b,0x0d}, // Vendor not found 817 | {0x92,0x3e,0x0a}, // Vendor not found 818 | {0x92,0x4e,0xd1}, // Vendor not found 819 | {0x92,0x53,0xe6}, // Vendor not found 820 | {0x92,0x71,0xd9}, // Vendor not found 821 | {0x92,0x72,0x02}, // Vendor not found 822 | {0x92,0x8a,0x80}, // Vendor not found 823 | {0x92,0x9a,0x56}, // Vendor not found 824 | {0x92,0x9b,0x7e}, // Vendor not found 825 | {0x92,0x9c,0xa4}, // Vendor not found 826 | {0x92,0xae,0x46}, // Vendor not found 827 | {0x92,0xaf,0xae}, // Vendor not found 828 | {0x92,0xc4,0xe8}, // Vendor not found 829 | {0x92,0xdb,0xc3}, // Vendor not found 830 | {0x92,0xdf,0xee}, // Vendor not found 831 | {0x92,0xe4,0x47}, // Vendor not found 832 | {0x92,0xf5,0xe7}, // Vendor not found 833 | {0x92,0xf7,0x0b}, // Vendor not found 834 | {0x94,0x65,0x2d}, // OnePlus Technology (Shenzhen) Co., Ltd 835 | {0x94,0x94,0x26}, // Apple, Inc. 836 | {0x96,0x13,0x02}, // Vendor not found 837 | {0x96,0x4a,0x6b}, // Vendor not found 838 | {0x96,0x6a,0xd1}, // Vendor not found 839 | {0x96,0x79,0xec}, // Vendor not found 840 | {0x96,0x9b,0xb9}, // Vendor not found 841 | {0x96,0xc3,0xb4}, // Vendor not found 842 | {0x96,0xcd,0x44}, // Vendor not found 843 | {0x96,0xcf,0x4d}, // Vendor not found 844 | {0x96,0xd7,0xea}, // Vendor not found 845 | {0x96,0xef,0xc8}, // Vendor not found 846 | {0x98,0x01,0xa7}, // Apple, Inc. 847 | {0x98,0x4f,0xee}, // Intel Corporate 848 | {0x98,0x5f,0xd3}, // Microsoft Corporation 849 | {0x98,0x6d,0x35}, // SHENZHEN FISE TECHNOLOGY HOLDING CO.,LTD. 850 | {0x98,0xf0,0xab}, // Apple, Inc. 851 | {0x98,0xf1,0x70}, // Murata Manufacturing Co., Ltd. 852 | {0x98,0xfe,0x94}, // Apple, Inc. 853 | {0x9a,0x0e,0xfb}, // Vendor not found 854 | {0x9a,0x18,0x9f}, // Vendor not found 855 | {0x9a,0x1c,0x17}, // Vendor not found 856 | {0x9a,0x28,0xd6}, // Vendor not found 857 | {0x9a,0x45,0x4f}, // Vendor not found 858 | {0x9a,0x5f,0x46}, // Vendor not found 859 | {0x9a,0x64,0x96}, // Vendor not found 860 | {0x9a,0x71,0x82}, // Vendor not found 861 | {0x9a,0x79,0xbb}, // Vendor not found 862 | {0x9a,0x96,0x34}, // Vendor not found 863 | {0x9a,0xc3,0x93}, // Vendor not found 864 | {0x9a,0xc8,0x17}, // Vendor not found 865 | {0x9a,0xcb,0x15}, // Vendor not found 866 | {0x9a,0xf2,0x1b}, // Vendor not found 867 | {0x9c,0x04,0xeb}, // Apple, Inc. 868 | {0x9c,0x20,0x7b}, // Apple, Inc. 869 | {0x9c,0x2a,0x83}, // Samsung Electronics Co.,Ltd 870 | {0x9c,0x5c,0xf9}, // Sony Mobile Communications AB 871 | {0x9c,0x6c,0x15}, // Microsoft Corporation 872 | {0x9c,0x8d,0x7c}, // ALPS ELECTRIC CO.,LTD. 873 | {0x9c,0xb2,0xb2}, // HUAWEI TECHNOLOGIES CO.,LTD 874 | {0x9c,0xb6,0xd0}, // Rivet Networks 875 | {0x9e,0x1f,0x85}, // Vendor not found 876 | {0x9e,0x3c,0xe4}, // Vendor not found 877 | {0x9e,0x43,0xf3}, // Vendor not found 878 | {0x9e,0x72,0xca}, // Vendor not found 879 | {0x9e,0x85,0x45}, // Vendor not found 880 | {0x9e,0x9e,0xf1}, // Vendor not found 881 | {0x9e,0xa9,0x3d}, // Vendor not found 882 | {0x9e,0xa9,0xfa}, // Vendor not found 883 | {0x9e,0xc0,0x92}, // Vendor not found 884 | {0x9e,0xc0,0xad}, // Vendor not found 885 | {0x9e,0xca,0xee}, // Vendor not found 886 | {0x9e,0xd3,0x1d}, // Vendor not found 887 | {0x9e,0xd6,0x59}, // Vendor not found 888 | {0x9e,0xd8,0x7b}, // Vendor not found 889 | {0x9e,0xe0,0x26}, // Vendor not found 890 | {0x9e,0xe7,0x25}, // Vendor not found 891 | {0x9e,0xea,0xec}, // Vendor not found 892 | {0x9e,0xf7,0x6d}, // Vendor not found 893 | {0x9e,0xfb,0xec}, // Vendor not found 894 | {0xa0,0x10,0x81}, // Samsung Electronics Co.,Ltd 895 | {0xa0,0x39,0xf7}, // LG Electronics (Mobile Communications) 896 | {0xa0,0x4c,0x5b}, // Shenzhen TINNO Mobile Technology Corp. 897 | {0xa0,0xcb,0xfd}, // Samsung Electronics Co.,Ltd 898 | {0xa0,0xd7,0x95}, // Apple, Inc. 899 | {0xa2,0x2e,0xd5}, // Vendor not found 900 | {0xa2,0x46,0xed}, // Vendor not found 901 | {0xa2,0x61,0x55}, // Vendor not found 902 | {0xa2,0x68,0xde}, // Vendor not found 903 | {0xa2,0x72,0x32}, // Vendor not found 904 | {0xa2,0x81,0x7c}, // Vendor not found 905 | {0xa2,0x83,0xec}, // Vendor not found 906 | {0xa2,0x84,0xac}, // Vendor not found 907 | {0xa2,0xa2,0xd3}, // Vendor not found 908 | {0xa2,0xa6,0xca}, // Vendor not found 909 | {0xa2,0xbb,0xc9}, // Vendor not found 910 | {0xa2,0xc0,0x61}, // Vendor not found 911 | {0xa2,0xca,0x22}, // Vendor not found 912 | {0xa4,0x31,0x35}, // Apple, Inc. 913 | {0xa4,0x51,0x6f}, // Microsoft Mobile Oy 914 | {0xa4,0x5e,0x60}, // Apple, Inc. 915 | {0xa4,0x67,0x06}, // Apple, Inc. 916 | {0xa4,0x70,0xd6}, // Motorola Mobility LLC, a Lenovo Company 917 | {0xa4,0x71,0x74}, // HUAWEI TECHNOLOGIES CO.,LTD 918 | {0xa4,0xc3,0x61}, // Apple, Inc. 919 | {0xa4,0xe4,0xb8}, // BlackBerry RTS 920 | {0xa6,0x0b,0xb0}, // Vendor not found 921 | {0xa6,0x12,0x1b}, // Vendor not found 922 | {0xa6,0x23,0x2c}, // Vendor not found 923 | {0xa6,0x29,0xb4}, // Vendor not found 924 | {0xa6,0x34,0x31}, // Vendor not found 925 | {0xa6,0x42,0xd1}, // Vendor not found 926 | {0xa6,0x59,0xc2}, // Vendor not found 927 | {0xa6,0x5a,0xb5}, // Vendor not found 928 | {0xa6,0x69,0x6c}, // Vendor not found 929 | {0xa6,0x79,0x39}, // Vendor not found 930 | {0xa6,0x84,0x58}, // Vendor not found 931 | {0xa6,0xb5,0xcd}, // Vendor not found 932 | {0xa6,0xba,0x5d}, // Vendor not found 933 | {0xa6,0xbc,0x18}, // Vendor not found 934 | {0xa6,0xd6,0x99}, // Vendor not found 935 | {0xa6,0xe2,0x2d}, // Vendor not found 936 | {0xa8,0x5b,0x78}, // Apple, Inc. 937 | {0xa8,0x66,0x7f}, // Apple, Inc. 938 | {0xa8,0x7c,0x01}, // Samsung Electronics Co.,Ltd 939 | {0xa8,0x81,0x95}, // Samsung Electronics Co.,Ltd 940 | {0xa8,0x88,0x08}, // Apple, Inc. 941 | {0xa8,0x9f,0xba}, // Samsung Electronics Co.,Ltd 942 | {0xa8,0xc8,0x3a}, // HUAWEI TECHNOLOGIES CO.,LTD 943 | {0xaa,0x00,0xeb}, // Vendor not found 944 | {0xaa,0x15,0xe0}, // Vendor not found 945 | {0xaa,0x25,0x45}, // Vendor not found 946 | {0xaa,0x46,0xd3}, // Vendor not found 947 | {0xaa,0x4f,0x50}, // Vendor not found 948 | {0xaa,0x5c,0x28}, // Vendor not found 949 | {0xaa,0x65,0xf7}, // Vendor not found 950 | {0xaa,0x67,0x2d}, // Vendor not found 951 | {0xaa,0x70,0x46}, // Vendor not found 952 | {0xaa,0x76,0x26}, // Vendor not found 953 | {0xaa,0x89,0x5f}, // Vendor not found 954 | {0xaa,0x99,0xc6}, // Vendor not found 955 | {0xaa,0x9e,0x74}, // Vendor not found 956 | {0xaa,0xa7,0x07}, // Vendor not found 957 | {0xaa,0xb9,0x4f}, // Vendor not found 958 | {0xaa,0xc0,0x7a}, // Vendor not found 959 | {0xaa,0xdb,0x6e}, // Vendor not found 960 | {0xaa,0xe1,0xa7}, // Vendor not found 961 | {0xaa,0xf5,0x48}, // Vendor not found 962 | {0xac,0x37,0x43}, // HTC Corporation 963 | {0xac,0x3c,0x0b}, // Apple, Inc. 964 | {0xac,0x5f,0x3e}, // SAMSUNG ELECTRO-MECHANICS(THAILAND) 965 | {0xac,0x7a,0x4d}, // ALPS ELECTRIC CO.,LTD. 966 | {0xac,0x7f,0x3e}, // Apple, Inc. 967 | {0xac,0xbc,0x32}, // Apple, Inc. 968 | {0xac,0xc1,0xee}, // Xiaomi Communications Co Ltd 969 | {0xac,0xcf,0x5c}, // Apple, Inc. 970 | {0xac,0xcf,0x85}, // HUAWEI TECHNOLOGIES CO.,LTD 971 | {0xac,0xee,0x9e}, // Samsung Electronics Co.,Ltd 972 | {0xae,0x1a,0xd6}, // Vendor not found 973 | {0xae,0x1c,0xe7}, // Vendor not found 974 | {0xae,0x31,0x37}, // Vendor not found 975 | {0xae,0x31,0x70}, // Vendor not found 976 | {0xae,0x43,0xfc}, // Vendor not found 977 | {0xae,0x46,0xc6}, // Vendor not found 978 | {0xae,0x57,0xd8}, // Vendor not found 979 | {0xae,0x6d,0x51}, // Vendor not found 980 | {0xae,0xa6,0x42}, // Vendor not found 981 | {0xae,0xa9,0x31}, // Vendor not found 982 | {0xae,0xb3,0x0c}, // Vendor not found 983 | {0xae,0xbd,0xab}, // Vendor not found 984 | {0xae,0xd6,0x79}, // Vendor not found 985 | {0xae,0xf0,0x47}, // Vendor not found 986 | {0xb0,0x47,0xbf}, // Samsung Electronics Co.,Ltd 987 | {0xb0,0x70,0x2d}, // Apple, Inc. 988 | {0xb0,0x72,0xbf}, // Murata Manufacturing Co., Ltd. 989 | {0xb0,0xa2,0xe7}, // Shenzhen TINNO Mobile Technology Corp. 990 | {0xb0,0xc5,0x59}, // Samsung Electronics Co.,Ltd 991 | {0xb0,0xe5,0xed}, // HUAWEI TECHNOLOGIES CO.,LTD 992 | {0xb2,0x02,0xe7}, // Vendor not found 993 | {0xb2,0x08,0x0d}, // Vendor not found 994 | {0xb2,0x08,0x54}, // Vendor not found 995 | {0xb2,0x1d,0x29}, // Vendor not found 996 | {0xb2,0x1f,0xd1}, // Vendor not found 997 | {0xb2,0x26,0x07}, // Vendor not found 998 | {0xb2,0x30,0x11}, // Vendor not found 999 | {0xb2,0x44,0xeb}, // Vendor not found 1000 | {0xb2,0x45,0x96}, // Vendor not found 1001 | {0xb2,0x46,0x57}, // Vendor not found 1002 | {0xb2,0x77,0x0f}, // Vendor not found 1003 | {0xb2,0x7b,0xbe}, // Vendor not found 1004 | {0xb2,0x8c,0xdb}, // Vendor not found 1005 | {0xb2,0xc4,0xdc}, // Vendor not found 1006 | {0xb2,0xd6,0x0e}, // Vendor not found 1007 | {0xb4,0x07,0xf9}, // SAMSUNG ELECTRO MECHANICS CO., LTD. 1008 | {0xb4,0x18,0xd1}, // Apple, Inc. 1009 | {0xb4,0x30,0x52}, // HUAWEI TECHNOLOGIES CO.,LTD 1010 | {0xb4,0x74,0x43}, // Samsung Electronics Co.,Ltd 1011 | {0xb4,0xae,0x2b}, // Microsoft 1012 | {0xb4,0xce,0xf6}, // HTC Corporation 1013 | {0xb4,0xe1,0xc4}, // Microsoft Mobile Oy 1014 | {0xb4,0xee,0xb4}, // ASKEY COMPUTER CORP 1015 | {0xb6,0x05,0xa7}, // Vendor not found 1016 | {0xb6,0x05,0xae}, // Vendor not found 1017 | {0xb6,0x0f,0x7b}, // Vendor not found 1018 | {0xb6,0x19,0x85}, // Vendor not found 1019 | {0xb6,0x1d,0xbf}, // Vendor not found 1020 | {0xb6,0x24,0xb2}, // Vendor not found 1021 | {0xb6,0x30,0x0c}, // Vendor not found 1022 | {0xb6,0x48,0x4a}, // Vendor not found 1023 | {0xb6,0x4e,0xb9}, // Vendor not found 1024 | {0xb6,0x5a,0x3e}, // Vendor not found 1025 | {0xb6,0x5d,0xe8}, // Vendor not found 1026 | {0xb6,0xa1,0xe4}, // Vendor not found 1027 | {0xb6,0xa2,0x2d}, // Vendor not found 1028 | {0xb6,0xb3,0x7f}, // Vendor not found 1029 | {0xb6,0xbc,0xb4}, // Vendor not found 1030 | {0xb8,0x09,0x8a}, // Apple, Inc. 1031 | {0xb8,0x4f,0xd5}, // Microsoft Corporation 1032 | {0xb8,0x53,0xac}, // Apple, Inc. 1033 | {0xb8,0x6c,0xe8}, // Samsung Electronics Co.,Ltd 1034 | {0xb8,0xbc,0x1b}, // HUAWEI TECHNOLOGIES CO.,LTD 1035 | {0xb8,0xe8,0x56}, // Apple, Inc. 1036 | {0xb8,0xff,0x61}, // Apple, Inc. 1037 | {0xba,0x09,0x19}, // Vendor not found 1038 | {0xba,0x0a,0xe3}, // Vendor not found 1039 | {0xba,0x11,0x75}, // Vendor not found 1040 | {0xba,0x17,0x31}, // Vendor not found 1041 | {0xba,0x2c,0xd2}, // Vendor not found 1042 | {0xba,0x2e,0x16}, // Vendor not found 1043 | {0xba,0x32,0xfd}, // Vendor not found 1044 | {0xba,0x5e,0xc2}, // Vendor not found 1045 | {0xba,0x61,0xc3}, // Vendor not found 1046 | {0xba,0x6e,0xc2}, // Vendor not found 1047 | {0xba,0x8d,0xc4}, // Vendor not found 1048 | {0xba,0xd7,0x5a}, // Vendor not found 1049 | {0xba,0xda,0xd9}, // Vendor not found 1050 | {0xbc,0x44,0x34}, // Shenzhen TINNO Mobile Technology Corp. 1051 | {0xbc,0x6e,0x64}, // Sony Mobile Communications AB 1052 | {0xbc,0x76,0x5e}, // Samsung Electronics Co.,Ltd 1053 | {0xbc,0x92,0x6b}, // Apple, Inc. 1054 | {0xbc,0xe6,0x3f}, // Samsung Electronics Co.,Ltd 1055 | {0xbc,0xf5,0xac}, // LG Electronics (Mobile Communications) 1056 | {0xbe,0x0b,0xff}, // Vendor not found 1057 | {0xbe,0x10,0xd9}, // Vendor not found 1058 | {0xbe,0x14,0xb1}, // Vendor not found 1059 | {0xbe,0x1f,0xc9}, // Vendor not found 1060 | {0xbe,0x21,0x14}, // Vendor not found 1061 | {0xbe,0x28,0x57}, // Vendor not found 1062 | {0xbe,0x2b,0x88}, // Vendor not found 1063 | {0xbe,0x39,0x63}, // Vendor not found 1064 | {0xbe,0x45,0xbe}, // Vendor not found 1065 | {0xbe,0x46,0x7e}, // Vendor not found 1066 | {0xbe,0x49,0x36}, // Vendor not found 1067 | {0xbe,0x5d,0x13}, // Vendor not found 1068 | {0xbe,0x64,0x6b}, // Vendor not found 1069 | {0xbe,0x65,0x2b}, // Vendor not found 1070 | {0xbe,0x6d,0x21}, // Vendor not found 1071 | {0xbe,0x6e,0xcd}, // Vendor not found 1072 | {0xbe,0x75,0xb3}, // Vendor not found 1073 | {0xbe,0x7c,0x05}, // Vendor not found 1074 | {0xbe,0x98,0x3a}, // Vendor not found 1075 | {0xbe,0x9f,0xb0}, // Vendor not found 1076 | {0xbe,0xf3,0x38}, // Vendor not found 1077 | {0xbe,0xf4,0x06}, // Vendor not found 1078 | {0xbe,0xf5,0x8b}, // Vendor not found 1079 | {0xbe,0xfd,0x88}, // Vendor not found 1080 | {0xc0,0x11,0x73}, // Samsung Electronics Co.,Ltd 1081 | {0xc0,0xbd,0xd1}, // SAMSUNG ELECTRO-MECHANICS(THAILAND) 1082 | {0xc0,0xc9,0x76}, // Shenzhen TINNO Mobile Technology Corp. 1083 | {0xc0,0xd0,0x12}, // Apple, Inc. 1084 | {0xc0,0xee,0xfb}, // OnePlus Tech (Shenzhen) Ltd 1085 | {0xc2,0x12,0xa3}, // Vendor not found 1086 | {0xc2,0x18,0xf9}, // Vendor not found 1087 | {0xc2,0x46,0x04}, // Vendor not found 1088 | {0xc2,0x4a,0x2c}, // Vendor not found 1089 | {0xc2,0x51,0x62}, // Vendor not found 1090 | {0xc2,0x62,0xa9}, // Vendor not found 1091 | {0xc2,0x63,0xce}, // Vendor not found 1092 | {0xc2,0x6d,0x01}, // Vendor not found 1093 | {0xc2,0x6d,0xbd}, // Vendor not found 1094 | {0xc2,0x6f,0x44}, // Vendor not found 1095 | {0xc2,0x72,0x19}, // Vendor not found 1096 | {0xc2,0x77,0xa6}, // Vendor not found 1097 | {0xc2,0x7a,0x16}, // Vendor not found 1098 | {0xc2,0x7d,0xdb}, // Vendor not found 1099 | {0xc2,0x80,0x66}, // Vendor not found 1100 | {0xc2,0x80,0x83}, // Vendor not found 1101 | {0xc2,0x89,0x3d}, // Vendor not found 1102 | {0xc2,0x91,0x64}, // Vendor not found 1103 | {0xc2,0xb2,0xee}, // Vendor not found 1104 | {0xc2,0xbf,0xf6}, // Vendor not found 1105 | {0xc2,0xce,0x1c}, // Vendor not found 1106 | {0xc2,0xd2,0x26}, // Vendor not found 1107 | {0xc2,0xdb,0x45}, // Vendor not found 1108 | {0xc2,0xdc,0xf1}, // Vendor not found 1109 | {0xc2,0xe4,0x0b}, // Vendor not found 1110 | {0xc2,0xf4,0xe8}, // Vendor not found 1111 | {0xc2,0xfb,0xee}, // Vendor not found 1112 | {0xc4,0x3a,0xbe}, // Sony Mobile Communications AB 1113 | {0xc4,0x62,0xea}, // Samsung Electronics Co.,Ltd 1114 | {0xc4,0x86,0xe9}, // HUAWEI TECHNOLOGIES CO.,LTD 1115 | {0xc4,0x9a,0x02}, // LG Electronics (Mobile Communications) 1116 | {0xc6,0x0e,0x60}, // Vendor not found 1117 | {0xc6,0x10,0xbf}, // Vendor not found 1118 | {0xc6,0x16,0x46}, // Vendor not found 1119 | {0xc6,0x1b,0x2c}, // Vendor not found 1120 | {0xc6,0x24,0x0b}, // Vendor not found 1121 | {0xc6,0x27,0x21}, // Vendor not found 1122 | {0xc6,0x34,0xc1}, // Vendor not found 1123 | {0xc6,0x3d,0xac}, // Vendor not found 1124 | {0xc6,0x6a,0x8b}, // Vendor not found 1125 | {0xc6,0x6e,0xa6}, // Vendor not found 1126 | {0xc6,0x7a,0x19}, // Vendor not found 1127 | {0xc6,0x90,0x12}, // Vendor not found 1128 | {0xc6,0x94,0xf7}, // Vendor not found 1129 | {0xc6,0xc3,0xab}, // Vendor not found 1130 | {0xc6,0xd2,0x54}, // Vendor not found 1131 | {0xc6,0xec,0x71}, // Vendor not found 1132 | {0xc6,0xf5,0x1d}, // Vendor not found 1133 | {0xc6,0xf9,0xc3}, // Vendor not found 1134 | {0xc8,0x14,0x51}, // HUAWEI TECHNOLOGIES CO.,LTD 1135 | {0xc8,0x38,0x70}, // Samsung Electronics Co.,Ltd 1136 | {0xc8,0x3d,0xd4}, // CyberTAN Technology Inc. 1137 | {0xc8,0x6f,0x1d}, // Apple, Inc. 1138 | {0xc8,0x85,0x50}, // Apple, Inc. 1139 | {0xc8,0x94,0xbb}, // HUAWEI TECHNOLOGIES CO.,LTD 1140 | {0xc8,0xe0,0xeb}, // Apple, Inc. 1141 | {0xca,0x0c,0xd0}, // Vendor not found 1142 | {0xca,0x3a,0xa0}, // Vendor not found 1143 | {0xca,0x44,0xd3}, // Vendor not found 1144 | {0xca,0x4f,0xa2}, // Vendor not found 1145 | {0xca,0x56,0x13}, // Vendor not found 1146 | {0xca,0x71,0x53}, // Vendor not found 1147 | {0xca,0x79,0x77}, // Vendor not found 1148 | {0xca,0x8f,0x4d}, // Vendor not found 1149 | {0xca,0x94,0xa9}, // Vendor not found 1150 | {0xca,0xa3,0x7b}, // Vendor not found 1151 | {0xca,0xa6,0x06}, // Vendor not found 1152 | {0xca,0xa9,0x53}, // Vendor not found 1153 | {0xca,0xb2,0xab}, // Vendor not found 1154 | {0xca,0xc1,0xdb}, // Vendor not found 1155 | {0xca,0xdd,0xf5}, // Vendor not found 1156 | {0xca,0xe7,0x4b}, // Vendor not found 1157 | {0xca,0xf2,0x7b}, // Vendor not found 1158 | {0xca,0xf5,0x62}, // Vendor not found 1159 | {0xca,0xfb,0x84}, // Vendor not found 1160 | {0xcc,0x61,0xe5}, // Motorola Mobility LLC, a Lenovo Company 1161 | {0xcc,0x78,0x5f}, // Apple, Inc. 1162 | {0xcc,0xc3,0xea}, // Motorola Mobility LLC, a Lenovo Company 1163 | {0xcc,0xfd,0x17}, // TCT mobile ltd 1164 | {0xce,0x24,0xbe}, // Vendor not found 1165 | {0xce,0x2c,0x1e}, // Vendor not found 1166 | {0xce,0x4d,0x72}, // Vendor not found 1167 | {0xce,0x61,0x73}, // Vendor not found 1168 | {0xce,0x6d,0xf1}, // Vendor not found 1169 | {0xce,0x87,0x58}, // Vendor not found 1170 | {0xce,0x9d,0x4e}, // Vendor not found 1171 | {0xce,0xc4,0x21}, // Vendor not found 1172 | {0xce,0xc8,0xd4}, // Vendor not found 1173 | {0xce,0xdd,0xde}, // Vendor not found 1174 | {0xd0,0x13,0xfd}, // LG Electronics (Mobile Communications) 1175 | {0xd0,0x22,0xbe}, // SAMSUNG ELECTRO-MECHANICS(THAILAND) 1176 | {0xd0,0x25,0x98}, // Apple, Inc. 1177 | {0xd0,0x33,0x11}, // Apple, Inc. 1178 | {0xd0,0x65,0xca}, // HUAWEI TECHNOLOGIES CO.,LTD 1179 | {0xd0,0x87,0xe2}, // Samsung Electronics Co.,Ltd 1180 | {0xd0,0x92,0x9e}, // Microsoft Corporation 1181 | {0xd0,0xc5,0xf3}, // Apple, Inc. 1182 | {0xd0,0xe1,0x40}, // Apple, Inc. 1183 | {0xd2,0x19,0x51}, // Vendor not found 1184 | {0xd2,0x1c,0x9f}, // Vendor not found 1185 | {0xd2,0x2c,0xc5}, // Vendor not found 1186 | {0xd2,0x2f,0xe7}, // Vendor not found 1187 | {0xd2,0x46,0x7f}, // Vendor not found 1188 | {0xd2,0x4f,0x5b}, // Vendor not found 1189 | {0xd2,0x4f,0xd1}, // Vendor not found 1190 | {0xd2,0x53,0x4f}, // Vendor not found 1191 | {0xd2,0x68,0x7a}, // Vendor not found 1192 | {0xd2,0x6f,0xc9}, // Vendor not found 1193 | {0xd2,0x6f,0xf0}, // Vendor not found 1194 | {0xd2,0x84,0xa9}, // Vendor not found 1195 | {0xd2,0x92,0x2e}, // Vendor not found 1196 | {0xd2,0x95,0x62}, // Vendor not found 1197 | {0xd2,0xa1,0x91}, // Vendor not found 1198 | {0xd2,0xaf,0x00}, // Vendor not found 1199 | {0xd2,0xbb,0x66}, // Vendor not found 1200 | {0xd2,0xbc,0xd3}, // Vendor not found 1201 | {0xd2,0xd6,0xb0}, // Vendor not found 1202 | {0xd2,0xdd,0x7d}, // Vendor not found 1203 | {0xd2,0xe0,0x0a}, // Vendor not found 1204 | {0xd4,0x61,0x2e}, // HUAWEI TECHNOLOGIES CO.,LTD 1205 | {0xd4,0x6e,0x5c}, // HUAWEI TECHNOLOGIES CO.,LTD 1206 | {0xd4,0xae,0x05}, // Samsung Electronics Co.,Ltd 1207 | {0xd4,0xdc,0xcd}, // Apple, Inc. 1208 | {0xd6,0x09,0x54}, // Vendor not found 1209 | {0xd6,0x17,0xbf}, // Vendor not found 1210 | {0xd6,0x2b,0xb6}, // Vendor not found 1211 | {0xd6,0x34,0xed}, // Vendor not found 1212 | {0xd6,0x48,0xbc}, // Vendor not found 1213 | {0xd6,0x73,0x79}, // Vendor not found 1214 | {0xd6,0x78,0x8b}, // Vendor not found 1215 | {0xd6,0x85,0x51}, // Vendor not found 1216 | {0xd6,0x88,0x31}, // Vendor not found 1217 | {0xd6,0x95,0x3c}, // Vendor not found 1218 | {0xd6,0xd6,0xae}, // Vendor not found 1219 | {0xd6,0xdd,0xc0}, // Vendor not found 1220 | {0xd8,0x0f,0x99}, // Hon Hai Precision Ind. Co.,Ltd. 1221 | {0xd8,0x5b,0x2a}, // Samsung Electronics Co.,Ltd 1222 | {0xd8,0x9a,0x34}, // Beijing SHENQI Technology Co., Ltd. 1223 | {0xd8,0x9e,0x3f}, // Apple, Inc. 1224 | {0xd8,0xbb,0x2c}, // Apple, Inc. 1225 | {0xd8,0xc4,0x6a}, // Murata Manufacturing Co., Ltd. 1226 | {0xd8,0xc4,0xe9}, // Samsung Electronics Co.,Ltd 1227 | {0xd8,0xcf,0x9c}, // Apple, Inc. 1228 | {0xd8,0xd1,0xcb}, // Apple, Inc. 1229 | {0xd8,0xe5,0x6d}, // TCT mobile ltd 1230 | {0xda,0x10,0x69}, // Vendor not found 1231 | {0xda,0x26,0xec}, // Vendor not found 1232 | {0xda,0x37,0xb0}, // Vendor not found 1233 | {0xda,0x53,0xc1}, // Vendor not found 1234 | {0xda,0x5d,0x61}, // Vendor not found 1235 | {0xda,0x6b,0x3a}, // Vendor not found 1236 | {0xda,0x75,0x16}, // Vendor not found 1237 | {0xda,0x92,0x66}, // Vendor not found 1238 | {0xda,0xa1,0x19}, // Vendor not found 1239 | {0xda,0xd7,0x44}, // Vendor not found 1240 | {0xda,0xe6,0x4b}, // Vendor not found 1241 | {0xda,0xe9,0x77}, // Vendor not found 1242 | {0xda,0xf1,0xe2}, // Vendor not found 1243 | {0xdc,0x0b,0x34}, // LG Electronics (Mobile Communications) 1244 | {0xdc,0x2b,0x61}, // Apple, Inc. 1245 | {0xdc,0x53,0x60}, // Intel Corporate 1246 | {0xdc,0x66,0x72}, // Samsung Electronics Co.,Ltd 1247 | {0xdc,0x86,0xd8}, // Apple, Inc. 1248 | {0xdc,0xa9,0x04}, // Apple, Inc. 1249 | {0xdc,0xd9,0x16}, // HUAWEI TECHNOLOGIES CO.,LTD 1250 | {0xdc,0xee,0x06}, // HUAWEI TECHNOLOGIES CO.,LTD 1251 | {0xdc,0xf0,0x90}, // Nubia Technology Co.,Ltd. 1252 | {0xde,0x19,0x78}, // Vendor not found 1253 | {0xde,0x3e,0x3a}, // Vendor not found 1254 | {0xde,0x43,0x63}, // Vendor not found 1255 | {0xde,0x47,0xd5}, // Vendor not found 1256 | {0xde,0x4f,0xbc}, // Vendor not found 1257 | {0xde,0x57,0x68}, // Vendor not found 1258 | {0xde,0x64,0x78}, // Vendor not found 1259 | {0xde,0x64,0x94}, // Vendor not found 1260 | {0xde,0x6a,0xfc}, // Vendor not found 1261 | {0xde,0x71,0x19}, // Vendor not found 1262 | {0xde,0x77,0x3e}, // Vendor not found 1263 | {0xde,0x84,0xd1}, // Vendor not found 1264 | {0xde,0x8a,0x41}, // Vendor not found 1265 | {0xde,0x8b,0x43}, // Vendor not found 1266 | {0xde,0x8b,0xa1}, // Vendor not found 1267 | {0xde,0x96,0x72}, // Vendor not found 1268 | {0xde,0x9b,0x5d}, // Vendor not found 1269 | {0xde,0x9d,0x31}, // Vendor not found 1270 | {0xde,0xc1,0x1c}, // Vendor not found 1271 | {0xde,0xdf,0x13}, // Vendor not found 1272 | {0xde,0xe2,0xc6}, // Vendor not found 1273 | {0xde,0xe2,0xed}, // Vendor not found 1274 | {0xde,0xe7,0x13}, // Vendor not found 1275 | {0xe0,0x19,0x1d}, // HUAWEI TECHNOLOGIES CO.,LTD 1276 | {0xe0,0x2c,0xb2}, // Lenovo Mobile Communication (Wuhan) Company Limited 1277 | {0xe0,0x63,0xe5}, // Sony Mobile Communications AB 1278 | {0xe0,0x66,0x78}, // Apple, Inc. 1279 | {0xe0,0x98,0x61}, // Motorola Mobility LLC, a Lenovo Company 1280 | {0xe2,0x04,0x34}, // Vendor not found 1281 | {0xe2,0x07,0x3b}, // Vendor not found 1282 | {0xe2,0x17,0xc3}, // Vendor not found 1283 | {0xe2,0x58,0x73}, // Vendor not found 1284 | {0xe2,0x8a,0x27}, // Vendor not found 1285 | {0xe2,0x94,0x3d}, // Vendor not found 1286 | {0xe2,0x98,0xa4}, // Vendor not found 1287 | {0xe2,0xa3,0xd3}, // Vendor not found 1288 | {0xe2,0xb9,0x4e}, // Vendor not found 1289 | {0xe2,0xb9,0xcc}, // Vendor not found 1290 | {0xe2,0xd6,0xa8}, // Vendor not found 1291 | {0xe2,0xf1,0x5d}, // Vendor not found 1292 | {0xe4,0x04,0x39}, // TomTom Software Ltd 1293 | {0xe4,0x25,0xe7}, // Apple, Inc. 1294 | {0xe4,0x40,0xe2}, // Samsung Electronics Co.,Ltd 1295 | {0xe4,0x58,0xb8}, // Samsung Electronics Co.,Ltd 1296 | {0xe4,0x58,0xe7}, // Samsung Electronics Co.,Ltd 1297 | {0xe4,0x90,0x7e}, // Motorola Mobility LLC, a Lenovo Company 1298 | {0xe4,0x98,0xd1}, // Microsoft Mobile Oy 1299 | {0xe4,0xa7,0xa0}, // Intel Corporate 1300 | {0xe4,0xb3,0x18}, // Intel Corporate 1301 | {0xe4,0xe4,0xab}, // Apple, Inc. 1302 | {0xe4,0xf8,0xef}, // Samsung Electronics Co.,Ltd 1303 | {0xe6,0x03,0x25}, // Vendor not found 1304 | {0xe6,0x15,0x6d}, // Vendor not found 1305 | {0xe6,0x1d,0xfa}, // Vendor not found 1306 | {0xe6,0x28,0xc6}, // Vendor not found 1307 | {0xe6,0x2a,0xa9}, // Vendor not found 1308 | {0xe6,0x30,0xc4}, // Vendor not found 1309 | {0xe6,0x40,0x7d}, // Vendor not found 1310 | {0xe6,0x59,0xf5}, // Vendor not found 1311 | {0xe6,0x67,0xe6}, // Vendor not found 1312 | {0xe6,0x74,0x1d}, // Vendor not found 1313 | {0xe6,0x7d,0x1d}, // Vendor not found 1314 | {0xe6,0x81,0x2f}, // Vendor not found 1315 | {0xe6,0x82,0x63}, // Vendor not found 1316 | {0xe6,0xb4,0x89}, // Vendor not found 1317 | {0xe6,0xb6,0x7e}, // Vendor not found 1318 | {0xe6,0xbc,0x39}, // Vendor not found 1319 | {0xe6,0xd8,0x37}, // Vendor not found 1320 | {0xe6,0xf2,0xe5}, // Vendor not found 1321 | {0xe6,0xf3,0x52}, // Vendor not found 1322 | {0xe8,0x15,0x0e}, // Nokia Corporation 1323 | {0xe8,0x3a,0x12}, // Samsung Electronics Co.,Ltd 1324 | {0xe8,0x50,0x8b}, // SAMSUNG ELECTRO-MECHANICS(THAILAND) 1325 | {0xe8,0x8d,0x28}, // Apple, Inc. 1326 | {0xe8,0x93,0x09}, // Samsung Electronics Co.,Ltd 1327 | {0xea,0x07,0x00}, // Vendor not found 1328 | {0xea,0x11,0x76}, // Vendor not found 1329 | {0xea,0x20,0xcb}, // Vendor not found 1330 | {0xea,0x28,0xf9}, // Vendor not found 1331 | {0xea,0x2b,0xd1}, // Vendor not found 1332 | {0xea,0x2d,0xe7}, // Vendor not found 1333 | {0xea,0x30,0x0d}, // Vendor not found 1334 | {0xea,0x52,0x88}, // Vendor not found 1335 | {0xea,0x57,0xed}, // Vendor not found 1336 | {0xea,0x62,0xbc}, // Vendor not found 1337 | {0xea,0x7d,0x77}, // Vendor not found 1338 | {0xea,0x8f,0xda}, // Vendor not found 1339 | {0xea,0x9c,0x27}, // Vendor not found 1340 | {0xea,0x9c,0x7a}, // Vendor not found 1341 | {0xea,0xb0,0xb1}, // Vendor not found 1342 | {0xea,0xb1,0xb0}, // Vendor not found 1343 | {0xea,0xb2,0x3d}, // Vendor not found 1344 | {0xea,0xb8,0xeb}, // Vendor not found 1345 | {0xea,0xda,0x7c}, // Vendor not found 1346 | {0xea,0xdb,0xd5}, // Vendor not found 1347 | {0xea,0xde,0xbf}, // Vendor not found 1348 | {0xea,0xde,0xd4}, // Vendor not found 1349 | {0xea,0xe7,0x25}, // Vendor not found 1350 | {0xea,0xeb,0xed}, // Vendor not found 1351 | {0xec,0x10,0x7b}, // Samsung Electronics Co.,Ltd 1352 | {0xec,0x1f,0x72}, // SAMSUNG ELECTRO-MECHANICS(THAILAND) 1353 | {0xec,0x35,0x86}, // Apple, Inc. 1354 | {0xec,0x88,0x92}, // Motorola Mobility LLC, a Lenovo Company 1355 | {0xec,0x8e,0xb5}, // Hewlett Packard 1356 | {0xec,0x9b,0xf3}, // SAMSUNG ELECTRO-MECHANICS(THAILAND) 1357 | {0xee,0x07,0xaa}, // Vendor not found 1358 | {0xee,0x0f,0xf3}, // Vendor not found 1359 | {0xee,0x12,0xd7}, // Vendor not found 1360 | {0xee,0x30,0x5d}, // Vendor not found 1361 | {0xee,0x40,0xee}, // Vendor not found 1362 | {0xee,0x58,0xa0}, // Vendor not found 1363 | {0xee,0x91,0xcb}, // Vendor not found 1364 | {0xee,0xa3,0x2a}, // Vendor not found 1365 | {0xee,0xb5,0x6e}, // Vendor not found 1366 | {0xee,0xb8,0xd2}, // Vendor not found 1367 | {0xee,0xdb,0xce}, // Vendor not found 1368 | {0xee,0xe5,0x4c}, // Vendor not found 1369 | {0xee,0xf9,0xd5}, // Vendor not found 1370 | {0xf0,0x25,0xb7}, // SAMSUNG ELECTRO-MECHANICS(THAILAND) 1371 | {0xf0,0x27,0x65}, // Murata Manufacturing Co., Ltd. 1372 | {0xf0,0x43,0x47}, // HUAWEI TECHNOLOGIES CO.,LTD 1373 | {0xf0,0x72,0x8c}, // Samsung Electronics Co.,Ltd 1374 | {0xf0,0x79,0x60}, // Apple, Inc. 1375 | {0xf0,0xcb,0xa1}, // Apple, Inc. 1376 | {0xf0,0xd5,0xbf}, // Intel Corporate 1377 | {0xf0,0xdb,0xf8}, // Apple, Inc. 1378 | {0xf0,0xee,0x10}, // Samsung Electronics Co.,Ltd 1379 | {0xf2,0x11,0x83}, // Vendor not found 1380 | {0xf2,0x50,0x62}, // Vendor not found 1381 | {0xf2,0x69,0xe6}, // Vendor not found 1382 | {0xf2,0x7d,0x6f}, // Vendor not found 1383 | {0xf2,0x94,0x75}, // Vendor not found 1384 | {0xf2,0x99,0xf3}, // Vendor not found 1385 | {0xf2,0xa6,0x4a}, // Vendor not found 1386 | {0xf2,0xbb,0x69}, // Vendor not found 1387 | {0xf2,0xd1,0xe0}, // Vendor not found 1388 | {0xf2,0xd8,0x04}, // Vendor not found 1389 | {0xf4,0x09,0xd8}, // SAMSUNG ELECTRO-MECHANICS(THAILAND) 1390 | {0xf4,0x1b,0xa1}, // Apple, Inc. 1391 | {0xf4,0x42,0x8f}, // Samsung Electronics Co.,Ltd 1392 | {0xf4,0x5c,0x89}, // Apple, Inc. 1393 | {0xf4,0x8c,0x50}, // Intel Corporate 1394 | {0xf4,0xcb,0x52}, // HUAWEI TECHNOLOGIES CO.,LTD 1395 | {0xf4,0xf1,0x5a}, // Apple, Inc. 1396 | {0xf6,0x2c,0x3a}, // Vendor not found 1397 | {0xf6,0x3c,0x3c}, // Vendor not found 1398 | {0xf6,0x41,0xc6}, // Vendor not found 1399 | {0xf6,0x47,0x6b}, // Vendor not found 1400 | {0xf6,0x61,0xbc}, // Vendor not found 1401 | {0xf6,0x61,0xd9}, // Vendor not found 1402 | {0xf6,0x69,0x08}, // Vendor not found 1403 | {0xf6,0x6d,0xb9}, // Vendor not found 1404 | {0xf6,0x6e,0xcf}, // Vendor not found 1405 | {0xf6,0x76,0x2d}, // Vendor not found 1406 | {0xf6,0x84,0xb0}, // Vendor not found 1407 | {0xf6,0xda,0xf3}, // Vendor not found 1408 | {0xf6,0xff,0x7d}, // Vendor not found 1409 | {0xf8,0x23,0xb2}, // HUAWEI TECHNOLOGIES CO.,LTD 1410 | {0xf8,0x27,0x93}, // Apple, Inc. 1411 | {0xf8,0x84,0xf2}, // Samsung Electronics Co.,Ltd 1412 | {0xf8,0xa9,0xd0}, // LG Electronics (Mobile Communications) 1413 | {0xf8,0xe0,0x79}, // Motorola Mobility LLC, a Lenovo Company 1414 | {0xfa,0x07,0x7d}, // Vendor not found 1415 | {0xfa,0x15,0x66}, // Vendor not found 1416 | {0xfa,0x1a,0xdf}, // Vendor not found 1417 | {0xfa,0x3a,0x49}, // Vendor not found 1418 | {0xfa,0x3f,0x81}, // Vendor not found 1419 | {0xfa,0x40,0xb8}, // Vendor not found 1420 | {0xfa,0x4e,0xc4}, // Vendor not found 1421 | {0xfa,0x57,0x0b}, // Vendor not found 1422 | {0xfa,0x5c,0x4b}, // Vendor not found 1423 | {0xfa,0xa5,0xc0}, // Vendor not found 1424 | {0xfa,0xb2,0xbd}, // Vendor not found 1425 | {0xfa,0xf3,0xbe}, // Vendor not found 1426 | {0xfa,0xf5,0xdb}, // Vendor not found 1427 | {0xfa,0xf7,0x26}, // Vendor not found 1428 | {0xfc,0x3f,0x7c}, // HUAWEI TECHNOLOGIES CO.,LTD 1429 | {0xfc,0xc2,0xde}, // Murata Manufacturing Co., Ltd. 1430 | {0xfc,0xdb,0xb3}, // Murata Manufacturing Co., Ltd. 1431 | {0xfc,0xe9,0x98}, // Apple, Inc. 1432 | {0xfe,0x07,0x25}, // Vendor not found 1433 | {0xfe,0x0e,0x1c}, // Vendor not found 1434 | {0xfe,0x14,0xd5}, // Vendor not found 1435 | {0xfe,0x1b,0x0d}, // Vendor not found 1436 | {0xfe,0x2a,0x15}, // Vendor not found 1437 | {0xfe,0x49,0xdf}, // Vendor not found 1438 | {0xfe,0x56,0x12}, // Vendor not found 1439 | {0xfe,0x5a,0x2c}, // Vendor not found 1440 | {0xfe,0x62,0xfd}, // Vendor not found 1441 | {0xfe,0x6b,0x24}, // Vendor not found 1442 | {0xfe,0x6f,0x03}, // Vendor not found 1443 | {0xfe,0x79,0x29}, // Vendor not found 1444 | {0xfe,0x7c,0x37}, // Vendor not found 1445 | {0xfe,0x7e,0x42}, // Vendor not found 1446 | {0xfe,0x9b,0x9b}, // Vendor not found 1447 | {0xfe,0x9c,0xe4}, // Vendor not found 1448 | {0xfe,0x9d,0x8d}, // Vendor not found 1449 | {0xfe,0xb8,0x28}, // Vendor not found 1450 | {0xfe,0xd3,0x24}, // Vendor not found 1451 | {0xfe,0xde,0x0b}, // Vendor not found 1452 | {0xfe,0xe8,0x70}, // Vendor not found 1453 | {0xfe,0xed,0x21}, // Vendor not found 1454 | {0xfe,0xf7,0x82}, // Vendor not found 1455 | }; 1456 | -------------------------------------------------------------------------------- /valora.ino: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | #include "oui.h" 4 | 5 | extern "C" { 6 | #include "user_interface.h" 7 | } 8 | 9 | byte channel; 10 | byte t = 0; 11 | String alfa = "1234567890qwertyuiopasdfghjkklzxcvbnm QWERTYUIOPASDFGHJKLZXCVBNM_"; 12 | 13 | uint8_t packet[128] = { 14 | 15 | /* ---- control frame */ 16 | /* 0000 */ 0x40, 0x00, 0x00, 0x00, /* type/subtype: probe request */ 17 | /* 0004 */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* receiver address: broadcast */ 18 | /* 000a */ 0x12, 0x34, 0x56, 0x78, 0x9a, 0xbc, /* transmitter address: STA */ 19 | /* 0010 */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* bss id: broadcast */ 20 | /* 0016 */ 0x40, 0x01, /* sequence/fragment number */ 21 | 22 | /* ---- management frame ---- */ 23 | /* 0018 */ 0x00, /* tag number: 0 (SSID parameter set) */ 24 | /* 0019 */ 0x08, /* tag length: 8 */ 25 | /* 001a */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* SSID: */ 26 | 27 | /* 0022 */ 0x01, /* tag number: 1 (Supported Rates) */ 28 | /* 0023 */ 0x04, /* tag length: 4 */ 29 | /* 0024 */ 0x02, 0x04, 0x0b, 0x16, 30 | 31 | /* 0028 */ 0x32, /* tag number: 50 (Extended supported rates) */ 32 | /* 0029 */ 0x08, /* tag length: 8 */ 33 | /* 002a */ 0x0c, 0x12, 0x18, 0x24, 0x30, 0x48, 0x60, 0x6c, 34 | 35 | /* 0032 */ 0x03, /* tag number: 3 (Current channel) */ 36 | /* 0033 */ 0x01, /* tag length: 1 */ 37 | /* 0034 */ 0x09, /* channel: 9 */ 38 | 39 | /* 0035 */ 0x2d, /* tag number: 45 (HT Capabilities) */ 40 | /* 0036 */ 0x1a, /* tag length: 26 */ 41 | /* 0037 */ 0x20, 0x00, 0x1a, 0xff, 0x00, 0x00, 0x00, 0x00, 42 | /* 003f */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 43 | /* 0047 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 44 | /* 004f */ 0x00, 0x00, 45 | 46 | /* 0051 */ 0x7f, /* tag number: 127 (Extended Capabilities) */ 47 | /* 0052 */ 0x04, /* tag length: 4 */ 48 | /* 0053 */ 0x00, 0x00, 0x08, 0x04 49 | 50 | }; 51 | 52 | void setup() { 53 | delay(500); 54 | pinMode(LED_BUILTIN, OUTPUT); 55 | wifi_set_opmode(STATION_MODE); 56 | wifi_promiscuous_enable(1); 57 | } 58 | 59 | void loop() { 60 | // randomize channel 61 | channel = random(1,12); 62 | wifi_set_channel(channel); 63 | 64 | // randomize SRC MAC 65 | int idx = random(sizeof(oui)/3); 66 | packet[10] = oui[idx][0]; 67 | packet[11] = oui[idx][1]; 68 | packet[12] = oui[idx][2]; 69 | packet[13] = random(256); 70 | packet[14] = random(256); 71 | packet[15] = random(256); 72 | 73 | // randomize SSID 74 | packet[26] = alfa[random(65)]; 75 | packet[27] = alfa[random(65)]; 76 | packet[28] = alfa[random(65)]; 77 | packet[29] = alfa[random(65)]; 78 | packet[30] = alfa[random(65)]; 79 | packet[31] = alfa[random(65)]; 80 | packet[32] = alfa[random(65)]; 81 | packet[33] = alfa[random(65)]; 82 | 83 | // set channel accordingly 84 | packet[53] = channel; 85 | 86 | // send raw packet 87 | wifi_send_pkt_freedom(packet, 87, 0); 88 | wifi_send_pkt_freedom(packet, 87, 0); 89 | wifi_send_pkt_freedom(packet, 87, 0); 90 | delay(1); 91 | 92 | // do some blinking 93 | digitalWrite(LED_BUILTIN, t++ & 0x80); 94 | } 95 | --------------------------------------------------------------------------------