Security risk to sensitive large binary data in react native based apps stored in file system?

183 Views Asked by At

Are there any security risk to sensitive large binary data stored in file system when using react native framework in mobile apps?

1

There are 1 best solutions below

1
On

Yes, storing sensitive data in a binary file simply on the file system is problematic, seeing as any other program can read that file.

This has nothing to do directly with react-native, of course.