Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

InputfieldTextTags missing escaping for values when using AJAX (e.g. in Repeater context) #2051

Open
nicoknoll opened this issue Feb 22, 2025 · 1 comment

Comments

@nicoknoll
Copy link

nicoknoll commented Feb 22, 2025

I have a list of users, one is called "O'Conner". When I try to add a RepeaterItem that contains a field using InputfieldTextTags I get the following error:

VM283:1 Uncaught SyntaxError: Unexpected identifier 'Conner'
    at eval (<anonymous>)
    at JqueryCore.js?v=1.12.4:1:3708
    at jQuery.globalEval (JqueryCore.js?v=1.12.4:1:3727)
    at domManip (JqueryCore.js?v=1.12.4:1:82513)
    at jQuery.append (JqueryCore.js?v=1.12.4:1:85126)
    at addRepeaterItem (InputfieldRepeater.js?v=111-1740217539:520:18)
    at Object.success (InputfieldRepeater.js?v=111-1740217539:588:4)
    at fire (JqueryCore.js?v=1.12.4:1:43765)
    at Object.fireWith [as resolveWith] (JqueryCore.js?v=1.12.4:1:44935)
    at done (JqueryCore.js?v=1.12.4:1:134643)

I debugged this and the core issue lies here:

if($config->ajax && !empty($opts['cfgName'])) {
	// when renderReady was called during non-ajax, it may not have included the current value
	// as would be the case when there are TextTags fields in repeaters, PageEditChildren, etc.
	// so we add them here to the JS ProcessWire.config as part of the output
	$script = 'script';
	$cfgName = $opts['cfgName'];
	$out .= "<$script>";
	foreach($tags as $val => $label) {
		 $out .= "ProcessWire.config." . $cfgName . "['$val'] = '$label';";
	}
	$out .= "</$script>";
}

$label is unescapped when added, therefore ' does break the parsing. This might even lead to code injection issues using that field.

My current workaround is by changing that line to:

$escapedLabel = addcslashes($label, "'\\");
$out .= "ProcessWire.config." . $cfgName . "['$val'] = '$escapedLabel';";

but in general I'm not sure why we're not just json encoding all options

@nicoknoll nicoknoll changed the title InputfieldTextTags missing escaping for balues when using AJAX (e.g. in Repeater context) InputfieldTextTags missing escaping for values when using AJAX (e.g. in Repeater context) Feb 22, 2025
ryancramerdesign added a commit to processwire/processwire that referenced this issue Feb 28, 2025
@ryancramerdesign
Copy link
Member

Thanks @nicoknoll I've pushed a fix for this. Good to see you btw!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants