Tag: WebApplications

Technical

.NET Core SDK vs Runtime vs Hosting Bundle

Before you understand the difference between .NET Core SDK vs Runtime vs Hosting Bundle, you need to know about the .NET Core. What is .NET Core? .NET Core is an Open Source software development framework used to create, build, and run the cross-platform supported .NET Core application. This .NET Core application can be a Web […]

Technical

TLS 1.2 Supported OS and Browsers

Most of the Website will no longer supports older versions of TLS protocols which is TLS 1.0 and TLS 1.1. This will be required in order to maintain the highest security standards of website. This means most of the website will supports only TLS 1.2 or higher. What is TLS? TLS which is full form […]

Technical

Cookie Authentication in ASP.NET CORE MVC Web Application

Authentication is the process of identifying the user that is who you are. Another related term is Authorization is this process of identifying whether you have authorized to access something in web it will be website pages. Authorization is the important module, most of the projects would not complete without covering this area.  Also, there […]

General News Technical

WordPress Plugins Vulnerability recently found

Recently studies found that there are few serious vulnerabilities in popularly used WordPress plugins which can be easily exploited by hacker.  Those vulnerable WordPress Plugins are, WP Database Reset InfiniteWP Client WP Time Capsule WP Database Reset This plugin is used to reset the tables in database either partially or completely. Hence this plugin playing […]

Technical

Comparison between Angular vs React vs Vue.js – Which is the best in 2020?

As everyone knows, the JavaScript framework is the fast-evolving framework in the last decade which has lots of options in the current market and creates confusion between web developers to choose the right one. The most popular JavaScript frameworks heard by everyone are Angular (Earlier it was AngularJS), React, Vue.js, etc. This article helps those […]

Technical

10 best practices to secure ASP.NET Core/MVC Web applications

In this article, you are going to walk through 10 best practices that everyone must consider in the security aspects while writing web applications in ASP.NET Core or MVC framework. These security vulnerabilities are common to all web applications. Below are the few major security vulnerabilities that can be exploited by hackers to gather information, […]

Technical

TLS v1.0 and TLS v1.1 Support will be Stopped

TLS v1.0 and TLS v1.1 protocol will be removed from all the browsers very soon. This will be expected to remove at the beginning of 2020. Find the deadline provided by each browser for disabling TLS v1.0 and TLS v1.1. The percentage of connections made using protocol TLS v1.0 and TLS v1.1 on each popular […]

Technical

Basic of Transport Layer Security (TLS)/Secure Sockets Layer (SSL)

Transport Layer Security (TLS) is a protocol which used to communicate between client and server over internet. This protocol ensures the data integrity, security, privacy and data encryption between the connections. So, the HTTPS requests and responses are communicated securely using this TLS protocol. Transport Layer Security (TLS) is next generation of SSL protocol. SSL […]

Back To Top