Azure Functions is a serverless “Compute-on-demand” solution provided by Microsoft. Azure functions allow you to write a small code that can run on an Azure environment without worrying about infrastructure maintenance and saving you cost. Azure functions use trigger-based in a specific event. We will use a trigger event based Continue Reading
Asp.Net
Write secure C# code as per OWASP recommendations?
Every year OWASP updates their top 10 recommendations. These are the top 10 recommendations from OWASP. If you want to read them in detail, please check their OWASP website. OWASP top 10 Injection Broken Authentication Sensitive Data Exposure XML External Entities (XXE) Broken Access Control Security Misconfiguration Cross-Site Scripting (XSS) Continue Reading
How to validate C# code against OWASP recommendations
How to analyse your code for OWASP vulnerability? Last year, a friend of mine asked how he can make sure that his team follows the OWASP recommendations. Is there a way to find out the code’s vulnerability before the code goes to production? Before I talk about achieving this, let’s Continue Reading