mirror of
https://github.com/HackTricks-wiki/hacktricks-cloud.git
synced 2025-12-27 05:03:31 -08:00
45 lines
3.2 KiB
Markdown
45 lines
3.2 KiB
Markdown
# AWS - EKS Enum
|
|
|
|
{{#include ../../../banners/hacktricks-training.md}}
|
|
|
|
## EKS
|
|
|
|
Amazon Elastic Kubernetes Service (Amazon EKS) उपयोगकर्ताओं को अपने स्वयं के Kubernetes नियंत्रण कक्ष या नोड्स को स्थापित, संचालित और प्रबंधित करने की आवश्यकता को समाप्त करने के लिए डिज़ाइन किया गया है। इसके बजाय, Amazon EKS इन घटकों का प्रबंधन करता है, AWS पर Kubernetes का उपयोग करके कंटेनरीकृत अनुप्रयोगों को तैनात, प्रबंधित और स्केल करने का एक सरल तरीका प्रदान करता है।
|
|
|
|
Amazon EKS के प्रमुख पहलू शामिल हैं:
|
|
|
|
1. **Managed Kubernetes Control Plane**: Amazon EKS महत्वपूर्ण कार्यों जैसे पैचिंग, नोड प्रोविजनिंग और अपडेट को स्वचालित करता है।
|
|
2. **Integration with AWS Services**: यह कंप्यूट, स्टोरेज, डेटाबेस और सुरक्षा के लिए AWS सेवाओं के साथ निर्बाध एकीकरण प्रदान करता है।
|
|
3. **Scalability and Security**: Amazon EKS को उच्च उपलब्धता और सुरक्षा के लिए डिज़ाइन किया गया है, जो स्वचालित स्केलिंग और डिज़ाइन द्वारा पृथक्करण जैसी सुविधाएँ प्रदान करता है।
|
|
4. **Compatibility with Kubernetes**: Amazon EKS पर चलने वाले अनुप्रयोग किसी भी मानक Kubernetes वातावरण पर चलने वाले अनुप्रयोगों के साथ पूरी तरह से संगत हैं।
|
|
|
|
#### Enumeration
|
|
```bash
|
|
aws eks list-clusters
|
|
aws eks describe-cluster --name <cluster_name>
|
|
# Check for endpointPublicAccess and publicAccessCidrs
|
|
|
|
aws eks list-fargate-profiles --cluster-name <cluster_name>
|
|
aws eks describe-fargate-profile --cluster-name <cluster_name> --fargate-profile-name <prof_name>
|
|
|
|
aws eks list-identity-provider-configs --cluster-name <cluster_name>
|
|
aws eks describe-identity-provider-config --cluster-name <cluster_name> --identity-provider-config <p_config>
|
|
|
|
aws eks list-nodegroups --cluster-name <c_name>
|
|
aws eks describe-nodegroup --cluster-name <c_name> --nodegroup-name <n_name>
|
|
|
|
aws eks list-updates --name <name>
|
|
aws eks describe-update --name <name> --update-id <id>
|
|
```
|
|
#### पोस्ट एक्सप्लॉइटेशन
|
|
|
|
{{#ref}}
|
|
../aws-post-exploitation/aws-eks-post-exploitation.md
|
|
{{#endref}}
|
|
|
|
## संदर्भ
|
|
|
|
- [https://aws.amazon.com/eks/](https://aws.amazon.com/eks/)
|
|
|
|
{{#include ../../../banners/hacktricks-training.md}}
|