You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem: current user data is in plain text form, anyone one access and read
Solution tried: i just checked parse documents and found this link https://docs.parseplatform.org/js/guide/#encrypting-current-user, but it's not encrypting data as checked by appsec team
Technology: React Native
versions
react-native: 0.68.7
parse: 3.5.1
basic code:
import Parse from 'parse/react-native.js';
const {APP_ID, BASE_URL, PARSE_SECRET} = env
Hi,
Problem: current user data is in plain text form, anyone one access and read
Solution tried: i just checked parse documents and found this link https://docs.parseplatform.org/js/guide/#encrypting-current-user, but it's not encrypting data as checked by appsec team
Technology: React Native
versions
react-native: 0.68.7
parse: 3.5.1
basic code:
import Parse from 'parse/react-native.js';
const {APP_ID, BASE_URL, PARSE_SECRET} = env
Parse.enableEncryptedUser();
Parse.secret = PARSE_SECRET;
Parse.setAsyncStorage(AsyncStorage);
Parse.initialize(APP_ID);
Parse.serverURL = BASE_URL;
The text was updated successfully, but these errors were encountered: