AWS - SES Post Exploitation

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

प्राप्त ईमेल पर एक bounce email भेजें (यह संकेत देता है कि ईमेल प्राप्त नहीं किया जा सका)। यह केवल ईमेल प्राप्त होने के 24h के भीतर किया जा सकता है।

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 का समर्थन करें