-
Book Overview & Buying
-
Table Of Contents
ASP.NET Core 9 Essentials
By :
For us to be able to create secure web-based applications, we must go beyond implementing the use of a security layer based on authentication and authorization, something we implemented when using ASP.NET Core Identity.
ASP.NET Core 9 allows us to deal with security as a premise when developing applications, providing tools and mechanisms that facilitate the implementation of features that minimize possible loopholes, something that can generate attacks from malicious users.
Let’s learn about some good security practices that should be part of every software engineer’s toolbox. We’ll start by understanding how we can improve the process of managing sensitive configurations in our development environment.
Every application has configurations and some of these can be sensitive, such as database connections, encryption keys, and even security keys for accessing external resources.
So far,...