CVE-2023-32193
📋 TL;DR
An unauthenticated cross-site scripting (XSS) vulnerability exists in Norman's public API endpoint, allowing attackers to inject and execute malicious JavaScript code remotely. This affects systems running vulnerable versions of Norman software with exposed API endpoints. Attackers can exploit this without authentication to compromise user sessions or execute commands.
💻 Affected Systems
- Norman
⚠️ Manual Verification Required
This CVE does not have specific version information in our database, so automatic vulnerability detection cannot determine if your system is affected.
Why? The CVE database entry doesn't specify which versions are vulnerable (no version ranges provided by the vendor/NVD).
🔒 Custom verification scripts are available for registered users. Sign up free to download automated test scripts.
- Review the CVE details at NVD
- Check vendor security advisories for your specific version
- Test if the vulnerability is exploitable in your environment
- Consider updating to the latest version as a precaution
⚠️ Risk & Real-World Impact
Worst Case
Complete system compromise via remote code execution, data theft, or full administrative control if JavaScript execution leads to privilege escalation.
Likely Case
Session hijacking, credential theft, defacement, or limited data exfiltration through client-side attacks.
If Mitigated
Limited impact with proper input validation, output encoding, and Content Security Policy (CSP) headers preventing successful exploitation.
🎯 Exploit Status
XSS vulnerabilities typically have low exploitation complexity; unauthenticated access increases risk.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: Check vendor advisory for specific patched version
Vendor Advisory: https://github.com/rancher/norman/security/advisories/GHSA-r8f4-hv23-6qp6
Restart Required: Yes
Instructions:
1. Review the vendor advisory. 2. Update Norman to the patched version. 3. Restart the service. 4. Verify the fix.
🔧 Temporary Workarounds
Implement Content Security Policy
allAdd CSP headers to restrict script execution sources
Add 'Content-Security-Policy: default-src 'self'' to HTTP headers
Input Validation and Output Encoding
allSanitize user inputs and encode outputs in the API endpoint
Implement proper input validation and output encoding in code
🧯 If You Can't Patch
- Restrict network access to Norman API endpoint using firewall rules
- Implement web application firewall (WAF) with XSS protection rules
🔍 How to Verify
Check if Vulnerable:
Check if Norman version matches vulnerable range from vendor advisory
Check Version:
Check Norman documentation for version command; typically via service status or configuration file
Verify Fix Applied:
Verify Norman is updated to patched version and test API endpoint for XSS
📡 Detection & Monitoring
Log Indicators:
- Unusual JavaScript payloads in API requests
- Multiple failed XSS attempts
Network Indicators:
- Suspicious HTTP requests with script tags to Norman API
SIEM Query:
Search for HTTP requests containing '<script>' or 'javascript:' patterns to Norman endpoints