AWS - Organizations Enum

Lerne & übe AWS Hacking:HackTricks Training AWS Red Team Expert (ARTE) Lerne & übe GCP Hacking: HackTricks Training GCP Red Team Expert (GRTE)

Unterstütze HackTricks

Grundlegende Informationen

AWS Organizations erleichtert die Erstellung neuer AWS-Konten ohne zusätzliche Kosten. Ressourcen können mühelos zugewiesen, Konten effizient gruppiert und Governance-Richtlinien auf einzelne Konten oder Gruppen angewendet werden, was das Management und die Kontrolle innerhalb der Organisation verbessert.

Wichtige Punkte:

  • Erstellung neuer Konten: AWS Organizations ermöglicht die Erstellung neuer AWS-Konten ohne zusätzliche Gebühren.

  • Ressourcenzuweisung: Es vereinfacht den Prozess der Ressourcenzuweisung über die Konten hinweg.

  • Kontengruppierung: Konten können zusammengefasst werden, was das Management vereinfacht.

  • Governance-Richtlinien: Richtlinien können auf Konten oder Gruppen von Konten angewendet werden, um Compliance und Governance in der gesamten Organisation sicherzustellen.

Weitere Informationen findest du unter:

AWS - Basic Information
# 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

Referenzen

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

Lerne & übe AWS Hacking:HackTricks Training AWS Red Team Expert (ARTE) Lerne & übe GCP Hacking: HackTricks Training GCP Red Team Expert (GRTE)

Unterstütze HackTricks

Last updated