JoaoLopesF / RemoteDebug

Library for Arduino to debug projects over WiFi, with web app or telnet, with print commands like Serial Monitor
MIT License
613 stars 127 forks source link

Feature request: password #27

Closed jeroenst closed 5 years ago

jeroenst commented 5 years ago

Although it can be sniffed by wireshark, a password before entering the debug telnet connection would be nice to prevent unwanted users to open the debug console. The chance that it will be sniffed is pretty low on home lan environments.

JoaoLopesF commented 5 years ago

I agree. this already stay in my wish list Thanks

JoaoLopesF commented 5 years ago

Hi @jeroenst

I researched and found that telnet use advanced authentication (kerberos, etc.) For production, telnet must have considerable encryption, kerkeros, etc.

Such as RemoteDebug now is not for production releases, this kind of authentication will not be done now.

I just commit a new version (1.4.0) with a simple password text request.

Because RemoteDebug is now for development environments only, This is what I can do now.

Regards

Joao Lopes