Fix XSS vulnerabilities in JavaScript files

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-02-09 13:59:25 +00:00
parent 7a3608b32e
commit 0126dc1cf4
3 changed files with 32 additions and 10 deletions
+11
View File
@@ -246,4 +246,15 @@ h1, h2, h3, h4, h5, h6 {
.chart-container {
height: 16rem; /* h-64 */
@apply w-full;
}
/* Text status colors for compliance status */
.text-success {
color: #16a34a; /* Green color for compliant status */
font-weight: 500;
}
.text-error {
color: #dc2626; /* Red color for non-compliant status */
font-weight: 500;
}
+17 -8
View File
@@ -231,14 +231,23 @@ function renderRecentReports(reports, domains) {
// Get domain name
const domainName = domainMap.get(report.domain_id) || 'Unknown';
row.innerHTML = `
<td>${domainName}</td>
<td>${formattedDate}</td>
<td>${report.is_compliant ?
'<span style="color: green;">Compliant</span>' :
'<span style="color: red;">Non-compliant</span>'
}</td>
`;
// Create domain cell with safe text content
const domainCell = document.createElement('td');
domainCell.textContent = domainName;
row.appendChild(domainCell);
// Create date cell with safe text content
const dateCell = document.createElement('td');
dateCell.textContent = formattedDate;
row.appendChild(dateCell);
// Create status cell with safe text content and CSS classes
const statusCell = document.createElement('td');
const statusSpan = document.createElement('span');
statusSpan.textContent = report.is_compliant ? 'Compliant' : 'Non-compliant';
statusSpan.className = report.is_compliant ? 'text-success' : 'text-error';
statusCell.appendChild(statusSpan);
row.appendChild(statusCell);
tableBody.appendChild(row);
});
+4 -2
View File
@@ -184,9 +184,11 @@ function setupWizardEventListeners() {
const cloudflareToken = document.getElementById('cloudflare-token').value;
const cloudflareZone = document.getElementById('cloudflare-zone').value;
// Store only the flag that Cloudflare is enabled
// Credentials should be sent directly to backend, never stored client-side
localStorage.setItem('setup_cloudflare_enabled', 'true');
localStorage.setItem('setup_cloudflare_token', cloudflareToken);
localStorage.setItem('setup_cloudflare_zone', cloudflareZone);
// TODO: Send cloudflareToken and cloudflareZone to backend API instead of localStorage
// For now, these credentials are not persisted client-side for security
}
// Move to step 3