mirror of
https://github.com/HackTricks-wiki/hacktricks-cloud.git
synced 2026-07-28 22:51:09 -07:00
1.9 KiB
1.9 KiB
AWS - SES 포스트 익스플로이테이션
{{#include ../../../banners/hacktricks-training.md}}
SES
자세한 정보는 다음을 확인하세요:
{{#ref}} ../aws-services/aws-ses-enum.md {{#endref}}
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>
아직 테스트해야 함.