CVE-2023-53925
Unknown Unknown - Not Provided

BaseFortify

Vulnerability report for CVE-2023-53925, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2025-12-17

Last updated on: 2025-12-18

Assigner: VulnCheck

Description

UliCMS 2023.1 contains a stored cross-site scripting vulnerability that allows attackers to upload malicious SVG files with embedded JavaScript. Attackers can upload crafted SVG files through the file management interface that execute arbitrary scripts when viewed by other users.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2025-12-17
Last Modified
2025-12-18
Generated
2026-07-06
AI Q&A
2025-12-18
EPSS Evaluated
2026-07-05
NVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
ulicms ulicms 2023.1

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-79 The product does not neutralize or incorrectly neutralizes user-controllable input before it is placed in output that is used as a web page that is served to other users.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability in UliCMS 2023.1 is a stored cross-site scripting (XSS) issue that allows attackers to upload malicious SVG files containing embedded JavaScript. When other users view these crafted SVG files through the file management interface, the embedded scripts execute, potentially compromising their security.

Impact Analysis

The vulnerability can lead to arbitrary script execution in the context of other users viewing the malicious SVG files. This can result in unauthorized actions, data theft, session hijacking, or other malicious activities affecting users of the system.

Detection Guidance

You can detect this vulnerability by checking for uploaded SVG files containing embedded JavaScript in the file management interface of UliCMS 2023.1. Specifically, look for SVG files with <script> tags inside them. One approach is to list SVG files in the upload directory and inspect their contents for script tags. For example, on the server, you can run commands like: 1. Find SVG files: `find /path/to/ulicms/dist/content/ -name '*.svg'` 2. Search for script tags inside SVG files: `grep -l '<script' /path/to/ulicms/dist/content/*.svg` This will list SVG files that contain embedded scripts, indicating potential exploitation. Additionally, monitoring HTTP POST requests to `/dist/admin/fm/upload.php` with content type `image/svg+xml` can help detect malicious uploads. [2]

Mitigation Strategies

Immediate mitigation steps include: 1. Restrict or disable SVG file uploads via the file management interface to prevent attackers from uploading malicious SVG files. 2. Implement proper input validation and sanitization to disallow embedded JavaScript within SVG files before accepting uploads. 3. Remove any existing SVG files that contain embedded scripts from the server. 4. Apply access controls to limit privileges of users who can upload files. 5. Monitor and audit file uploads for suspicious activity. 6. If possible, update or patch UliCMS to a version where this vulnerability is fixed. [1, 2]

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2023-53925. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart