AWS - SES Post Exploitation

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

SES

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

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

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