mirror of
https://github.com/HackTricks-wiki/hacktricks-cloud.git
synced 2026-01-16 14:52:43 -08:00
Update pwsh
This commit is contained in:
@@ -84,6 +84,9 @@ For more info you can find an Azure guide use a vault secret in a static app in
|
||||
|
||||
## Enumeration
|
||||
|
||||
{% tabs %}
|
||||
{% tab title="az cli" %}
|
||||
{% code overflow="wrap" %}
|
||||
```bash
|
||||
# List Static Webapps
|
||||
az staticwebapp list --output table
|
||||
@@ -115,6 +118,58 @@ az rest --method POST \
|
||||
# Check connected backends
|
||||
az staticwebapp backends show --name <name> --resource-group <res-group>
|
||||
```
|
||||
{% endcode %}
|
||||
{% endtab %}
|
||||
|
||||
{% tab title="Az PowerShell" %}
|
||||
{% code overflow="wrap" %}
|
||||
```powershell
|
||||
Get-Command -Module Az.Websites
|
||||
|
||||
Get-AzStaticWebApp -ResourceGroupName <ResourceGroupName> -Name <Name>
|
||||
Get-AzStaticWebAppBuild -ResourceGroupName <ResourceGroupName> -Name <Name>
|
||||
Get-AzStaticWebAppBuildAppSetting -ResourceGroupName <ResourceGroupName> -Name <Name> -EnvironmentName <EnvironmentName>
|
||||
Get-AzStaticWebAppBuildFunction -ResourceGroupName <ResourceGroupName> -Name <Name> -EnvironmentName <EnvironmentName>
|
||||
Get-AzStaticWebAppBuildFunctionAppSetting
|
||||
Get-AzStaticWebAppConfiguredRole
|
||||
Get-AzStaticWebAppCustomDomain
|
||||
Get-AzStaticWebAppFunction
|
||||
Get-AzStaticWebAppFunctionAppSetting
|
||||
Get-AzStaticWebAppSecret
|
||||
Get-AzStaticWebAppSetting
|
||||
Get-AzStaticWebAppUser
|
||||
Get-AzStaticWebAppUserProvidedFunctionApp
|
||||
Get-AzWebAppContinuousWebJob
|
||||
Get-AzWebAppSlotContinuousWebJob
|
||||
Get-AzWebAppSlotTriggeredWebJob
|
||||
Get-AzWebAppSlotTriggeredWebJobHistory
|
||||
Get-AzWebAppSlotWebJob
|
||||
Get-AzWebAppTriggeredWebJob
|
||||
Get-AzWebAppTriggeredWebJobHistory
|
||||
Get-AzWebAppWebJob
|
||||
|
||||
Get-AzAppServiceEnvironment
|
||||
Get-AzAppServicePlan
|
||||
Get-AzDeletedWebApp
|
||||
Get-AzWebApp
|
||||
Get-AzWebAppAccessRestrictionConfig
|
||||
Get-AzWebAppBackup
|
||||
Get-AzWebAppBackupConfiguration
|
||||
Get-AzWebAppBackupList
|
||||
Get-AzWebAppCertificate
|
||||
Get-AzWebAppContainerContinuousDeploymentUrl
|
||||
Get-AzWebAppPublishingProfile
|
||||
Get-AzWebAppSlot
|
||||
Get-AzWebAppSlotConfigName
|
||||
Get-AzWebAppSlotPublishingProfile
|
||||
Get-AzWebAppSnapshot
|
||||
Get-AzWebAppSSLBinding
|
||||
Get-AzWebAppTrafficRouting
|
||||
```
|
||||
{% endcode %}
|
||||
{% endtab %}
|
||||
{% endtabs %}
|
||||
|
||||
|
||||
## Examples to generate Web Apps
|
||||
|
||||
|
||||
Reference in New Issue
Block a user