Headline
CVE-2023-3087: Changeset 2935217 for fluent-smtp/trunk/app/Services/Mailer/BaseHandler.php – WordPress Plugin Repository
The FluentSMTP plugin for WordPress is vulnerable to Stored Cross-Site Scripting via an email subject in versions up to, and including, 2.2.4 due to insufficient input sanitization and output escaping. This makes it possible for unauthenticated attackers to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page.
Timestamp:
07/06/2023 03:06:25 PM (6 days ago)
techjewel
Message:
Fluent SMTP releasing 2.2.5
File:
- fluent-smtp/trunk/app/Services/Mailer/BaseHandler.php (1 diff)
Legend:
Unmodified
Added
Removed
fluent-smtp/trunk/app/Services/Mailer/BaseHandler.php
r2814285
r2935217
284
284
'to' => maybe\_serialize($this->attributes\['to'\]),
285
285
'from' => $this->attributes\['from'\],
286
'subject' => $this->attributes\['subject'\],
286
'subject' => sanitize\_text\_field($this->attributes\['subject'\]),
287
287
'body' => $this->attributes\['message'\],
288
288
'attachments' => maybe\_serialize($this->attributes\['attachments'\]),
Note: See TracChangeset for help on using the changeset viewer.