AWS - SES पोस्ट एक्सप्लॉइटेशन

Reading time: 3 minutes

tip

AWS हैकिंग सीखें और अभ्यास करें:HackTricks Training AWS Red Team Expert (ARTE)
GCP हैकिंग सीखें और अभ्यास करें: HackTricks Training GCP Red Team Expert (GRTE) Azure हैकिंग सीखें और अभ्यास करें: HackTricks Training Azure Red Team Expert (AzRTE)

HackTricks का समर्थन करें

SES

अधिक जानकारी के लिए देखें:

AWS - SES Enum

ses:SendEmail

एक ईमेल भेजें।

bash
aws ses send-email --from sender@example.com --destination file://emails.json --message file://message.json
aws sesv2 send-email --from sender@example.com --destination file://emails.json --message file://message.json

अभी परीक्षण करना बाकी है।

ses:SendRawEmail

एक ईमेल भेजें।

bash
aws ses send-raw-email --raw-message file://message.json

अभी परीक्षण करना बाकी है।

ses:SendTemplatedEmail

एक टेम्पलेट के आधार पर एक ईमेल भेजें।

bash
aws ses  send-templated-email --source <value> --destination <value> --template <value>

अभी परीक्षण करना बाकी है।

ses:SendBulkTemplatedEmail

कई गंतव्यों पर एक ईमेल भेजें

bash
aws ses send-bulk-templated-email --source <value> --template <value>

अभी परीक्षण करना बाकी है।

ses:SendBulkEmail

कई गंतव्यों पर एक ईमेल भेजें।

aws sesv2 send-bulk-email --default-content <value> --bulk-email-entries <value>

ses:SendBounce

एक बाउंस ईमेल भेजें जो प्राप्त ईमेल पर हो (यह संकेत करते हुए कि ईमेल प्राप्त नहीं किया जा सका)। यह केवल ईमेल प्राप्त करने के 24 घंटे के भीतर किया जा सकता है।

bash
aws ses send-bounce --original-message-id <value> --bounce-sender <value> --bounced-recipient-info-list <value>

अभी परीक्षण करना बाकी है।

ses:SendCustomVerificationEmail

यह एक अनुकूलित सत्यापन ईमेल भेजेगा। आपको टेम्पलेट ईमेल बनाने के लिए भी अनुमतियों की आवश्यकता हो सकती है।

bash
aws ses send-custom-verification-email --email-address <value> --template-name <value>
aws sesv2 send-custom-verification-email --email-address <value> --template-name <value>

अभी परीक्षण करना बाकी है।

tip

AWS हैकिंग सीखें और अभ्यास करें:HackTricks Training AWS Red Team Expert (ARTE)
GCP हैकिंग सीखें और अभ्यास करें: HackTricks Training GCP Red Team Expert (GRTE) Azure हैकिंग सीखें और अभ्यास करें: HackTricks Training Azure Red Team Expert (AzRTE)

HackTricks का समर्थन करें