0

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

dann
  • 282
  • 2
  • 7
  • Possible duplicate of [Is React Native's Async Storage secure?](https://stackoverflow.com/questions/39148714/is-react-natives-async-storage-secure) – Dragomir Kolev Aug 29 '17 at 08:46
  • @Dragomir Kolev Thanks for comment. I am storing some sensitive binary data on phone file system ( not using Async Storage which is key value storage system for small values) . – dann Aug 29 '17 at 08:54

1 Answers1

0

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.

Kraylog
  • 7,383
  • 1
  • 24
  • 35