CyberRota Analysis
AI-GeneratedChirpStack's SQLite backend is vulnerable to SQL injection due to improper handling of user-supplied tag keys in device tag filtering functions, allowing authenticated users with device-list access to manipulate SQL queries. This vulnerability could lead to unauthorized data access or manipulation within the database. Organizations using the SQLite backend should prioritize remediation to mitigate potential exploitation risks.
Public Exploit Signal
A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.
Note: these links are listed for security research and verification purposes only.
Original NVD Description
ChirpStack's SQLite-backend device tag filtering (chirpstack/src/storage/device.rs, in both get_count and list) interpolates the user-supplied tag KEY directly into a raw SQL fragment via Rust's format! macro , while only the tag VALUE is safely parameter-bound via Diesel's .bind.