mirror of
https://github.com/HackTricks-wiki/hacktricks-cloud.git
synced 2026-07-29 07:00:29 -07:00
Translated ['src/pentesting-cloud/azure-security/az-enumeration-tools.md
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
{{#include ../../banners/hacktricks-training.md}}
|
||||
|
||||
## Linux에 PowerShell 설치하기
|
||||
## 리눅스에 PowerShell 설치하기
|
||||
|
||||
> [!TIP]
|
||||
> 리눅스에서는 PowerShell Core를 설치해야 합니다:
|
||||
@@ -26,7 +26,7 @@ curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
|
||||
```
|
||||
## MacOS에 PowerShell 설치하기
|
||||
|
||||
[**문서**](https://learn.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-macos?view=powershell-7.4)에서의 지침:
|
||||
[**문서**](https://learn.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-macos?view=powershell-7.4)에서 제공하는 지침:
|
||||
|
||||
1. 아직 설치되지 않았다면 `brew`를 설치하세요:
|
||||
```bash
|
||||
@@ -51,7 +51,7 @@ brew upgrade powershell
|
||||
|
||||
[**Azure Command-Line Interface (CLI)**](https://learn.microsoft.com/en-us/cli/azure/install-azure-cli)는 Azure 및 Entra ID 리소스를 관리하고 운영하기 위해 Python으로 작성된 크로스 플랫폼 도구입니다. 이 도구는 Azure에 연결하여 명령줄 또는 스크립트를 통해 관리 명령을 실행합니다.
|
||||
|
||||
[**설치 지침을 보려면 이 링크를 따르세요!**](https://learn.microsoft.com/en-us/cli/azure/install-azure-cli#install)
|
||||
[**설치 지침을 보려면 이 링크를 따르세요¡**](https://learn.microsoft.com/en-us/cli/azure/install-azure-cli#install)
|
||||
|
||||
Azure CLI의 명령은 다음 패턴을 사용하여 구조화됩니다: `az <service> <action> <parameters>`
|
||||
|
||||
@@ -93,13 +93,13 @@ $env:HTTP_PROXY="http://127.0.0.1:8080"
|
||||
|
||||
Azure PowerShell은 PowerShell 명령줄에서 Azure 리소스를 직접 관리하기 위한 cmdlet이 포함된 모듈입니다.
|
||||
|
||||
[**설치 지침**](https://learn.microsoft.com/en-us/powershell/azure/install-azure-powershell) 링크를 따라가세요.
|
||||
[**설치 지침**](https://learn.microsoft.com/en-us/powershell/azure/install-azure-powershell)을 보려면 이 링크를 따르세요.
|
||||
|
||||
Azure PowerShell AZ 모듈의 명령은 다음과 같이 구조화됩니다: `<Action>-Az<Service> <parameters>`
|
||||
|
||||
#### Debug | MitM Az PowerShell
|
||||
|
||||
**`-Debug`** 매개변수를 사용하면 도구가 보내는 모든 요청을 볼 수 있습니다:
|
||||
매개변수 **`-Debug`**를 사용하면 도구가 보내는 모든 요청을 볼 수 있습니다:
|
||||
```bash
|
||||
Get-AzResourceGroup -Debug
|
||||
```
|
||||
@@ -107,7 +107,7 @@ Get-AzResourceGroup -Debug
|
||||
|
||||
### Microsoft Graph PowerShell
|
||||
|
||||
Microsoft Graph PowerShell은 단일 엔드포인트를 사용하여 SharePoint, Exchange 및 Outlook과 같은 서비스에 대한 모든 Microsoft Graph API에 접근할 수 있는 크로스 플랫폼 SDK입니다. PowerShell 7+, MSAL을 통한 현대 인증, 외부 ID 및 고급 쿼리를 지원합니다. 최소 권한 액세스에 중점을 두어 보안 작업을 보장하며 최신 Microsoft Graph API 기능에 맞춰 정기적으로 업데이트를 받습니다.
|
||||
Microsoft Graph PowerShell은 단일 엔드포인트를 사용하여 SharePoint, Exchange 및 Outlook과 같은 서비스에 대한 모든 Microsoft Graph API에 접근할 수 있는 크로스 플랫폼 SDK입니다. PowerShell 7+를 지원하며, MSAL을 통한 현대 인증, 외부 ID 및 고급 쿼리를 지원합니다. 최소 권한 액세스에 중점을 두어 보안 작업을 보장하며, 최신 Microsoft Graph API 기능에 맞춰 정기적으로 업데이트를 받습니다.
|
||||
|
||||
[**설치 지침**](https://learn.microsoft.com/en-us/powershell/microsoftgraph/installation)을 보려면 이 링크를 따르세요.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user