Lucene search

K
githubGitHub Advisory DatabaseGHSA-7G7C-QHF3-X59P
HistoryMay 20, 2024 - 5:36 p.m.

propel/propel1 SQL injection possible with limit() on MySQL

2024-05-2017:36:28
CWE-89
GitHub Advisory Database
github.com
1
sql injection
propel
propel1
mysql
orm
limit method

8.5 High

AI Score

Confidence

Low

The limit() query method is susceptible to catastrophic SQL injection with MySQL.

For example, given a model User for a table users:

UserQuery::create()->limit('1;DROP TABLE users')->find();

This will drop the users table!

The cause appears to be a lack of integer casting of the limit input in either Criteria::setLimit() or in DBMySQL::applyLimit(). The code comments there seem to imply that casting was avoided due to overflow issues with 32-bit integers.

This is surprising behavior since one of the primary purposes of an ORM is to prevent basic SQL injection.

This affects all versions of Propel: 1.x, 2.x, and 3.

Affected configurations

Vulners
Node
propelpropel1Range1.7.1
CPENameOperatorVersion
propel/propel1le1.7.1

8.5 High

AI Score

Confidence

Low