AWS - Organizations Enum

AWS - संगठन एन्यूम

जानें AWS हैकिंग को शून्य से हीरो तक htARTE (HackTricks AWS Red Team Expert) के साथ!

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>जानें 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 में डाउनलोड करना चाहते हैं** तो [**सब्सक्रिप्शन प्लान्स देखें**](https://github.com/sponsors/carlospolop)!
* [**आधिकारिक PEASS & HackTricks स्वैग**](https://peass.creator-spring.com) प्राप्त करें
* हमारे विशेष [**NFTs**](https://opensea.io/collection/the-peass-family) संग्रह **The PEASS Family** की खोज करें
* **शामिल हों** 💬 [**डिस्कॉर्ड समूह**](https://discord.gg/hRep4RUj7f) या [**टेलीग्राम समूह**](https://t.me/peass) या हमें **ट्विटर** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)** पर फॉलो** करें।
* **हैकिंग ट्रिक्स साझा करें द्वारा PRs सबमिट करके** [**HackTricks**](https://github.com/carlospolop/hacktricks) और [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github repos में।

</details>

Last updated