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

Fixes #1220 XSS vulnerability is addressed

parent 55b20f00
No related branches found
No related tags found
No related merge requests found
......@@ -104,6 +104,13 @@ class Users_SaveAjax_Action extends Vtiger_SaveAjax_Action {
$recordModel->set($fieldName,$existingRecordModel->get($fieldName));
}
}
if($fieldName == 'signature'){
$fieldValue = $request->getRaw($fieldName);
$purifiedContent = vtlib_purify(decode_html($fieldValue));
// Purify malicious html event attributes
$fieldValue = purifyHtmlEventAttributes(decode_html($purifiedContent),true);
$recordModel->set($fieldName,$fieldValue);
}
return $recordModel;
}
......
......@@ -106,6 +106,12 @@ class Vtiger_SaveAjax_Action extends Vtiger_Save_Action {
if ($fieldDataType == 'time' && $fieldValue !== null) {
$fieldValue = Vtiger_Time_UIType::getTimeValueWithSeconds($fieldValue);
}
if($fieldName == 'notecontent' && $fieldValue !== null){
$fieldValue = $request->getRaw($fieldName);
$purifiedContent = vtlib_purify(decode_html($fieldValue));
// Purify malicious html event attributes
$fieldValue = purifyHtmlEventAttributes(decode_html($purifiedContent),true);
}
if ($fieldValue !== null) {
if (!is_array($fieldValue)) {
$fieldValue = trim($fieldValue);
......
No preview for this file type
......@@ -74,7 +74,11 @@ class ModComments_SaveAjax_Action extends Vtiger_SaveAjax_Action {
public function getRecordModelFromRequest(Vtiger_Request $request) {
$recordModel = parent::getRecordModelFromRequest($request);
$recordModel->set('commentcontent', $request->getRaw('commentcontent'));
$commentContent = $request->getRaw('commentcontent');
$purifiedContent = vtlib_purify(decode_html($commentContent));
// Purify malicious html event attributes
$fieldValue = purifyHtmlEventAttributes(decode_html($purifiedContent),true);
$recordModel->set('commentcontent', $fieldValue);
$recordModel->set('is_private', $request->get('is_private'));
return $recordModel;
......
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