CVE-2023-53915
BaseFortify
Publication date: 2025-12-17
Last updated on: 2025-12-27
Assigner: VulnCheck
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| zenphoto | zenphoto | 1.6 |
Helpful Resources
Exploitability
| 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 Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a stored cross-site scripting (XSS) issue in Zenphoto 1.6. Authenticated attackers can inject malicious scripts by adding HTML content, such as iframe or script tags, into album descriptions. When users view the affected album page, the malicious scripts execute in their browsers.
How can this vulnerability impact me? :
The vulnerability can lead to execution of malicious scripts in users' browsers when they view album pages with injected content. This can result in theft of user credentials, session hijacking, or other malicious actions performed on behalf of the user, potentially compromising user data and security.
What immediate steps should I take to mitigate this vulnerability?
To mitigate this vulnerability, restrict or sanitize user input in album descriptions to prevent injection of malicious HTML or script tags. Ensure that only trusted users can create or modify album descriptions. Additionally, apply any available patches or updates from Zenphoto that address this issue and educate users to avoid clicking on suspicious album pages.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by attempting to create or inspect album descriptions in Zenphoto 1.6 for the presence of malicious HTML or script tags, such as <iframe> or <script> tags. A practical detection method is to create a new album and insert a test payload like `<iframe src="https://example.com"></iframe>` into the album description field, then view the album page to see if the iframe is rendered, indicating the vulnerability. Similarly, checking user data fields (e.g., postal code) for script injections can help detect the vulnerability. There are no specific network commands provided, but manual testing via the web interface or automated scanning for stored XSS in album descriptions is recommended. Example steps from Resource 1 include: 1) Create a new album in Zenphoto 1.6. 2) Insert malicious HTML code such as `<iframe src="https://14.rs"></iframe>` into the album description. 3) Save and view the album URL to observe if the code executes. No direct command-line commands are provided in the resources. [1]