Bug #9390
closeddiag_backup.php: Backup output generation failure with CSRF script tag inserted into XML
100%
Description
Since the last update (ie: 2.4.4_2), backups fail to restore; previously generated backups will restore, but new backups will fail restoration with the following message:
The following input errors were detected: - The configuration could not be restored.
When creating a backup XML file, regardless of the options (Backup area, Skip packages, Skip RRD data, Encryption) the generated file has an erroneous line at the end, outside the pfSense closing tag. you erroneous line is the following:
<script type="text/javascript">CsrfMagic.end();</script>
This CSRF line is added by the output buffer function csrf_ob_handler in the file /usr/local/www/csrf/csrf-magic.php. The generation of the backup file occurs in file /usr/local/www/diag_backup.php on line 228. Due to the CSRF output buffer flag js-rewrite being enabled when the backup is output, the erroneous line is added.
$GLOBALS['csrf']['rewrite-js']
This global value needs to be set to false prior to outputting the backup.
BUG FIX to be submitted shortly.
Files