Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is Erlang's security via cookies enough?

A thing concerning the security of Erlang's "secret cookie" mechanism.

  1. Is that mechanism vulnerable in any way?

  2. In case it is prone to unintended penetration should that be a concern?

  3. What is your practice for making your Erlang nodes and their communication more secure?

like image 852
Vuk Avatar asked Nov 29 '10 14:11

Vuk


1 Answers

Erlang's cookies are for topology, not for security.

In addition to the comment about ssl distribution, you should use all of the other mechanisms to secure your application that you would use in another environment.

like image 122
Justin Sheehy Avatar answered Sep 20 '22 14:09

Justin Sheehy