# CVE-2025-67261 - Content-based blind SQL injection on Abacre Retail Point of Sale 14.0.0.396 Abacre Retail Point of Sale 14.0.0.396 is vulnerable to content-based blind SQL injection. The vulnerability exists in the Search function of the Orders page. The "Search" function under the "Orders" page is vulnerable to Content-based Blind SQL Injection. Pasted image 20251028224616 A simple payload will give us the initial confirmation, then, using the query below we can confirm that the "Client" table exist in the Firebird database file. ```SQL ') OR EXISTS(SELECT 1 FROM Client)-- ``` Pasted image 20251028225040 When executing, we do receive content. To confirm this even further, we can go to the "Clients" tab and trigger a SQL error, which will give us the name of the table. Pasted image 20251028225157 Within the same tab, we confirm that we have 4 clients registered in the database. Pasted image 20251028225426 However, we can also search for it in our vulnerable parameter. If we search for only 3 entries, nothing is returned back. ```SQL ') OR (SELECT COUNT(*) FROM Client)=3-- ``` Pasted image 20251028225548 But when searching for 4, we now get a true result. Pasted image 20251028225623