Search found 7 matches

by Nickelme
Sat Dec 17, 2016 2:12 am
Forum: General Discussion
Topic: Promiscuous Mode
Replies: 15
Views: 36660

Re: Promiscuous Mode

That was quick. Also it looks awesome, can't wait to try it out. Also brainstorm keep us up to date if you can get your injection working.
by Nickelme
Wed Dec 14, 2016 4:38 am
Forum: General Discussion
Topic: Promiscuous Mode
Replies: 15
Views: 36660

Re: Promiscuous Mode

Thank you for confirming this as it is mostly what I wanted. Is there an expected release date on this or maybe an idea when it might get released?
by Nickelme
Wed Dec 14, 2016 1:11 am
Forum: General Discussion
Topic: Promiscuous Mode
Replies: 15
Views: 36660

Re: Promiscuous Mode

Just tried running the first byte as RSSI using the code below. Assuming my phone (Droid Turbo 1) has a similar antenna, It would seem that the first byte is RSSI.

Code: Select all

void promiscuousCallBack(void *buff, uint16_t len){
	printf("%d", ((signed char)((char*)buff)[0]));
	printf("\n");
}
by Nickelme
Tue Dec 13, 2016 11:17 pm
Forum: General Discussion
Topic: Promiscuous Mode
Replies: 15
Views: 36660

Re: Promiscuous Mode

Try to see if the first byte might be RSSI as a signed byte, Just a guess. I would try myself but dont currently have my ESP32 Thing with me.
by Nickelme
Tue Dec 13, 2016 10:35 pm
Forum: General Discussion
Topic: Promiscuous Mode
Replies: 15
Views: 36660

Re: Promiscuous Mode

I don't have a code base right now but if you want to start one i'd be more than happy to try and contribute to it. Sounds like you have more work into this anyways.
by Nickelme
Tue Dec 13, 2016 9:07 pm
Forum: General Discussion
Topic: Promiscuous Mode
Replies: 15
Views: 36660

Re: Promiscuous Mode

Yea, Well you beat me to the post but if you look inside you get the 80211 header in there. Wireshark hex dump on my laptop vs Hex dump from the ESP32 shows that after a few bytes they match up if you remove the radio tap header from the Wireshark. ESP32 dc20f180000000000000068529f74000a83fa83f00003...
by Nickelme
Sat Nov 26, 2016 6:05 am
Forum: General Discussion
Topic: Promiscuous Mode
Replies: 15
Views: 36660

Promiscuous Mode

I was playing around with promiscuous mode and i noticed that the packets that are give to the callback are much larger than than they should be considering they were only beacon packets and wifi adapter on my laptop showed them as only 255 bytes while the esp32 returned that they were 528 bytes. Af...