mirror of
https://github.com/HackTricks-wiki/hacktricks-cloud.git
synced 2026-07-05 12:17:27 -07:00
1.8 KiB
1.8 KiB
AWS - SES Post Exploitation
{{#include ../../../banners/hacktricks-training.md}}
SES
Za više informacija pogledajte:
{{#ref}} ../aws-services/aws-ses-enum.md {{#endref}}
ses:SendEmail
Pošaljite email.
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
Još uvek za testiranje.
ses:SendRawEmail
Pošaljite email.
aws ses send-raw-email --raw-message file://message.json
Još uvek za testiranje.
ses:SendTemplatedEmail
Pošaljite email na osnovu šablona.
aws ses send-templated-email --source <value> --destination <value> --template <value>
Još uvek za testiranje.
ses:SendBulkTemplatedEmail
Pošaljite email na više odredišta
aws ses send-bulk-templated-email --source <value> --template <value>
Još uvek za testiranje.
ses:SendBulkEmail
Pošaljite email na više odredišta.
aws sesv2 send-bulk-email --default-content <value> --bulk-email-entries <value>
ses:SendBounce
Pošaljite bounce email preko primljenog emaila (ukazujući da email nije mogao biti primljen). Ovo se može uraditi do 24h nakon prijema emaila.
aws ses send-bounce --original-message-id <value> --bounce-sender <value> --bounced-recipient-info-list <value>
ses:SendCustomVerificationEmail
Ovo će poslati prilagođeni verifikacioni email. Možda će vam biti potrebne dozvole i za kreiranje šablona emaila.
aws ses send-custom-verification-email --email-address <value> --template-name <value>
aws sesv2 send-custom-verification-email --email-address <value> --template-name <value>
Još uvek za testiranje.
{{#include ../../../banners/hacktricks-training.md}}