Is the IPC mechanism secure? #2964
-
Hi, I am building an application that handles sensitive data (secrets and API keys) and trying to figure out if the communication between the frontend and the backend is secure. As far as I have seen, communication is accomplished by posting messages in JSON? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The IPC mechanism is internal to the application and is just as susceptible to any debugging as any other mechanism. Storing sensitive data in an application is never a good option regardless of what you do inside your application. If you are worrying about "in flight" data then you could encrypt and decrypt your data. Then the problem is how and where you store the keys. At the end of the day, this is a design issue regardless of how the inner workings of your app work. |
Beta Was this translation helpful? Give feedback.
It's in memory 👍