Security
Headlines
HeadlinesLatestCVEs

Headline

CVE-2023-41316: fix: sanitize project/org name in invitation emails (#1898) · tolgee/tolgee-platform@bab718b

Tolgee is an open-source localization platform. Due to lack of validation field - Org Name, bad actor can send emails with HTML injected code to the victims. Registered users can inject HTML into unsanitized emails from the Tolgee instance to other users. This unsanitized HTML ends up in invitation emails which appear as legitimate org invitations. Bad actors may direct users to malicious website or execute javascript in the context of the users browser. This vulnerability has been addressed in version 3.29.2. Users are advised to upgrade. There are no known workarounds for this vulnerability.

CVE
#vulnerability#web#git#java

Expand Up @@ -4,6 +4,7 @@ import io.tolgee.component.FrontendUrlProvider import io.tolgee.dtos.misc.EmailParams import io.tolgee.model.Invitation import org.springframework.stereotype.Component import org.springframework.web.util.HtmlUtils
@Component class InvitationEmailSender( Expand Down Expand Up @@ -45,8 +46,10 @@ class InvitationEmailSender( }
val name = projectNameOrNull ?: organizationNameOrNull ?: throw IllegalStateException(“Both the organization and the project are null??”)
return “You have been invited to $toWhat $name in Tolgee.” val escapedName = HtmlUtils.htmlEscape(name) return “You have been invited to $toWhat $escapedName in Tolgee.” }
private fun getInvitationAcceptUrl(code: String): String { Expand Down

CVE: Latest News

CVE-2023-50976: Transactions API Authorization by oleiman · Pull Request #14969 · redpanda-data/redpanda
CVE-2023-6905
CVE-2023-6903
CVE-2023-6904
CVE-2023-3907