AWS - SES Post Exploitation

जानें AWS हैकिंग को शून्य से हीरो तक htARTE (HackTricks AWS रेड टीम एक्सपर्ट) के साथ!

HackTricks का समर्थन करने के अन्य तरीके:

SES

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

pageAWS - 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

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

अभी टेस्ट करने के लिए।

जानें AWS हैकिंग को शून्य से हीरो तक htARTE (HackTricks AWS Red Team Expert)!

HackTricks का समर्थन करने के अन्य तरीके:

Last updated