App.config protection - VB.Net 3.5

I am using Visual Studio 2008 Pro to create a VB Winform application. I have some user configuration options, as well as an MS SQL connection string in my app.config file.

  • What is the best way to ensure that no one can read these options in app.config?
  • Is there any other area where there will be a connection string in plain text that I can also consider to ensure security?

Thanks!

+3
source share
3 answers

app.config - . .NET app.config app.config Windows Forms.

: ! , . SecureString , , .. .

+6

There's a post explaining how to encrypt settings in the app.config file.

0
source

Source: https://habr.com/ru/post/1718317/


All Articles