Skip to content
Snippets Groups Projects
Commit 4e8ef71b authored by Uma's avatar Uma
Browse files

Fixes vulnerable picklist values in layout editor

parent d5927cdf
No related branches found
No related tags found
No related merge requests found
......@@ -537,6 +537,12 @@ Vtiger.Class('Settings_LayoutEditor_Js', {
for (var i in fieldOptions) {
var fieldValue = fieldOptions[i];
var specialChars = /[<\>\"\,\[\]\{\}]/;
if (specialChars.test(fieldValue)) {
var message = app.vtranslate('JS_SPECIAL_CHARACTERS') + " < > \" , [ ] { } " + app.vtranslate('JS_NOT_ALLOWED');
vtUtils.showValidationMessage(element, message, {container:data});
return false;
}
var fieldValueOption = defaultOptions.filter('[value="'+fieldValue+'"]');
if (fieldValueOption.length <= 0) {
newOptions += ' <option value="'+fieldValue+'">'+fieldValue+'</option> ';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment