AAD Internals

AADInternals is the command line based tools which can be used to enumerate the details of microsoft azure based infrastructure.

Installing AAD Internals

Install-module AADInternals
Import-module AADInternals

AADInternals Commands

1. Invoking Domains on Azure
     Invoke-AADIntReconAsOutsider -DomainName company.com | Format-table 
2. Invoking Usernames  :
     Invoke-AADIntUserEnumerationAsOutsider -UserName user@company.com  
3. Invoking Usernames over file:
     Get-Content .\users.txt | Invoke-AADIntUserEnumerationAsOutsider -Method Normal
4. Login Information about thre domain :
     Get-AADIntLoginInformation -Domain company.com
5. Login Information of the user on azure:
     Get-AADIntLoginInformation -Domain user@company
6. Retrieve tenantID: 
     Get-AADIntTenantID -Domain company.com.
7. Get Registered domains on the tenant:
     Get-AADIntTenantDomains -Domain company.com

Last updated