Skip to content

Commit

Permalink
Fixed issue #19037: [security] Reflected XSS in LimeSurvey via userid…
Browse files Browse the repository at this point in the history
… parameter (#3406)

Co-authored-by: lapiudevgit <devgit@lapiu.biz>
  • Loading branch information
gabrieljenik and lapiudevgit committed Sep 14, 2023
1 parent dd7f575 commit ef00d48
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions application/controllers/UserManagementController.php
Original file line number Diff line number Diff line change
Expand Up @@ -435,6 +435,7 @@ public function actionDeleteConfirm()
);
}
$userId = Yii::app()->request->getParam('userid');
$userId = sanitize_int($userId);
$aData['userId'] = $userId;
return $this->renderPartial('partial/confirmuserdelete', $aData);
}
Expand Down

0 comments on commit ef00d48

Please sign in to comment.