CVE-2021-47729
BaseFortify
Publication date: 2025-12-09
Last updated on: 2026-02-23
Assigner: VulnCheck
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| selea | izero_box_full_firmware | * |
| selea | izero_column_entry/8_firmware | * |
| selea | izero_column_full/8_firmware | * |
| selea | targa_504_firmware | * |
| selea | targa_512_firmware | * |
| selea | targa_704_ilb_firmware | * |
| selea | targa_704_tkm_firmware | * |
| selea | targa_710_inox_firmware | * |
| selea | targa_750_firmware | * |
| selea | targa_805_firmware | * |
| selea | targa_semplice_firmware | * |
| selea | carplateserver | 3.005(191112) |
| selea | carplateserver | 3.005(191206) |
| selea | carplateserver | 3.100(200225) |
| selea | carplateserver | 4.013(201105) |
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
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by sending a crafted POST request to the endpoint /cgi-bin/get_file.php with a payload in the 'files_list' parameter that includes malicious HTML or script code. For example, you can use curl to send a test POST request with a payload such as `<marquee><h3>t00t</h3></marquee>` to check if the input is improperly sanitized and reflected back, indicating the presence of the stored XSS vulnerability. Example command: curl -X POST -d 'files_list=<marquee><h3>t00t</h3></marquee>' http://<camera-ip>/cgi-bin/get_file.php -v [5]
Can you explain this vulnerability to me?
This vulnerability is a stored cross-site scripting (XSS) issue in the Selea Targa IP OCR-ANPR Camera. It occurs in the 'files_list' parameter, where attackers can inject malicious HTML and script code. By sending a crafted POST request to /cgi-bin/get_file.php, attackers can execute arbitrary scripts in the victim's browser session.
How can this vulnerability impact me? :
This vulnerability can allow attackers to execute arbitrary scripts in the victim's browser session, potentially leading to theft of sensitive information, session hijacking, or other malicious actions performed on behalf of the victim.
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include updating the camera firmware and CPS software to the latest versions where the vulnerability has been fixed, as acknowledged by the vendor. If updates are not immediately available, restrict access to the affected endpoint /cgi-bin/get_file.php to trusted users only, and monitor for suspicious POST requests targeting the 'files_list' parameter. Additionally, consider implementing network-level protections such as web application firewalls (WAF) to block malicious payloads attempting to exploit this stored XSS vulnerability. [1, 3]