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