July 2021
Intermediate to advanced
324 pages
5h 35m
English
Authorization is just as significant and essential as authentication. It defines what an authenticated user can perform and execute, and resources and web pages need to have defined privileges to limit unauthorized access. Permission bypass and missing or improper access controls are some of the broken access control vulnerabilities discovered in an ASP.NET Core web application.
In this chapter, we're going to cover the following recipes:
By the end of this chapter, you will have learned how to use the built-in authorization mechanism in ASP.NET Core. You will properly ...