mirror of
https://github.com/HackTricks-wiki/hacktricks-cloud.git
synced 2026-02-05 03:16:37 -08:00
1.9 KiB
1.9 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 e-poštu.
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š nije testirano.
ses:SendRawEmail
Pošaljite e-poštu.
aws ses send-raw-email --raw-message file://message.json
Još treba testirati.
ses:SendTemplatedEmail
Pošaljite e-poruku zasnovanu na šablonu.
aws ses send-templated-email --source <value> --destination <value> --template <value>
Još nije testirano.
ses:SendBulkTemplatedEmail
Pošaljite e-poruku na više odredišta
aws ses send-bulk-templated-email --source <value> --template <value>
Još treba testirati.
ses:SendBulkEmail
Pošaljite e-poruku na više odredišta.
aws sesv2 send-bulk-email --default-content <value> --bulk-email-entries <value>
ses:SendBounce
Pošaljite bounce email za primljenu poruku (koja označava da poruka nije mogla biti dostavljena). Ovo se može uraditi samo do 24h nakon primanja poruke.
aws ses send-bounce --original-message-id <value> --bounce-sender <value> --bounced-recipient-info-list <value>
Još treba testirati.
ses:SendCustomVerificationEmail
Ovo će poslati prilagođenu verifikacionu e-poruku. Možda će vam takođe biti potrebne dozvole za kreiranje predloška e-poruke.
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š treba testirati.
{{#include ../../../../banners/hacktricks-training.md}}