AWS - Organizations Enum

AWS Hacking सीखें और अभ्यास करें:HackTricks Training AWS Red Team Expert (ARTE) GCP Hacking सीखें और अभ्यास करें: HackTricks Training GCP Red Team Expert (GRTE)

HackTricks को समर्थन दें

बुनियादी जानकारी

AWS Organizations बिना अतिरिक्त लागत के नए AWS खातों के निर्माण की सुविधा प्रदान करता है। संसाधनों को आसानी से आवंटित किया जा सकता है, खातों को कुशलतापूर्वक समूहित किया जा सकता है, और व्यक्तिगत खातों या समूहों पर शासन नीतियों को लागू किया जा सकता है, जिससे संगठन के भीतर प्रबंधन और नियंत्रण में सुधार होता है।

मुख्य बिंदु:

  • नया खाता निर्माण: AWS Organizations बिना अतिरिक्त शुल्क के नए AWS खातों के निर्माण की अनुमति देता है।

  • संसाधन आवंटन: यह खातों के बीच संसाधनों के आवंटन की प्रक्रिया को सरल बनाता है।

  • खाता समूह: खातों को एक साथ समूहित किया जा सकता है, जिससे प्रबंधन अधिक सुव्यवस्थित हो जाता है।

  • शासन नीतियाँ: नीतियों को खातों या खातों के समूहों पर लागू किया जा सकता है, जिससे संगठन में अनुपालन और शासन सुनिश्चित होता है।

आप अधिक जानकारी पा सकते हैं:

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

संदर्भ

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

AWS Hacking सीखें और अभ्यास करें:HackTricks Training AWS Red Team Expert (ARTE) GCP Hacking सीखें और अभ्यास करें: HackTricks Training GCP Red Team Expert (GRTE)

HackTricks को समर्थन दें

Last updated