Patching OpenSSL on Windows running Apache

Step 1 Create a backup of the whole server. Step 2 Visit this website for the latest OpenSSL ZIP: https://kb.firedaemon.com/support/solutions/articles/4000121705 Step 3 Extract or browse for the x64/bin directory from the ZIP file Step 4 Open another File Explorer and go to C:\XAMPP\APACHE\BIN directory Step 5 Rename the following files: openssl.exe, libcrypto-3-x64dll, libssl-3-x64.dll Step 6 Copy … Read more

Manually re-enroll a Hybrid Azure AD Join Windows 10 / Windows 11 device to Microsoft Intune without loosing the current configuration

Thanks to  Maxime Rastello for creating this article. Without data or configuration loss There is a way to manually re-enroll your Windows 10 PC without loosing all the current configuration and apps deployed by Microsoft Intune. This method is not officially supported by Microsoft As you may know, automatic enrollment can be triggered either by … Read more

Azure Front Door Access Logs

📘 Log Query Used We ran the following Kusto query in Azure Log Analytics to search for specific access events through Azure Front Door: kustoCopyEditAzureDiagnostics| where Category contains “FrontDoorAccessLog”| where requestUri_s contains “<target-endpoint>”| where originIp_s contains “<origin-ip>”| where clientIp_s contains “<client-ip>”| project originIp_s, clientIp_s, requestUri_s 🧾 Query Breakdown