Skip to main content

Posts

Showing posts from 2018

10 Points to Secure Your ASP.NET Core MVC Applications

In this article, we learn how to secure ASP.NET Core MVC Applications against top 10 attacks given by OWSAP (Open Web Application Security Project) in step by step way. Broken authentication and session management Sensitive Data Exposure & Audit trail Cross-Site Scripting (XSS) attacks Malicious File Upload Security Misconfiguration (Error Handling Must Setup Custom Error Page) Version Discloser Cross-Site Request Forgery (CSRF) XML External Entities (XXE) Insecure Deserialization SQL Injection Attack We are new to the .NET Core Framework and we are using it for developing production applications, but when we develop a production application we must also think of security. So, in this article, we will run through 10 points which will help us to make our ASP.NET Core MVC code secure. Link to Article:-  https://www.codeproject.com/Articles/1259066/10-Points-to-Secure-Your-ASP-NET-Core-MVC-Applic-2

Angular 6 tutorial for beginners

Angular 6 tutorial for beginners

Projects to Learn

Projects to Learn From Saineshwar Bageri 1.[ MVC 4 ] 2.[Angular 2] 3.[ASP.NET Core ] 4.[MVC 5 ] MVC Demo Project [ MVC 4 ] https://www.c-sharpcorner.com/UploadFile/4d9083/project-gymone-demo-project-in-mvc/ Angular Demo Application With ASP.NET Core MVC (Rent A Car)  [Angular 2] https://www.c-sharpcorner.com/article/angular-demo-application-with-asp-net-core-mvc-rent-a-car/ ASP.NET Core MVC Project (Event Management)   [ASP.NET Core ] https://www.c-sharpcorner.com/article/asp-net-core-mvc-project-event-management/ TimeSheet Project Using ASP.NET MVC 5 [MVC 5 ] https://www.c-sharpcorner.com/article/timesheet-project-process-using-mvc-5/

Creating Simple API In Node.js

Creating Simple API In Node.js In this article, we are going to learn how to create a simple API in node js and use MS SQL as a data source on which we are going to perform CRUD operations. This article will be written so that both a beginner and a professional can easily understand it. Before starting with creating API let’s understand basics. What is Node js? An Open source, Cross-platform, and runtime environment for executing javascript code outside the browser. What can we build using it? We can build Web apps and APIS using node js. Why node.js if we already have other frameworks? It is super-fast and highly scalable e.g. PayPal, Uber, Netflix Build twice as fast with fewer people 33% fewer lines of code 40% fewer files 2x request/sec 35% faster response The open source library has a large ecosystem. Javascript is everywhere (front + back). You can write an entire application using javascript, no need to learn a new langua

Learn Elasticsearch in 2 Days

Elasticsearch Search Series of Articles 5 Article to Learn Elasticsearch in 2 Days 1. How To Configure Elasticsearch On Windows https://www.c-sharpcorner.com/article/how-to-configure-elastic-search-on-windows/ 2. Reading And Writing Documents With Single Document APIs In Elastic Search https://www.c-sharpcorner.com/article/reading-and-writing-documents-with-single-document-apis-in-elastic-search/ 3. How To Configure Kibana https://www.c-sharpcorner.com/article/how-to-configure-kibana/ 4. Inserting Document In Bulk Into Elastic Search Using Logstash https://www.c-sharpcorner.com/article/inserting-document-in-bulk-into-elastic-search-using-logstash/ 5. Using Elastic Search With ASP.NET MVC https://www.c-sharpcorner.com/article/using-elastic-search-with-asp-net-mvc/

Securing ASP.NET CORE Web API using Custom API Key based Authentication

In this article, we are going to learn how to create a secure Web API in ASP.NET Core MVC. Link to Complete Article with source code:-   https://www.codeproject.com/Articles/1228892/Securing-ASP-NET-CORE-Web-API-using-Custom-API-Key In the fast-growing era of Web technology, everything is changing too fast. With ASP.NET there was a time when we used to use web service (the .asmx ones), which was SOAP-based, which we can just use for consuming data from other applications, which did have that much of security in it. Most developers would take Username and Password Parameter as input and then they would allow to access web service. As time passes, Microsoft came up with WCF which was secured but too complex to use. Further, Microsoft came up with something new called as Web API which we can use by creating ASP.NET MVC application or directly ASP.NET Web API application which was lighter and easy to use. But moving further, Microsoft introduces ASP.NET Core which is li