AWS - SES Post Exploitation

Naučite hakovanje AWS-a od nule do heroja sa htARTE (HackTricks AWS Red Team Expert)!

Drugi načini podrške HackTricks-u:

SES

Za više informacija pogledajte:

pageAWS - SES Enum

ses:SendEmail

Pošalji 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šalji email.

aws ses send-raw-email --raw-message file://message.json

Još uvek za testiranje.

ses:SendTemplatedEmail

Pošaljite email na osnovu predloška.

aws ses  send-templated-email --source <value> --destination <value> --template <value>

Još uvek za testiranje.

ses:SendBulkTemplatedEmail

Pošaljite e-poštu na više odredišta

aws ses send-bulk-templated-email --source <value> --template <value>

Još uvek za testiranje.

ses:SendBulkEmail

Pošaljite e-poštu 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 24 sata nakon što je email primljen.

aws ses send-bounce --original-message-id <value> --bounce-sender <value> --bounced-recipient-info-list <value>

Još uvek za testiranje.

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.

Naučite hakovanje AWS-a od nule do heroja sa htARTE (HackTricks AWS Red Team Expert)!

Drugi načini podrške HackTricks-u:

Last updated