2
votes
Accepted
ESP32 Wipe Sensitive Key Data
You can use esptool.py to run an erase_flash operation.
Erase Flash: erase_flash & erase_region
To erase the entire flash chip (all data replaced with 0xFF bytes):
esptool erase_flash
To erase a ...
1
vote
Where can I store secret keys?
As @the busybee already said, the ESP8266 is the wrong chip for such applications. Since you always have the possibility to change the firmware. You could write your own bootloader that only accepts ...
1
vote
Where can I store secret keys?
The ESP8266 is the wrong device for this. You cannot store anything inside it with protection against read-out.
Any user software is in external memory, so even hobbyists can read all of it. If you ...
1
vote
How to allow cross-domain requests with ESP8266WebServer.h ? - CORS policy: Access-Control-Allow-Origin
The issue is URL specific.
Indeed, if I change API, namely
const Qresponse = await fetch( "https://zenquotes.io/api/random" );
by for example:
const Qresponse = await fetch( "https://...
Only top scored, non community-wiki answers of a minimum length are eligible
Related Tags
security × 6esp32 × 3
esp8266 × 1
arduino-mega × 1
arduino-ide × 1
bluetooth × 1
json × 1
ble × 1
esp8266webserver × 1