We know that GDPR is officially part of a law in Europe from 25th May 2018. There are some awesome enhancements shipped with .Net Core 2.1, one of them is support for GDPR. Let us see what are the things added for GDPR in .Net Core 2.1 What is GDPR? The General Data Protection Regulation (GDPR) (Regulation … Continue reading GDPR in .Net Core: .Net Core Security Part VII
Category: Security in .Net Core
The Gatekeeper security pattern: Cloud design patterns part II
You can find my all .Net core posts here. By this post, I am starting the series of post on Cloud design patterns. These patterns are mostly generic and can be used with any cloud provider but in this series, I will mainly focus on the Azure. In this post, we will see one more Security pattern which is Gatekeeper design pattern. … Continue reading The Gatekeeper security pattern: Cloud design patterns part II
CORS in .Net Core: .Net Core Security Part VI
You can find all .Net core posts here. In these series of posts, we will see how to secure your .Net Core applications. In this post, we will see what is CORS and how to enable CORS in your .Net Core application. What is CORS? Before going for the basic question “What is CORS?”, Let us take a scenario related to … Continue reading CORS in .Net Core: .Net Core Security Part VI
Global Authorization Filter in .Net Core: .Net Core Security Part – V
You can find all of my .Net core posts here. In these series of posts, we will see how to secure your .Net Core applications. In this post, we will see how to add the Authorize globally in your .Net Core application. Let us assume we need to add Authorize filter globally which means we are no more require to … Continue reading Global Authorization Filter in .Net Core: .Net Core Security Part – V
Twitter Login setup in .Net Core(2.1) : Step by step guide
You can find my .Net core posts here. Note – You can find the source code of my sample application here. Now a days, adding Username and Password is not enough for the authentication, we need some more secure ways for our application. Authenticating using Twitter is one of them In this post, we will see how … Continue reading Twitter Login setup in .Net Core(2.1) : Step by step guide
Web API Security with IdentityServer4: IdentityServer4 with .Net Core Part III
Note – You can find the source code of my sample application here. You can find all .Net core posts here. In my previous post on IdentityServer4, I explained how to set up an Auth server and also created a client. You can find the post here. I would request you to go through this previous post before … Continue reading Web API Security with IdentityServer4: IdentityServer4 with .Net Core Part III
IdentityServer4 in simple words: IdentityServer4 with .Net Core Part I
You can find all .Net core posts here. Once I explored and wrote about Authentication in .Net Core using Identity here, many people have asked me to explore and write on IdentityServer4. So I am starting a series of posts in which I will mainly concentrate on IdentityServer4 In this first post, we will see some … Continue reading IdentityServer4 in simple words: IdentityServer4 with .Net Core Part I
Secure .Net Core applications from the Open Redirect attacks: .Net Core security Part IV
You can find my all .Net core posts here. In these series of posts, we will see how to secure your .Net Core applications. In this post, we will see how to secure your .Net Core application from the Open Redirect attack. What is Open Redirection attack? Open Redirection attack is a URL Redirection. An Open Redirection attack is a kind … Continue reading Secure .Net Core applications from the Open Redirect attacks: .Net Core security Part IV
Secure .Net Core applications from CSRF attack: .Net Core security Part II
You can find all of my .Net core posts here. This is the second post on .Net Core security. First part is here. In this post, we will see how to secure your .Net Core applications from CSRF attack. What is CSRF? CSRF stands for Cross-Site Request Forgery. CSRF in simple words: Cross-Site Request Forgery (CSRF) is … Continue reading Secure .Net Core applications from CSRF attack: .Net Core security Part II
ASP .Net Core 2.1 features: Part I
You can find my all .Net core posts here. In this post, we will see the features of Asp .Net Core 2.1 SignalR SignalR is coming into the .Net Core. I have already written a post on how to use SignalR in Net Core which is here but as some of the changes are going on … Continue reading ASP .Net Core 2.1 features: Part I