Category: Uncategorized
-
About The Recent PowerShell Remote Code Execution Vulnerability And How To Stay Secure
New versions of PowerShell 7.0 and 7.1 have been released by Microsoft to address a remote code execution (RCE) vulnerability in .Net 5 and .Net Core. This vulnerability has been rated as critical and should be looked at closely. PowerShell is a cross-platform task automation solution made up of a command-line shell, a scripting language,…
-
Creating a Virtual Machine Operator Role with Azure CLI
Sometimes you want to be able to create custom roles that give fine grained control over your cloud platform and environments. This can be done entirely with the Azure command line interface and it is awesome! The example role are going to create is a role that allows a user to start and stop a…
-
Searching Nested Dictionaries In Python Using Recursive Functions
Sometimes it is helpful to be able to search for all values that match a key within a non-arbitrarily nested combination of lists and dictionaries in Python. A great way to solve this problem is using recursive functions. Sometimes also simply referred to as recursion. A recursive function is a function that refers to itself…
-
Automated PyPi Package Release Versioning With GitHub
GitHub is a powerful code hosting platform with millions of developers from all over the world. It is a great way to collaborate with others on code and share it with the world. I was recently working on an open source project in my free time to create a Python package that could be used…
-
Working With the Microsoft Graph API
Recently, I was asked to collect data about our Microsoft licenses and users in our Azure Active Directory who are consuming those licenses. This presented the perfect opportunity to work with the Microsoft Graph API! Microsoft Graph is a RESTful API that allows you to access Microsoft Cloud services resources. It supports GET, POST, PATCH,…