mirror of
https://github.com/HackTricks-wiki/hacktricks-cloud.git
synced 2026-01-04 16:57:26 -08:00
Translated ['src/pentesting-cloud/aws-security/aws-persistence/aws-sts-p
This commit is contained in:
@@ -107,7 +107,7 @@ Um ein **MitM** auf das Tool durchzuführen und **alle Anfragen**, die es manuel
|
||||
|
||||
### Microsoft Graph PowerShell
|
||||
|
||||
Microsoft Graph PowerShell ist ein plattformübergreifendes SDK, das den Zugriff auf alle Microsoft Graph APIs ermöglicht, einschließlich Dienste wie SharePoint, Exchange und Outlook, über einen einzigen Endpunkt. Es unterstützt PowerShell 7+, moderne Authentifizierung über MSAL, externe Identitäten und erweiterte Abfragen. Mit einem Fokus auf minimalen Zugriff gewährleistet es sichere Operationen und erhält regelmäßige Updates, um mit den neuesten Funktionen der Microsoft Graph API in Einklang zu stehen.
|
||||
Microsoft Graph PowerShell ist ein plattformübergreifendes SDK, das den Zugriff auf alle Microsoft Graph APIs ermöglicht, einschließlich Dienste wie SharePoint, Exchange und Outlook, über einen einzigen Endpunkt. Es unterstützt PowerShell 7+, moderne Authentifizierung über MSAL, externe Identitäten und erweiterte Abfragen. Mit einem Fokus auf den minimalen Zugriff gewährleistet es sichere Operationen und erhält regelmäßige Updates, um mit den neuesten Funktionen der Microsoft Graph API in Einklang zu stehen.
|
||||
|
||||
Folgen Sie diesem Link für die [**Installationsanweisungen**](https://learn.microsoft.com/en-us/powershell/microsoftgraph/installation).
|
||||
|
||||
@@ -128,4 +128,243 @@ Das Azure Active Directory (AD) Modul, jetzt **veraltet**, ist Teil von Azure Po
|
||||
|
||||
Folgen Sie diesem Link für die [**Installationsanweisungen**](https://www.powershellgallery.com/packages/AzureAD).
|
||||
|
||||
## Automatisierte Recon- & Compliance-Tools
|
||||
|
||||
### [turbot azure plugins](https://github.com/orgs/turbot/repositories?q=mod-azure)
|
||||
|
||||
Turbot mit Steampipe und Powerpipe ermöglicht das Sammeln von Informationen aus Azure und Entra ID sowie die Durchführung von Compliance-Prüfungen und das Auffinden von Fehlkonfigurationen. Die derzeit am meisten empfohlenen Azure-Module, die ausgeführt werden sollten, sind:
|
||||
|
||||
- [https://github.com/turbot/steampipe-mod-azure-compliance](https://github.com/turbot/steampipe-mod-azure-compliance)
|
||||
- [https://github.com/turbot/steampipe-mod-azure-insights](https://github.com/turbot/steampipe-mod-azure-insights)
|
||||
- [https://github.com/turbot/steampipe-mod-azuread-insights](https://github.com/turbot/steampipe-mod-azuread-insights)
|
||||
```bash
|
||||
# Install
|
||||
brew install turbot/tap/powerpipe
|
||||
brew install turbot/tap/steampipe
|
||||
steampipe plugin install azure
|
||||
steampipe plugin install azuread
|
||||
|
||||
# Config creds via env vars or az cli default creds will be used
|
||||
export AZURE_ENVIRONMENT="AZUREPUBLICCLOUD"
|
||||
export AZURE_TENANT_ID="<tenant-id>"
|
||||
export AZURE_SUBSCRIPTION_ID="<subscription-id>"
|
||||
export AZURE_CLIENT_ID="<client-id>"
|
||||
export AZURE_CLIENT_SECRET="<secret>"
|
||||
|
||||
# Run steampipe-mod-azure-insights
|
||||
cd /tmp
|
||||
mkdir dashboards
|
||||
cd dashboards
|
||||
powerpipe mod init
|
||||
powerpipe mod install github.com/turbot/steampipe-mod-azure-insights
|
||||
steampipe service start
|
||||
powerpipe server
|
||||
# Go to http://localhost:9033 in a browser
|
||||
```
|
||||
### [Prowler](https://github.com/prowler-cloud/prowler)
|
||||
|
||||
Prowler ist ein Open Source-Sicherheitstool, um Sicherheitsbest Practices-Bewertungen, Audits, Incident Response, kontinuierliche Überwachung, Härtung und forensische Bereitschaft für AWS, Azure, Google Cloud und Kubernetes durchzuführen.
|
||||
|
||||
Es ermöglicht uns im Grunde, Hunderte von Prüfungen in einer Azure-Umgebung durchzuführen, um Sicherheitsfehlkonfigurationen zu finden und die Ergebnisse im json-Format (und anderen Textformaten) zu sammeln oder sie im Web zu überprüfen.
|
||||
```bash
|
||||
# Create a application with Reader role and set the tenant ID, client ID and secret in prowler so it access the app
|
||||
|
||||
# Launch web with docker-compose
|
||||
export DOCKER_DEFAULT_PLATFORM=linux/amd64
|
||||
curl -LO https://raw.githubusercontent.com/prowler-cloud/prowler/refs/heads/master/docker-compose.yml
|
||||
curl -LO https://raw.githubusercontent.com/prowler-cloud/prowler/refs/heads/master/.env
|
||||
## If using an old docker-compose version, change the "env_file" params to: env_file: ".env"
|
||||
docker compose up -d
|
||||
# Access the web and configure the access to run a scan from it
|
||||
|
||||
# Prowler cli
|
||||
python3 -m pip install prowler --break-system-packages
|
||||
docker run --rm toniblyx/prowler:v4-latest azure --list-checks
|
||||
docker run --rm toniblyx/prowler:v4-latest azure --list-services
|
||||
docker run --rm toniblyx/prowler:v4-latest azure --list-compliance
|
||||
docker run --rm -e "AZURE_CLIENT_ID=<client-id>" -e "AZURE_TENANT_ID=<tenant-id>" -e "AZURE_CLIENT_SECRET=<secret>" toniblyx/prowler:v4-latest azure --sp-env-auth
|
||||
## It also support other authentication types, check: prowler azure --help
|
||||
```
|
||||
### [Monkey365](https://github.com/silverhack/monkey365)
|
||||
|
||||
Es ermöglicht die automatische Durchführung von Sicherheitskonfigurationsüberprüfungen für Azure-Abonnements und Microsoft Entra ID.
|
||||
|
||||
Die HTML-Berichte werden im Verzeichnis `./monkey-reports` im Ordner des GitHub-Repositorys gespeichert.
|
||||
```bash
|
||||
git clone https://github.com/silverhack/monkey365
|
||||
Get-ChildItem -Recurse monkey365 | Unblock-File
|
||||
cd monkey365
|
||||
Import-Module ./monkey365
|
||||
mkdir /tmp/monkey365-scan
|
||||
cd /tmp/monkey365-scan
|
||||
|
||||
Get-Help Invoke-Monkey365
|
||||
Get-Help Invoke-Monkey365 -Detailed
|
||||
|
||||
# Scan with user creds (browser will be run)
|
||||
Invoke-Monkey365 -TenantId <tenant-id> -Instance Azure -Collect All -ExportTo HTML
|
||||
|
||||
# Scan with App creds
|
||||
$SecureClientSecret = ConvertTo-SecureString "<secret>" -AsPlainText -Force
|
||||
Invoke-Monkey365 -TenantId <tenant-id> -ClientId <client-id> -ClientSecret $SecureClientSecret -Instance Azure -Collect All -ExportTo HTML
|
||||
```
|
||||
### [ScoutSuite](https://github.com/nccgroup/ScoutSuite)
|
||||
|
||||
Scout Suite sammelt Konfigurationsdaten zur manuellen Überprüfung und hebt Risikobereiche hervor. Es ist ein Multi-Cloud-Sicherheitsprüfungswerkzeug, das die Bewertung der Sicherheitslage von Cloud-Umgebungen ermöglicht.
|
||||
```bash
|
||||
virtualenv -p python3 venv
|
||||
source venv/bin/activate
|
||||
pip install scoutsuite
|
||||
scout --help
|
||||
|
||||
# Use --cli flag to use az cli credentials
|
||||
# Use --user-account to have scout prompt for user credentials
|
||||
# Use --user-account-browser to launch a browser to login
|
||||
# Use --service-principal to have scout prompt for app credentials
|
||||
|
||||
python scout.py azure --cli
|
||||
```
|
||||
### [Azure-MG-Sub-Governance-Reporting](https://github.com/JulianHayward/Azure-MG-Sub-Governance-Reporting)
|
||||
|
||||
Es ist ein PowerShell-Skript, das Ihnen hilft, **alle Ressourcen und Berechtigungen innerhalb einer Management-Gruppe und des Entra ID**-Mandanten zu visualisieren und Sicherheitsfehlkonfigurationen zu finden.
|
||||
|
||||
Es funktioniert mit dem Az PowerShell-Modul, sodass jede Authentifizierung, die von diesem Tool unterstützt wird, auch von dem Tool unterstützt wird.
|
||||
```bash
|
||||
import-module Az
|
||||
.\AzGovVizParallel.ps1 -ManagementGroupId <management-group-id> [-SubscriptionIdWhitelist <subscription-id>]
|
||||
```
|
||||
## Automatisierte Post-Exploitation-Tools
|
||||
|
||||
### [**ROADRecon**](https://github.com/dirkjanm/ROADtools)
|
||||
|
||||
Die Enumeration von ROADRecon bietet Informationen über die Konfiguration von Entra ID, wie Benutzer, Gruppen, Rollen, bedingte Zugriffsrichtlinien...
|
||||
```bash
|
||||
cd ROADTools
|
||||
pipenv shell
|
||||
# Login with user creds
|
||||
roadrecon auth -u test@corp.onmicrosoft.com -p "Welcome2022!"
|
||||
# Login with app creds
|
||||
roadrecon auth --as-app --client "<client-id>" --password "<secret>" --tenant "<tenant-id>"
|
||||
roadrecon gather
|
||||
roadrecon gui
|
||||
```
|
||||
### [**AzureHound**](https://github.com/BloodHoundAD/AzureHound)
|
||||
```bash
|
||||
# Launch AzureHound
|
||||
## Login with app secret
|
||||
azurehound -a "<client-id>" -s "<secret>" --tenant "<tenant-id>" list -o ./output.json
|
||||
## Login with user creds
|
||||
azurehound -u "<user-email>" -p "<password>" --tenant "<tenant-id>" list -o ./output.json
|
||||
```
|
||||
Starte die **BloodHound**-Webanwendung mit **`curl -L https://ghst.ly/getbhce | docker compose -f - up`** und importiere die `output.json`-Datei.
|
||||
|
||||
Dann kannst du im **EXPLORE**-Tab im **CYPHER**-Bereich ein **Ordnersymbol** sehen, das vorgefertigte Abfragen enthält.
|
||||
|
||||
### [**MicroBurst**](https://github.com/NetSPI/MicroBurst)
|
||||
|
||||
MicroBurst umfasst Funktionen und Skripte, die die Entdeckung von Azure-Diensten, die Überprüfung schwacher Konfigurationen und nachgelagerte Aktionen wie Credential Dumping unterstützen. Es ist für den Einsatz während Penetrationstests gedacht, bei denen Azure verwendet wird.
|
||||
```bash
|
||||
Import-Module .\MicroBurst.psm1
|
||||
Import-Module .\Get-AzureDomainInfo.ps1
|
||||
Get-AzureDomainInfo -folder MicroBurst -Verbose
|
||||
```
|
||||
### [**PowerZure**](https://github.com/hausec/PowerZure)
|
||||
|
||||
PowerZure wurde aus der Notwendigkeit geschaffen, ein Framework zu haben, das sowohl Aufklärung als auch Ausnutzung von Azure, EntraID und den zugehörigen Ressourcen durchführen kann.
|
||||
|
||||
Es verwendet das **Az PowerShell**-Modul, sodass jede Authentifizierung, die von diesem Tool unterstützt wird, auch von dem Tool unterstützt wird.
|
||||
```bash
|
||||
# Login
|
||||
Import-Module Az
|
||||
Connect-AzAccount
|
||||
|
||||
# Clone and import PowerZure
|
||||
git clone https://github.com/hausec/PowerZure
|
||||
cd PowerZure
|
||||
ipmo ./Powerzure.psd1
|
||||
Invoke-Powerzure -h # Check all the options
|
||||
|
||||
# Info Gathering (read)
|
||||
Get-AzureCurrentUser # Get current user
|
||||
Get-AzureTarget # What can you access to
|
||||
Get-AzureUser -All # Get all users
|
||||
Get-AzureSQLDB -All # Get all SQL DBs
|
||||
Get-AzureAppOwner # Owners of apps in Entra
|
||||
Show-AzureStorageContent -All # List containers, shared and tables
|
||||
Show-AzureKeyVaultContent -All # List all contents in key vaults
|
||||
|
||||
|
||||
# Operational (write)
|
||||
Set-AzureUserPassword -Password <password> -Username <username> # Change password
|
||||
Set-AzureElevatedPrivileges # Get permissions from Global Administrator in EntraID to User Access Administrator in Azure RBAC.
|
||||
New-AzureBackdoor -Username <username> -Password <password>
|
||||
Invoke-AzureRunCommand -Command <command> -VMName <vmname>
|
||||
[...]
|
||||
```
|
||||
### [**GraphRunner**](https://github.com/dafthack/GraphRunner/wiki/Invoke%E2%80%90GraphRunner)
|
||||
|
||||
GraphRunner ist ein Post-Exploitation-Toolset zur Interaktion mit der Microsoft Graph API. Es bietet verschiedene Werkzeuge für die Durchführung von Aufklärung, Persistenz und das Plündern von Daten aus einem Microsoft Entra ID (Azure AD) Konto.
|
||||
```bash
|
||||
#A good place to start is to authenticate with the Get-GraphTokens module. This module will launch a device-code login, allowing you to authenticate the session from a browser session. Access and refresh tokens will be written to the global $tokens variable. To use them with other GraphRunner modules use the Tokens flag (Example. Invoke-DumpApps -Tokens $tokens)
|
||||
Import-Module .\GraphRunner.ps1
|
||||
Get-GraphTokens
|
||||
|
||||
#This module gathers information about the tenant including the primary contact info, directory sync settings, and user settings such as if users have the ability to create apps, create groups, or consent to apps.
|
||||
Invoke-GraphRecon -Tokens $tokens -PermissionEnum
|
||||
|
||||
#A module to dump conditional access policies from a tenant.
|
||||
Invoke-GraphRecon -Tokens $tokens -PermissionEnum
|
||||
|
||||
#A module to dump conditional access policies from a tenant.
|
||||
Invoke-DumpCAPS -Tokens $tokens -ResolveGuids
|
||||
|
||||
#This module helps identify malicious app registrations. It will dump a list of Azure app registrations from the tenant including permission scopes and users that have consented to the apps. Additionally, it will list external apps that are not owned by the current tenant or by Microsoft's main app tenant. This is a good way to find third-party external apps that users may have consented to.
|
||||
Invoke-DumpApps -Tokens $tokens
|
||||
|
||||
#Gather the full list of users from the directory.
|
||||
Get-AzureADUsers -Tokens $tokens -OutFile users.txt
|
||||
|
||||
#Create a list of security groups along with their members.
|
||||
Get-SecurityGroups -AccessToken $tokens.access_token
|
||||
|
||||
#Gets groups that may be able to be modified by the current user
|
||||
Get-UpdatableGroups -Tokens $tokens
|
||||
|
||||
#Finds dynamic groups and displays membership rules
|
||||
Get-DynamicGroups -Tokens $tokens
|
||||
|
||||
#Gets a list of SharePoint site URLs visible to the current user
|
||||
Get-SharePointSiteURLs -Tokens $tokens
|
||||
|
||||
#This module attempts to locate mailboxes in a tenant that have allowed other users to read them. By providing a userlist the module will attempt to access the inbox of each user and display if it was successful. The access token needs to be scoped to Mail.Read.Shared or Mail.ReadWrite.Shared for this to work.
|
||||
Invoke-GraphOpenInboxFinder -Tokens $tokens -Userlist users.txt
|
||||
|
||||
#This module attempts to gather a tenant ID associated with a domain.
|
||||
Get-TenantID -Domain
|
||||
|
||||
#Runs Invoke-GraphRecon, Get-AzureADUsers, Get-SecurityGroups, Invoke-DumpCAPS, Invoke-DumpApps, and then uses the default_detectors.json file to search with Invoke-SearchMailbox, Invoke-SearchSharePointAndOneDrive, and Invoke-SearchTeams.
|
||||
Invoke-GraphRunner -Tokens $tokens
|
||||
```
|
||||
### [Stormspotter](https://github.com/Azure/Stormspotter)
|
||||
|
||||
Stormspotter erstellt ein „Angriffsdiagramm“ der Ressourcen in einem Azure-Abonnement. Es ermöglicht Red Teams und Pentestern, die Angriffsfläche und Pivot-Möglichkeiten innerhalb eines Mandanten zu visualisieren und unterstützt Ihre Verteidiger dabei, sich schnell zu orientieren und die Incident-Response-Arbeit zu priorisieren.
|
||||
|
||||
**Leider sieht es unmaintained aus**.
|
||||
```bash
|
||||
# Start Backend
|
||||
cd stormspotter\backend\
|
||||
pipenv shell
|
||||
python ssbackend.pyz
|
||||
|
||||
# Start Front-end
|
||||
cd stormspotter\frontend\dist\spa\
|
||||
quasar.cmd serve -p 9091 --history
|
||||
|
||||
# Run Stormcollector
|
||||
cd stormspotter\stormcollector\
|
||||
pipenv shell
|
||||
az login -u test@corp.onmicrosoft.com -p Welcome2022!
|
||||
python stormspotter\stormcollector\sscollector.pyz cli
|
||||
# This will generate a .zip file to upload in the frontend (127.0.0.1:9091)
|
||||
```
|
||||
{{#include ../../banners/hacktricks-training.md}}
|
||||
|
||||
Reference in New Issue
Block a user