Az - Application Proxy
Tip
Leer & oefen AWS Hacking:
HackTricks Training AWS Red Team Expert (ARTE)
Leer & oefen GCP Hacking:HackTricks Training GCP Red Team Expert (GRTE)
Leer & oefen Az Hacking:HackTricks Training Azure Red Team Expert (AzRTE)
Ondersteun HackTricks
- Kyk na die subscription plans!
- Sluit aan by die 💬 Discord group of die telegram group of volg ons op Twitter 🐦 @hacktricks_live.
- Deel hacking tricks deur PRs in te dien by die HackTricks en HackTricks Cloud github repos.
Basiese Inligting
Azure Active Directory se Application Proxy bied veilige afstandstoegang tot plaaslike webtoepassings. Na ’n enkele aanmelding by Azure AD kan gebruikers toegang verkry tot beide cloud en plaaslike toepassings deur ’n eksterne URL of ’n interne toepassingsportaal.
Dit werk soos volg:
.png)
- Nadat die gebruiker toegang tot die toepassing verkry het deur ’n eindpunt, word die gebruiker na die Azure AD aanmeldbladsy gelei.
- Na ’n suksesvolle aanmelding stuur Azure AD ’n token na die gebruiker se kliënttoestel.
- Die kliënt stuur die token na die Application Proxy diens, wat die gebruiker se hoofnaam (UPN) en sekuriteitshoofnaam (SPN) uit die token onttrek. Application Proxy stuur dan die versoek na die Application Proxy connector.
- As jy enkel aanmelding gekonfigureer het, voer die connector enige addisionele verifikasie uit wat benodig word namens die gebruiker.
- Die connector stuur die versoek na die plaaslike toepassing.
- Die antwoord word deur die connector en Application Proxy diens na die gebruiker gestuur.
Enumerasie
# Enumerate applications with application proxy configured
Get-AzureADApplication | %{try{Get-AzureADApplicationProxyApplication -ObjectId $_.ObjectID;$_.DisplayName;$_.ObjectID}catch{}}
# Get applications service principal
Get-AzureADServicePrincipal -All $true | ?{$_.DisplayName -eq "Name"}
# Use the following ps1 script from https://learn.microsoft.com/en-us/azure/active-directory/app-proxy/scripts/powershell-display-users-group-of-app
# to find users and groups assigned to the application. Pass the ObjectID of the Service Principal to it
Get-ApplicationProxyAssignedUsersAndGroups -ObjectId <object-id>
Verwysings
Tip
Leer & oefen AWS Hacking:
HackTricks Training AWS Red Team Expert (ARTE)
Leer & oefen GCP Hacking:HackTricks Training GCP Red Team Expert (GRTE)
Leer & oefen Az Hacking:HackTricks Training Azure Red Team Expert (AzRTE)
Ondersteun HackTricks
- Kyk na die subscription plans!
- Sluit aan by die 💬 Discord group of die telegram group of volg ons op Twitter 🐦 @hacktricks_live.
- Deel hacking tricks deur PRs in te dien by die HackTricks en HackTricks Cloud github repos.
HackTricks Cloud

