mirror of
https://github.com/colonelpanichacks/flock-you.git
synced 2026-07-13 02:58:09 -07:00
wildcard-probe signature + 31st OUI (DeFlockJoplin)
Adds Michael / DeFlockJoplin's high-precision detection method on top of the NitekryDPaul baseline: a Flock camera is flagged when it transmits a Probe Request (type=0 subtype=4) with a wildcard SSID IE (tag 0 len 0) AND its addr2 matches the OUI list. Drive-test in Joplin: 11/12 cameras caught with only 2 false positives. - New AlertType ALERT_WILDCARD_PROBE, emitted as detection_method 'wifi_wildcard_probe' (high-precision class) - Wildcard-probe hits suppress the addr2 broad alert for the same frame to prevent double counting; non-probe OUI matches still emit as 'wifi_oui_addr2' - IE parser returns tri-state (1=wildcard / 0=directed / -1=no SSID IE), with FCS-trailer retry only on the -1 no-IE case - addr1 receiver-side sleeper-catch and the optional addr3 + SSID paths are unchanged — wildcard is purely additive - 31st OUI 82:6b:f2 added to target_ouis[] and to the dataset doc; it's the OUI of the 12th camera in Michael's drive-test that the original 30 didn't catch - README explains the wildcard-probe method, credits Michael with a link to github.com/DeflockJoplin/flock-you, and bumps Acknowledgments Source: https://github.com/DeflockJoplin/flock-you
This commit is contained in:
@@ -10,7 +10,12 @@ Flock stations spend most of their duty cycle asleep, waking briefly to upload a
|
||||
|
||||
This addr1 technique is @NitekryDPaul's discovery and is the basis of the `promiscuis-flock-you` firmware.
|
||||
|
||||
## OUI list (30 prefixes, lowercase, colon-separated)
|
||||
## OUI list (31 prefixes, lowercase, colon-separated)
|
||||
|
||||
@NitekryDPaul contributed the first 30. The 31st (`82:6b:f2`) was contributed
|
||||
by **Michael / DeFlockJoplin** during follow-up drive-testing in Joplin — it's
|
||||
the OUI of the 12th camera in his field test, which the original list didn't
|
||||
catch. See [DeflockJoplin/flock-you](https://github.com/DeflockJoplin/flock-you).
|
||||
|
||||
```
|
||||
70:c9:4e
|
||||
@@ -43,6 +48,7 @@ ec:1b:bd
|
||||
64:6e:69
|
||||
48:27:ea
|
||||
a4:cf:12
|
||||
82:6b:f2
|
||||
```
|
||||
|
||||
## CSV form
|
||||
@@ -79,6 +85,7 @@ a4:cf:12
|
||||
| 64:6e:69 | Flock Safety infrastructure | WiFi 2.4 GHz | @NitekryDPaul |
|
||||
| 48:27:ea | Flock Safety infrastructure | WiFi 2.4 GHz | @NitekryDPaul |
|
||||
| a4:cf:12 | Flock Safety infrastructure | WiFi 2.4 GHz | @NitekryDPaul |
|
||||
| 82:6b:f2 | Flock Safety infrastructure | WiFi 2.4 GHz (wildcard probe) | Michael / DeFlockJoplin |
|
||||
|
||||
## Detection strategy
|
||||
|
||||
@@ -90,6 +97,20 @@ For each observed 802.11 management or data frame:
|
||||
4. Match `addr1` (receiver) against the OUI list — **the addr1 insight**
|
||||
5. Optional: match `addr3` (BSSID) on mgmt frames when addr2 is randomised
|
||||
|
||||
### Wildcard-probe tightening (DeFlockJoplin)
|
||||
|
||||
Michael / DeFlockJoplin observed that Flock cameras channel-hop and spam
|
||||
wildcard 802.11 Probe Requests on every channel. Combining that with the
|
||||
OUI match yields a very tight signature:
|
||||
|
||||
1. Frame is Management, type=0 subtype=4 (Probe Request)
|
||||
2. SSID Information Element (tag 0) is present with length 0
|
||||
3. `addr2` (transmitter) matches the OUI list
|
||||
|
||||
Field-tested in Joplin: **11 of 12 cameras caught with only 2 false
|
||||
positives**. The 12th camera used OUI `82:6b:f2`, which is now in the
|
||||
list above. Source: [DeflockJoplin/flock-you](https://github.com/DeflockJoplin/flock-you).
|
||||
|
||||
## Firmware
|
||||
|
||||
The `promiscuis-flock-you` firmware implementing this research is a mod of @NitekryDPaul's promiscuous-mode firmware. It emits Flask-compatible JSON over USB for ingestion by the `flock-you` dashboard and persists detections to on-device SPIFFS.
|
||||
|
||||
Reference in New Issue
Block a user