Azure
-
For a while I’ve been working on automation inside of Azure, and a big part of that is using Azure’s REST API or the Microsoft Graph’s API. Now Microsoft does provide documentation on different APIs but it’s sometimes hard to understand the documentation and often takes a lot of time. I was curious one day…
-
Azure Functions is a serverless compute service in Azure which lets you run event-triggered code without managing infrastructure. It is used for lightweight, single-purpose tasks. Azure Functions charges only for the compute time used. This service is ideal for scenarios where you would like to respond to events or perform background tasks without needing a…
-
In this blog I will be going through a tool which you can use to turn the analytic rules which exist into your environment into a ARM template which you can then deploy. (Please note this only currently supports scheduled analytic rules). This means, if you have an analytic rule which exists only in your…
-
Short post today. I took my SC-100 exam today and I passed with a score of 804 (Out of 1000). I cannot go into the contents of the exam (As per examination rules) but I will say that the previous certifications that I’ve passed were really were handy. As you may know you are required…
-
I’m writing this blog because I’m preparing for the SC-100 exam, and part of this exam is on the Microsoft Cybersecurity Reference Architecture (MCRA). I’m writing this blog in a way to teach you, the reader. I’d highly recommend you looking at Microsoft Learn’s page as well as Peter Rising’s video on MCRA. I’m going…
-
In this post I go through Kusto Query Language – A very powerful querying tool used by Azure Data Explorer and Log Analytics Workspace’s. Why I learnt KQL I learnt KQL because I work at a company which uses Microsoft Sentinel, a powerful SIEM tool, which is actually built of an Azure log analytics workspace…
-
A while ago I had to create a Flask application and was a bit stuck on how to deploy it to Azure App Service. I thought it would be difficult with a bunch of code being needed to be changed prior to deployment, but it ended up being incredibly easy – I just missed a…