AWS - Organizations Enum

AWS - 조직 열거

htARTE (HackTricks AWS Red Team Expert)를 통해 **제로부터 영웅까지 AWS 해킹을 배우세요**!

HackTricks를 지원하는 다른 방법:

기본 정보

AWS 조직은 추가 비용 없이 새로운 AWS 계정을 생성하는 것을 용이하게 합니다. 리소스를 쉽게 할당하고, 계정을 효율적으로 그룹화하며, 개별 계정 또는 그룹에 거버넌스 정책을 적용하여 조직 내에서의 관리와 통제를 강화합니다.

주요 포인트:

  • 새 계정 생성: AWS 조직을 통해 추가 비용 없이 새로운 AWS 계정을 생성할 수 있습니다.

  • 리소스 할당: 계정 간 리소스 할당 프로세스를 간소화합니다.

  • 계정 그룹화: 계정을 그룹화하여 관리를 보다 효율적으로 만듭니다.

  • 거버넌스 정책: 계정 또는 계정 그룹에 정책을 적용하여 조직 전체에서 규정 준수와 거버넌스를 보장합니다.

더 많은 정보는 다음에서 찾을 수 있습니다:

pageAWS - Basic Information

```bash # Get Org aws organizations describe-organization aws organizations list-roots

Get OUs, from root and from other OUs

aws organizations list-organizational-units-for-parent --parent-id r-lalala aws organizations list-organizational-units-for-parent --parent-id ou-n8s9-8nzv3a5y

Get accounts

List all the accounts without caring about the parent

aws organizations list-accounts

Accounts from a parent

aws organizations list-accounts-for-parent --parent-id r-lalala aws organizations list-accounts-for-parent --parent-id ou-n8s9-8nzv3a5y

Get basic account info

You need the permission iam:GetAccountSummary

aws iam get-account-summary

## 참고 자료

* https://aws.amazon.com/organizations/

<details>

<summary><strong>htARTE (HackTricks AWS Red Team Expert)로부터 AWS 해킹을 제로부터 전문가까지 배우세요</strong> <a href="https://training.hacktricks.xyz/courses/arte"><strong>htARTE (HackTricks AWS Red Team Expert)</strong></a><strong>!</strong></summary>

HackTricks를 지원하는 다른 방법:

* **회사가 HackTricks에 광고되길 원하거나 HackTricks를 PDF로 다운로드하길 원한다면** [**SUBSCRIPTION PLANS**](https://github.com/sponsors/carlospolop)를 확인하세요!
* [**공식 PEASS & HackTricks 스왜그**](https://peass.creator-spring.com)를 구매하세요
* [**The PEASS Family**](https://opensea.io/collection/the-peass-family)를 발견하세요, 당사의 독점 [**NFTs**](https://opensea.io/collection/the-peass-family) 컬렉션
* **💬 [**Discord 그룹**](https://discord.gg/hRep4RUj7f)에 가입하거나 [**텔레그램 그룹**](https://t.me/peass)에 가입하거나 **트위터** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**를 팔로우하세요.**
* **해킹 트릭을 공유하려면** [**HackTricks**](https://github.com/carlospolop/hacktricks) 및 [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github 저장소로 PR을 제출하세요.

</details>

最終更新