How to enable Azure AD login for a Linux VM

Linux VM has been able to authenticate to Active Directory via SSSD (System Security Services Daemon), and there has been many articles talking about this. With the infrastructure going towards cloud, the on-premises domain controller is losing its shine and relevance. Microsoft’s alternative is to enable AD Domain Services, and there are articles readily available … Read more

Azure Authentication using Python MSAL

Microsoft has released MSAL for Python. This has helped to shield away complexities in calling the API using urllib3 libraries and meddling with the parameters. In this article, I will provide sample code on how to get the access token using the following credentials type: UserID and Password Client ID and Client Secret User ID … Read more

Kimai SAML Configuration for Azure

Kimai Time-Tracking app is an open-source time-tracking app that can be hosted on your own to track time for your projects. For single sign-on integration via SAML, it does provide some documentation, however, the example is on Google. Theoretically, it is able to work on Azure, however, it is all up to exploration. By following … Read more

Creating Embed token for PowerBI reports

Embed PowerBI reports is one way to distribute reports to the clients without exposing the filters and able to control how the client views the reports based on their roles. The data can be further restricted using Row Level Security. The sample codes for python are available here. The different access levels and the details … Read more

Using Azure AD with django_auth_adfs

django_auth_adfs is a good module to integrate Django with Azure AD authentication in the cloud. Although there is a detailed documentation on the setup, the user interface presented were using the legacy user interface. I am attempting to replicate it using the new interface. Web server URL: https://test.com API exposed in web application: https://test/com/test/testpage IdentifierURL … Read more