How does.NET Core configure TLS Cipher?

Preface Not long ago, I published a post about TLS protocol configuration that I have drilled through. After verification by a third-party partner, there are unsafe Suites for this TLS protocol and we need to solve them quickly, so we will start to work on this article! Third-party partners are demanding on platform security, and we have issued ...

Posted by brij_theinvader on Sat, 04 Dec 2021 09:05:12 -0800

C # dynamically creates the implementation instance object of the interface

This article briefly introduces how to dynamically create the implementation instance object of the interface, including two knowledge points: 1. How to obtain all implementation instance objects of the interface? 2. How to judge whether the constructor of an instance object has parameters? preparation First, create an interface object named IA ...

Posted by lingo5 on Wed, 24 Nov 2021 08:05:42 -0800

Understanding ASP.NET Core - handle errors

Note: This article is part of the understanding ASP.NET Core series. Please check the top blog or Click here to view the full-text catalog Error handling using middleware Developer exception page The developer exception page is used to display the details of unhandled request exceptions. When we create a project through the ASP.NET Core templa ...

Posted by baffled_in_UK on Mon, 22 Nov 2021 04:10:38 -0800

Basic use of EF Core in ASP.NET Core (CodeFrist) 1

1, Construction project In our daily projects, we usually have a multi-layer architecture. The domain layer (entity) is generally not placed together with the application layer (business: such as api and mvc). We only do this when doing exercises. Then I will directly share the most practical and layer according to the most basic project objec ...

Posted by ssj4gogita4 on Tue, 16 Nov 2021 06:39:30 -0800

Conversation and its technology

Cookie (saved on client) What is a Cookie: Cookie(s) is actually a small text file. The information content exists in the form of key value. A cookie is like a membership card of a mall. When a user visits the website through the browser, the website server can save some necessary information in the cookie and return it to the browser through ...

Posted by mikesab on Sun, 07 Nov 2021 17:24:26 -0800

Introduction to ASP.NET Web API

With the increasing complexity of the project, the data interaction of various third-party systems is becoming more and more frequent. It is inevitable to use Web API interface. Here, Web API is a relatively broad concept. This article refers to Web API, especially ASP.NET Web API. With some simple examples, this paper briefly describes the bas ...

Posted by macpaul on Sun, 07 Nov 2021 11:09:11 -0800

Java web-5 session and its session Technology

1, Cookie (saved on client) 1. What is a Cookie Cookie(s) is actually a small text file. The information content exists in the form of key value. A cookie is like a membership card of a mall. When a user visits the website through the browser, the website server can save some necessary information in the cookie and return it to the browser ...

Posted by sunnypal on Fri, 05 Nov 2021 11:00:26 -0700

The. NET Core TLS protocol specification was exploited by me~~~

[guide] previously, the test partners scanned through tools. The platform TLS SSL protocol supports TLS v1.1, which is not safe. The TLS SSL protocol should be at least v1.2 or above. It is thought that we have only supported v1.3, which should not be the problem of our platform. Recently, the third-party partner mentioned this high-risk sec ...

Posted by lance1208 on Thu, 04 Nov 2021 17:32:36 -0700

The. NET Core TLS protocol specification was exploited by me~~~

preface Previously, through tool scanning, the test partner found that the platform TLS SSL protocol supports TLS v1.1, which is not safe. The TLS SSL protocol should be at least v1.2 or above. It is thought that we have only supported v1.3, which should not be a problem of our platform. I still confidently explain that it has nothing to do wit ...

Posted by mrwutang on Fri, 29 Oct 2021 21:26:09 -0700

ASP.NET Core Data Protection [medium]

Last article It mainly introduces the Data Protection of ASP.NET Core. This article mainly introduces the API and usage. API interface ASP.NET Core Data Protectio mainly provides two interfaces to ordinary developers, IDataProtectionProvider   and   IDataProtector. Let's first look at the relationship between the two interfaces: n ...

Posted by rmurdo on Wed, 13 Oct 2021 21:41:55 -0700