Data frames
Is this supposed to pickup data frames or just management frames? I only see it picking up management frames like when scanning it connecting but not just data frames once connected. Thanks
It picks up all frames in the 2.4ghz range within the selected channel.
I don't notice an increase in activity while browsing the internet vs not browsing or actually shutting off WiFi on my phone. I only notice an increase in activity when connecting or scanning. Regards B hirsch
From: Stefan Kremser [email protected] Sent: Sunday, October 29, 2017 4:47:37 AM To: spacehuhn/PacketMonitor Cc: BHirsch; Author Subject: Re: [spacehuhn/PacketMonitor] Data frames (#13)
It picks up all frames in the 2.4ghz range within the selected channel.
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHubhttps://github.com/spacehuhn/PacketMonitor/issues/13#issuecomment-340246393, or mute the threadhttps://github.com/notifications/unsubscribe-auth/ARLap7Bqt8lWzkYbvpm1PdzjiFEFzMDPks5sxDupgaJpZM4QKLqi.
the sniffer function has the following code:
void sniffer(uint8_t *buf, uint16_t len) {
pkts++;
if (buf[12] == 0xA0 || buf[12] == 0xC0) {
deauths++;
}
}
It seems that uses all the packets. It could be a hardware limitation.