Module 19 : Cloud Computing
Lab 1: Perform Reconnaissance on Azure
Task 1: Azure Reconnaissance with AADInternals
## Installing AADInternals
Install-module AADInternals
Import-module AADInternals## Available 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
Or visit the following website :
https://aadinternals.com/osint/ Lab 2: Exploit S3 Buckets
Task 1: Exploit Open S3 Buckets using AWS CLI
Lab 3: Perform Privilege Escalation to Gain Higher Privileges
Task 1: Escalate IAM User Privileges by Exploiting Misconfigured User Policy
Lab 4: Perform Vulnerability Assessment on Docker Images
Task 1: Vulnerability Assessment on Docker Images using Trivy
Last updated