Teams – Audit Team creation and deletion

Hi therein this article I'm covering how to audit Team creation and deletion with email notification on Office 365.Go to portal https://protection.office.com/homepageCreate the new policy alertWait a few hours and checkhttps://protection.office.com/managealertsyou should see your policy alert created previouslyGo to main alert and policies bladehttps://protection.office.com/alertpoliciesCheck my Github repositoryReferenceshttps://portal.cloudappsecurity.com/https://protection.office.com/managealertshttps://protection.office.com/alertpolicies Thanks, Thiago Beier

Azure – just-in-time access (JIT)

Hi there In this post I'd like to show you JIT (just-in-time) and how it works JIT will create an inbound rule on a NSG (Network Security Group) associated to a VM (Virtual Machine) allowing traffic on the following ports 22, 3389, 5985 or 5986 by up to 24 hours. setup JIT in Azure Security … Continue reading Azure – just-in-time access (JIT)

Azure- Reset local Windows password

Hi there in this article I'll demonstrate how to reset the VM user password from Azure Portal. Did you know that if you don't even know the admin you can still reset a user password for a new user you define on this process? YES you can! If you enter any user name that is … Continue reading Azure- Reset local Windows password

Enable MFA on Office 365

Hi there In this article I'm covering how to enable MFA for all users based on get-msoluser queries First of all let's cover some basics on get-msoluser commands. List all licensed users on your subscription Get-MsolUser -All | where {$_.isLicensed -eq $true} List all unlicensed users on your subscription Get-MsolUser -All -UnlicensedUsersOnly List all unlicensed … Continue reading Enable MFA on Office 365

Exporting File and Folder security ACLs

Hi there Have you ever to export file and folder security ACLs from a specific folder on disk or remote network path on a server? The following approach it's kind old school but works. cd c:\temp cacls . to list current dir only cacls *.* to list all folder and subfolders from the current folder … Continue reading Exporting File and Folder security ACLs