Security
Headlines
HeadlinesLatestCVEs

Headline

CVE-2023-3822: Fix Xss in the link Editable · pimcore/pimcore@d75888a

Cross-site Scripting (XSS) - Reflected in GitHub repository pimcore/pimcore prior to 10.6.4.

CVE
#xss#git

Expand Up

@@ -97,10 +97,10 @@ pimcore.document.editables.link = Class.create(pimcore.document.editable, {

} else if (this.data.path) {

text = this.data.path;

}

let displayHtml = Ext.util.Format.htmlEncode(text);

if (this.data.path || this.data.anchor || this.data.parameters) {

let fullpath = this.data.path + (this.data.parameters ? ‘?’ + Ext.util.Format.htmlEncode(this.data.parameters) : ‘’) + (this.data.anchor ? ‘#’ + Ext.util.Format.htmlEncode(this.data.anchor) : ‘’);

let displayHtml = Ext.util.Format.htmlEncode(text);

if (this.config.textPrefix !== undefined) {

displayHtml = this.config.textPrefix + displayHtml;

}

Expand All

@@ -110,7 +110,7 @@ pimcore.document.editables.link = Class.create(pimcore.document.editable, {

return ‘<a href="’ + fullpath + ‘" class="’ + this.config[“class”] + ' ' + Ext.util.Format.htmlEncode(this.data[“class”]) + ‘">’ + displayHtml + '</a>’;

}

return text;

return displayHtml;

},

save: function () {

Expand Down

Related news

GHSA-vmpv-qjhq-r463: Pimcore Cross-site Scripting vulnerability

Cross-site Scripting (XSS) - Reflected in GitHub repository pimcore/pimcore prior to 10.6.4.

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