Skip to content

Commit

Permalink
Fix h1 report 1083231
Browse files Browse the repository at this point in the history
  • Loading branch information
mbeccati committed Jan 23, 2021
1 parent 1a05c59 commit e2a67ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion RELEASE_NOTES.txt
Expand Up @@ -23,7 +23,8 @@ What's New in Revive Adserver 5.1.1
Security Updates
----------------

* None
* Fixed reflected XSS vulnerability in userlog-index.php via the
period_preset parameter.


New Features
Expand Down
2 changes: 1 addition & 1 deletion lib/OA/Admin/UI/Field/AuditDaySpanField.php
Expand Up @@ -99,7 +99,7 @@ function {$this->_name}Reset()
{
document.getElementById('{$this->_name}_start').value = '$startDateStr';
document.getElementById('{$this->_name}_start').value = '$endDateStr';
document.getElementById('{$this->_name}_preset').value = '{$this->_fieldSelectionValue}';
document.getElementById('{$this->_name}_preset').value = \"".addcslashes(stripslashes($this->_fieldSelectionValue), "\0..\37/\"\\")."\";
}
function {$this->_name}FormSubmit() {
submitForm();
Expand Down

0 comments on commit e2a67ce

Please sign in to comment.