On xamarin app, where I can store my dbConnection or other security-sensitive data. For example in asp net application my DBConnection string i store in the appsettings.json file, and a user don't have access to that file. But on xamarin app I don't found secure way, For example, I can hardcode dbConnection in my code, but the user can decompile my code and get dbConnection string
Xamarin Security-Sensitive data storing
834 Views Asked by Dark At
1
There are 1 best solutions below
Related Questions in SECURITY
- Can MVC.NET prevent SQL-injection at razor or controller level?
- Forgotten password reset page: should the user need to enter a username/email as well?
- Dynamic roles list in CustomAuthorize ASP MVC
- Access roles from multiple applications
- How to Fix TLS CBC Incorrect Padding Abuse Vulnerability on Windows 2003 Server
- Evernote Web Clipper and Content Security Policy
- Invalidate user credentials when password changes
- Spring Boot MVC non-role based security
- Correct Captcha behaviour on error
- Is macro more secure than static const if I don't want someone to know or change the hardcode value?
- In Android, ensuring only pre-decided users can only use the app
- Authenticating plain text passwords against md5 hash in DB using Apache Shiro
- Symfony2 - handle HTTP/Entity user access restrictions
- Client side computation without exposing code?
- searchable row level encryption using java?
Related Questions in XAMARIN
- Xamarin Table View Crash
- How to read a characteristic (e.g. in WICED Smart example "speed_test")
- Using Azure MobileServices library with my own LAN WebApi
- Bundle Multiple Xamarin apps in one pkg installer
- Xamarin Google Cloud Messaging GcmClient.CheckDevice(this) causes runtime error
- UIAlertView popup won't let me swipe up Control Center
- How do I Insert a Previously Created SQLite Database into a Xamarin.Android App?
- Can custom text be added to a listview cell?
- How to run a ASP.net project to Xamarin Studio
- How can i do a fill animation in Xamarin.Forms
- How to change Display Alert default focus on a button?
- Mixing a CocosSharp game with UIViewControllers
- Building C# code in VSCode on Mac
- How to use research Kit framework in Xamarin
- Why is my app requesting permissions I didn't ask for?
Related Questions in CONNECTION-STRING
- Connection string error between projects with EF
- Powershell Pass SQL connection object
- Unsure how to set C# Connection string depending on solution configuration
- Passing Connection From TableAdapter Produces connectionstring property has not been initialized
- Connection String Error in OleDB
- How to manage multiple connections for different users
- What is the connection URL to be used for Cassandra?
- I try to use connectionstring connect to netezza but can't truncate table
- "Unable to find the requested .Net Framework Data Provider", MySQL. tried using odbc too
- c# - Entity Framework ConnectionString won't update after changing App.Config in runtime
- What Database Information Applies to What Connection String Attributes
- How do I abstract and secure the same connection string from many applications centrally?
- Difference between InitialCatalog and Database Name
- SQL Server connection string with "$" in password
- ADODB Connection is empty, Unable to read CSV file
Related Questions in APPSETTINGS
- Getting a list of installed VPN Profiles Programatically - iOS
- AppSettings.json for Integration Test in ASP.NET Core
- ConfigurationErrorsException when adding log4net configuration to the app.config
- Can't modify app.config file with no error
- Elmah not catching WebConfigurationManager.AppSettings[""].ToString() Exception in C#
- cdata in appSettings value attribute
- Is it safe to store appSettings programmatically from appSettings web.config
- Asp.net Mvc centralised app settings?
- iOS custom keyboard settings not saving
- How to read configuration (appsettings) values inside attribute in .NET Core?
- Can't read appsettings.json without DI due to missing Configuration Builder
- C# AppSettings array
- @PropertySource @Value static strings return null
- Reading and Writing keys to appsettings in WebConfigEditor
- How do I use the app settings of a class library?
Related Questions in SENSITIVE-DATA
- How not to save passwords and sensitive data in Quicksilver/Alfred clipboard history plugin?
- Can I access Bitbucket Pipelines environment variables from my source code?
- Wipe AppData/Roaming after ClickOnce application uninstalled
- Get bank name from routing number
- Data Masking: Proper way to update masked data?
- Data mining of encrypted data in a database
- Common approach of sending sensitive data between pages asp.net core
- Where to store sensitive information in kong api-gateway declarative mode
- Sensitive Data separation within MongoDB and NodeJS - references via encrypted key
- Encrypting sensitive data with mcrypt
- Android Assets database security issues?
- iOS - Savely passing sensitive data between view controllers
- Android - Secure place to store sensitive files inside the same project
- Xamarin Security-Sensitive data storing
- How do I filter sensitive Django POST parameters out of Sentry error reports?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can use SecureStorage from Xamarin Essentials to store sensitive data.
Check documentation for Xamarin Essentials https://learn.microsoft.com/en-us/xamarin/essentials/secure-storage?tabs=ios