Search found 5 matches

by Kokusnuss
Tue Dec 06, 2016 7:34 am
Forum: ESP-IDF
Topic: esp_wifi_internal
Replies: 9
Views: 25820

Re: esp_wifi_internal

How about providing an "official" and documented function, so people like me don't have to dig through your code? ;)

But with tools like IDA Pro (with a xtensa plugin) it shouldn't be that hard to guess what the functions do and what parameters they have.
Happy hacking everyone :mrgreen:
by Kokusnuss
Mon Dec 05, 2016 9:01 am
Forum: ESP-IDF
Topic: esp_wifi_internal
Replies: 9
Views: 25820

Re: esp_wifi_internal

The esp_wifi_internal_tx() function is for sending 802.11 data frames. So I guess beacon spamming is not allowed, but ARP spoofing should be possible? :roll: But hey what's about the ieee80211_freedom_output function? ieee80211_freedom_output(netif, *buffer, len); It was used for the removed wifi_s...
by Kokusnuss
Thu Dec 01, 2016 8:06 am
Forum: ESP-IDF
Topic: esp_wifi_internal
Replies: 9
Views: 25820

Re: esp_wifi_internal

Thank you ESP_Angus for answering! That's what I wanted to know, thx :D The wifi_send_pkt_freedom() function was removed from the ESP8266 SDK, I believe because of the potential for abuse (jamming by spamming beacon frames, sending large numbers of deauth frames, etc.) I don't believe this policy ha...
by Kokusnuss
Wed Nov 30, 2016 11:40 am
Forum: ESP-IDF
Topic: .Net Micro Framework on ESP32 chip
Replies: 15
Views: 29234

Re: .Net Micro Framework on ESP32 chip

Hey,

I would love to see something like this! Would be amazing when someone of you guys do this! :mrgreen:
by Kokusnuss
Sat Nov 26, 2016 8:32 pm
Forum: ESP-IDF
Topic: esp_wifi_internal
Replies: 9
Views: 25820

esp_wifi_internal

Hallo erveryone :) I finally recieved my ESP32 today! I waited really long and now I wanna test it out. So I had this project with my ESP8266 where I send beacon packets. I searched for a function similar to the wifi_send_pkt_freedom() in the SDK. I found this esp_wifi_internal.h file and looked int...