Merged in macsniff
This commit is contained in:
parent
7d3b283064
commit
0840573f38
@ -1,32 +0,0 @@
|
|||||||
|
|
||||||
// Basic Config
|
|
||||||
#include "globals.h"
|
|
||||||
|
|
||||||
#ifdef BLECOUNTER
|
|
||||||
#include <BLEDevice.h>
|
|
||||||
#include <BLEUtils.h>
|
|
||||||
#include <BLEScan.h>
|
|
||||||
#include <BLEAdvertisedDevice.h>
|
|
||||||
|
|
||||||
// Local logging tag
|
|
||||||
static const char *TAG = "blecount";
|
|
||||||
|
|
||||||
class MyAdvertisedDeviceCallbacks: public BLEAdvertisedDeviceCallbacks {
|
|
||||||
void onResult(BLEAdvertisedDevice advertisedDevice) {
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
void BLECount() {
|
|
||||||
u8x8.clearLine(3);
|
|
||||||
u8x8.drawString(0,3,"BLE Scan...");
|
|
||||||
BLEDevice::init(PROGNAME);
|
|
||||||
BLEScan* pBLEScan = BLEDevice::getScan(); //create new scan
|
|
||||||
pBLEScan->setAdvertisedDeviceCallbacks(new MyAdvertisedDeviceCallbacks());
|
|
||||||
pBLEScan->setActiveScan(true); //active scan uses more power, but get results faster
|
|
||||||
BLEScanResults foundDevices = pBLEScan->start(cfg.blescancycle);
|
|
||||||
u8x8.clearLine(3);
|
|
||||||
u8x8.setCursor(0,3);
|
|
||||||
blenum=foundDevices.getCount();
|
|
||||||
u8x8.printf("BLE#: %4i",blenum);
|
|
||||||
}
|
|
||||||
#endif
|
|
144
src/macsniff.cpp
Normal file
144
src/macsniff.cpp
Normal file
@ -0,0 +1,144 @@
|
|||||||
|
|
||||||
|
// Basic Config
|
||||||
|
#include "main.h"
|
||||||
|
#include "globals.h"
|
||||||
|
|
||||||
|
#ifdef BLECOUNTER
|
||||||
|
#include <BLEDevice.h>
|
||||||
|
#include <BLEUtils.h>
|
||||||
|
#include <BLEScan.h>
|
||||||
|
#include <BLEAdvertisedDevice.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef VENDORFILTER
|
||||||
|
#include <array>
|
||||||
|
#include <algorithm>
|
||||||
|
#include "vendor_array.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// Local logging tag
|
||||||
|
static const char *TAG = "macsniff";
|
||||||
|
|
||||||
|
static wifi_country_t wifi_country = {.cc=WIFI_MY_COUNTRY, .schan=WIFI_CHANNEL_MIN, .nchan=WIFI_CHANNEL_MAX, .policy=WIFI_COUNTRY_POLICY_MANUAL};
|
||||||
|
|
||||||
|
uint16_t currentScanDevice = 0;
|
||||||
|
|
||||||
|
bool mac_add(uint8_t *paddr, int8_t rssi, bool sniff_type) {
|
||||||
|
|
||||||
|
char counter [11]; // uint32_t -> 4 byte -> 10 decimals + '0' terminator -> 11 chars
|
||||||
|
char macbuf [21]; // uint64_t -> 8 byte -> 20 decimals + '0' terminator -> 21 chars
|
||||||
|
char typebuff[8] ;
|
||||||
|
bool added = false;
|
||||||
|
uint32_t hashedmac, vendor2int;
|
||||||
|
uint64_t addr2int;
|
||||||
|
std::pair<std::set<uint32_t>::iterator, bool> newmac;
|
||||||
|
|
||||||
|
addr2int = ( (uint64_t)paddr[0] ) | ( (uint64_t)paddr[1] << 8 ) | ( (uint64_t)paddr[2] << 16 ) | \
|
||||||
|
( (uint64_t)paddr[3] << 24 ) | ( (uint64_t)paddr[4] << 32 ) | ( (uint64_t)paddr[5] << 40 );
|
||||||
|
|
||||||
|
#ifdef VENDORFILTER
|
||||||
|
vendor2int = ( (uint32_t)paddr[2] ) | ( (uint32_t)paddr[1] << 8 ) | ( (uint32_t)paddr[0] << 16 );
|
||||||
|
if ( std::find(vendors.begin(), vendors.end(), vendor2int) != vendors.end() ) {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//if (!(addr2int & WIFI_MAC_FILTER_MASK)) { // filter local and group MACs
|
||||||
|
|
||||||
|
// salt and hash MAC, and if new unique one, store hash in container and increment counter on display
|
||||||
|
addr2int <<= 8;
|
||||||
|
addr2int += salt; // append salt value to MAC before hashing it
|
||||||
|
itoa(addr2int, macbuf, 10); // convert 64 bit MAC to base 10 decimal string
|
||||||
|
hashedmac = rokkit(macbuf, 10); // hash MAC for privacy, use 10 chars to fit in uint32_t container
|
||||||
|
|
||||||
|
if (sniff_type == MAC_SNIFF_WIFI ) {
|
||||||
|
newmac = wifis.insert(hashedmac); // store hashed MAC if new unique
|
||||||
|
strcpy(typebuff, "WiFi");
|
||||||
|
} else if (sniff_type == MAC_SNIFF_BLE ) {
|
||||||
|
newmac = bles.insert(hashedmac); // store hashed MAC if new unique
|
||||||
|
strcpy(typebuff, "BLE ");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (newmac.second) { // first time seen this WIFI/BLE MAC
|
||||||
|
// Insert to glbal counter
|
||||||
|
macs.insert(hashedmac);
|
||||||
|
added = true;
|
||||||
|
itoa(macs.size(), counter, 10); // base 10 decimal counter value
|
||||||
|
u8x8.draw2x2String(0, 0, counter);
|
||||||
|
ESP_LOGI(TAG, "%s RSSI %04d -> Hash %010u -> #%04i", typebuff, rssi, hashedmac, macs.size());
|
||||||
|
} else {
|
||||||
|
ESP_LOGI(TAG, "%s RSSI %04d -> already seen", typebuff, rssi);
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifdef VENDORFILTER
|
||||||
|
} else {
|
||||||
|
// Very noisy
|
||||||
|
//ESP_LOGI(TAG, "Filtered MAC %02X:%02X:%02X:%02X:%02X:%02X", paddr[0],paddr[1],paddr[2],paddr[3],paddr[5],paddr[5]);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// True if MAC (WiFi/BLE was new)
|
||||||
|
return added;
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifdef BLECOUNTER
|
||||||
|
|
||||||
|
class MyAdvertisedDeviceCallbacks: public BLEAdvertisedDeviceCallbacks {
|
||||||
|
void onResult(BLEAdvertisedDevice advertisedDevice) {
|
||||||
|
uint8_t *p = (uint8_t *) advertisedDevice.getAddress().getNative();
|
||||||
|
|
||||||
|
// Current devices seen on this scan session
|
||||||
|
currentScanDevice++;
|
||||||
|
mac_add(p, advertisedDevice.getRSSI(), MAC_SNIFF_BLE);
|
||||||
|
u8x8.setCursor(12,3);
|
||||||
|
u8x8.printf("%d", currentScanDevice);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
void BLECount() {
|
||||||
|
int blenum = 0; // Total device seen on this scan session
|
||||||
|
currentScanDevice = 0; // Set 0 seen device on this scan session
|
||||||
|
u8x8.clearLine(3);
|
||||||
|
u8x8.drawString(0,3,"BLE Scan...");
|
||||||
|
BLEDevice::init(PROGNAME);
|
||||||
|
BLEScan* pBLEScan = BLEDevice::getScan(); //create new scan
|
||||||
|
pBLEScan->setAdvertisedDeviceCallbacks(new MyAdvertisedDeviceCallbacks());
|
||||||
|
pBLEScan->setActiveScan(true); //active scan uses more power, but get results faster
|
||||||
|
BLEScanResults foundDevices = pBLEScan->start(cfg.blescancycle);
|
||||||
|
blenum=foundDevices.getCount();
|
||||||
|
u8x8.clearLine(3);
|
||||||
|
u8x8.setCursor(0,3);
|
||||||
|
u8x8.printf("BLE#: %-5i %-3i",bles.size(), blenum);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
void wifi_sniffer_init(void) {
|
||||||
|
wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
|
||||||
|
cfg.nvs_enable = 0; // we don't need any wifi settings from NVRAM
|
||||||
|
wifi_promiscuous_filter_t filter = {.filter_mask = WIFI_PROMIS_FILTER_MASK_MGMT}; // we need only MGMT frames
|
||||||
|
ESP_ERROR_CHECK(esp_wifi_init(&cfg));
|
||||||
|
ESP_ERROR_CHECK(esp_wifi_set_country(&wifi_country));
|
||||||
|
ESP_ERROR_CHECK(esp_wifi_set_storage(WIFI_STORAGE_RAM) );
|
||||||
|
ESP_ERROR_CHECK(esp_wifi_set_mode(WIFI_MODE_NULL) );
|
||||||
|
ESP_ERROR_CHECK(esp_wifi_set_promiscuous_filter(&filter)); // set MAC frame filter
|
||||||
|
ESP_ERROR_CHECK(esp_wifi_set_promiscuous_rx_cb(&wifi_sniffer_packet_handler));
|
||||||
|
ESP_ERROR_CHECK(esp_wifi_set_promiscuous(true));
|
||||||
|
}
|
||||||
|
|
||||||
|
void wifi_sniffer_set_channel(uint8_t channel) {
|
||||||
|
esp_wifi_set_channel(channel, WIFI_SECOND_CHAN_NONE);
|
||||||
|
}
|
||||||
|
|
||||||
|
void wifi_sniffer_packet_handler(void* buff, wifi_promiscuous_pkt_type_t type) {
|
||||||
|
const wifi_promiscuous_pkt_t *ppkt = (wifi_promiscuous_pkt_t *)buff;
|
||||||
|
const wifi_ieee80211_packet_t *ipkt = (wifi_ieee80211_packet_t *)ppkt->payload;
|
||||||
|
const wifi_ieee80211_mac_hdr_t *hdr = &ipkt->hdr;
|
||||||
|
|
||||||
|
if (( cfg.rssilimit == 0 ) || (ppkt->rx_ctrl.rssi > cfg.rssilimit )) { // rssi is negative value
|
||||||
|
uint8_t *p = (uint8_t *) hdr->addr2;
|
||||||
|
mac_add(p, ppkt->rx_ctrl.rssi, MAC_SNIFF_WIFI) ;
|
||||||
|
} else {
|
||||||
|
ESP_LOGI(TAG, "WiFi RSSI %04d -> ignoring (limit: %i)", ppkt->rx_ctrl.rssi, cfg.rssilimit);
|
||||||
|
}
|
||||||
|
yield();
|
||||||
|
}
|
||||||
|
|
28
src/macsniff.h
Normal file
28
src/macsniff.h
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
// ESP32 Functions
|
||||||
|
#include <esp_wifi.h>
|
||||||
|
|
||||||
|
#define MAC_SNIFF_WIFI 0
|
||||||
|
#define MAC_SNIFF_BLE 1
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
unsigned frame_ctrl:16;
|
||||||
|
unsigned duration_id:16;
|
||||||
|
uint8_t addr1[6]; /* receiver address */
|
||||||
|
uint8_t addr2[6]; /* sender address */
|
||||||
|
uint8_t addr3[6]; /* filtering address */
|
||||||
|
unsigned sequence_ctrl:16;
|
||||||
|
uint8_t addr4[6]; /* optional */
|
||||||
|
} wifi_ieee80211_mac_hdr_t;
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
wifi_ieee80211_mac_hdr_t hdr;
|
||||||
|
uint8_t payload[0]; /* network data ended with 4 bytes csum (CRC32) */
|
||||||
|
} wifi_ieee80211_packet_t;
|
||||||
|
|
||||||
|
void BLECount();
|
||||||
|
void wifi_sniffer_init(void);
|
||||||
|
void wifi_sniffer_set_channel(uint8_t channel);
|
||||||
|
void wifi_sniffer_packet_handler(void *buff, wifi_promiscuous_pkt_type_t type);
|
||||||
|
|
||||||
|
// function defined in rokkithash.cpp
|
||||||
|
uint32_t rokkit(const char * , int );
|
1440
src/vendor_array.cpp
1440
src/vendor_array.cpp
File diff suppressed because it is too large
Load Diff
@ -1,103 +0,0 @@
|
|||||||
// Basic Config
|
|
||||||
#include "main.h"
|
|
||||||
#include "globals.h"
|
|
||||||
|
|
||||||
// ESP32 Functions
|
|
||||||
#include <esp_wifi.h>
|
|
||||||
|
|
||||||
#ifdef VENDORFILTER
|
|
||||||
#include <array>
|
|
||||||
#include <algorithm>
|
|
||||||
#include "vendor_array.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// Local logging tag
|
|
||||||
static const char *TAG = "wifisniffer";
|
|
||||||
|
|
||||||
// function defined in rokkithash.cpp
|
|
||||||
uint32_t rokkit(const char * , int );
|
|
||||||
|
|
||||||
static wifi_country_t wifi_country = {.cc=WIFI_MY_COUNTRY, .schan=WIFI_CHANNEL_MIN, .nchan=WIFI_CHANNEL_MAX, .policy=WIFI_COUNTRY_POLICY_MANUAL};
|
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
unsigned frame_ctrl:16;
|
|
||||||
unsigned duration_id:16;
|
|
||||||
uint8_t addr1[6]; /* receiver address */
|
|
||||||
uint8_t addr2[6]; /* sender address */
|
|
||||||
uint8_t addr3[6]; /* filtering address */
|
|
||||||
unsigned sequence_ctrl:16;
|
|
||||||
uint8_t addr4[6]; /* optional */
|
|
||||||
} wifi_ieee80211_mac_hdr_t;
|
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
wifi_ieee80211_mac_hdr_t hdr;
|
|
||||||
uint8_t payload[0]; /* network data ended with 4 bytes csum (CRC32) */
|
|
||||||
} wifi_ieee80211_packet_t;
|
|
||||||
|
|
||||||
extern void wifi_sniffer_init(void);
|
|
||||||
extern void wifi_sniffer_set_channel(uint8_t channel);
|
|
||||||
extern void wifi_sniffer_packet_handler(void *buff, wifi_promiscuous_pkt_type_t type);
|
|
||||||
|
|
||||||
void wifi_sniffer_init(void) {
|
|
||||||
wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
|
|
||||||
cfg.nvs_enable = 0; // we don't need any wifi settings from NVRAM
|
|
||||||
wifi_promiscuous_filter_t filter = {.filter_mask = WIFI_PROMIS_FILTER_MASK_MGMT}; // we need only MGMT frames
|
|
||||||
ESP_ERROR_CHECK(esp_wifi_init(&cfg));
|
|
||||||
ESP_ERROR_CHECK(esp_wifi_set_country(&wifi_country));
|
|
||||||
ESP_ERROR_CHECK(esp_wifi_set_storage(WIFI_STORAGE_RAM) );
|
|
||||||
ESP_ERROR_CHECK(esp_wifi_set_mode(WIFI_MODE_NULL) );
|
|
||||||
ESP_ERROR_CHECK(esp_wifi_set_promiscuous_filter(&filter)); // set MAC frame filter
|
|
||||||
ESP_ERROR_CHECK(esp_wifi_set_promiscuous_rx_cb(&wifi_sniffer_packet_handler));
|
|
||||||
ESP_ERROR_CHECK(esp_wifi_set_promiscuous(true));
|
|
||||||
}
|
|
||||||
|
|
||||||
void wifi_sniffer_set_channel(uint8_t channel) {
|
|
||||||
esp_wifi_set_channel(channel, WIFI_SECOND_CHAN_NONE);
|
|
||||||
}
|
|
||||||
|
|
||||||
void wifi_sniffer_packet_handler(void* buff, wifi_promiscuous_pkt_type_t type) {
|
|
||||||
const wifi_promiscuous_pkt_t *ppkt = (wifi_promiscuous_pkt_t *)buff;
|
|
||||||
const wifi_ieee80211_packet_t *ipkt = (wifi_ieee80211_packet_t *)ppkt->payload;
|
|
||||||
const wifi_ieee80211_mac_hdr_t *hdr = &ipkt->hdr;
|
|
||||||
char counter [11]; // uint32_t -> 4 byte -> 10 decimals + '0' terminator -> 11 chars
|
|
||||||
char macbuf [21]; // uint64_t -> 8 byte -> 20 decimals + '0' terminator -> 21 chars
|
|
||||||
uint32_t hashedmac, vendor2int;
|
|
||||||
uint64_t addr2int;
|
|
||||||
std::pair<std::set<uint32_t>::iterator, bool> newmac;
|
|
||||||
|
|
||||||
if (( cfg.rssilimit == 0 ) || (ppkt->rx_ctrl.rssi > cfg.rssilimit )) { // rssi is negative value
|
|
||||||
addr2int = ( (uint64_t)hdr->addr2[0] ) | ( (uint64_t)hdr->addr2[1] << 8 ) | ( (uint64_t)hdr->addr2[2] << 16 ) | \
|
|
||||||
( (uint64_t)hdr->addr2[3] << 24 ) | ( (uint64_t)hdr->addr2[4] << 32 ) | ( (uint64_t)hdr->addr2[5] << 40 );
|
|
||||||
|
|
||||||
#ifdef VENDORFILTER
|
|
||||||
vendor2int = ( (uint32_t)hdr->addr2[2] ) | ( (uint32_t)hdr->addr2[1] << 8 ) | ( (uint32_t)hdr->addr2[0] << 16 );
|
|
||||||
|
|
||||||
if ( std::find(vendors.begin(), vendors.end(), vendor2int) != vendors.end() ) {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//if (!(addr2int & WIFI_MAC_FILTER_MASK)) { // filter local and group MACs
|
|
||||||
|
|
||||||
// salt and hash MAC, and if new unique one, store hash in container and increment counter on display
|
|
||||||
addr2int <<= 8;
|
|
||||||
addr2int += salt; // append salt value to MAC before hashing it
|
|
||||||
itoa(addr2int, macbuf, 10); // convert 64 bit MAC to base 10 decimal string
|
|
||||||
hashedmac = rokkit(macbuf, 10); // hash MAC for privacy, use 10 chars to fit in uint32_t container
|
|
||||||
newmac = macs.insert(hashedmac); // store hashed MAC if new unique
|
|
||||||
if (newmac.second) { // first time seen MAC
|
|
||||||
macnum++; // increment MAC counter
|
|
||||||
itoa(macnum, counter, 10); // base 10 decimal counter value
|
|
||||||
u8x8.draw2x2String(0, 0, counter);
|
|
||||||
ESP_LOGI(TAG, "RSSI %04d -> Hash %010u -> #%04i", ppkt->rx_ctrl.rssi, hashedmac, macnum);
|
|
||||||
}
|
|
||||||
else // already seen MAC
|
|
||||||
ESP_LOGI(TAG, "RSSI %04d -> already seen", ppkt->rx_ctrl.rssi);
|
|
||||||
//}
|
|
||||||
|
|
||||||
#ifdef VENDORFILTER
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
} else
|
|
||||||
ESP_LOGI(TAG, "RSSI %04d -> ignoring (limit: %i)", ppkt->rx_ctrl.rssi, cfg.rssilimit);
|
|
||||||
|
|
||||||
yield();
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user