AWS - SES Post Exploitation

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

SES

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

AWS - SES Enum

ses:SendEmail

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

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

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

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

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

ses:SendTemplatedEmail

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

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

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

ses:SendBulkTemplatedEmail

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

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 भेजें एक प्राप्त ईमेल पर (संकेत करते हुए कि ईमेल प्राप्त नहीं किया जा सका)। यह केवल प्राप्ति के 24 घंटे के भीतर किया जा सकता है।

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

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

ses:SendCustomVerificationEmail

यह एक कस्टमाइज़्ड वेरिफिकेशन ईमेल भेजेगा। आपको टेम्पलेट ईमेल बनाने की अनुमति भी चाहिए हो सकती है।

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

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

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

Last updated