ORM Leak

An ORM leak vulnerability occurs when sensitive information, such as database structure or user data, is unintentionally exposed due to improper handling of ORM queries. This can happen if the application returns raw error messages, debug information, or allows attackers to manipulate queries in ways that reveal underlying data.

Summary

Django (Python)

The following code is a basic example of an ORM querying the database.

The problem lies in how the Django ORM uses keyword parameter syntax to build QuerySets. By utilizing the unpack operator (**), users can dynamically control the keyword arguments passed to the filter method, allowing them to filter results according to their needs.

Query filter

The attacker can control the column to filter results by. The ORM provides operators for matching parts of a value. These operators can utilize the SQL LIKE condition in generated queries, perform regex matching based on user-controlled patterns, or apply comparison operators such as < and >.

Interesting filter to use:

  • __startswith

  • __contains

  • __regex

Relational Filtering

Let's use this great example from PLORMBING YOUR DJANGO ORM, by Alex Brownarrow-up-right UML-example-app-simplified-highlight

We can see 2 type of relationships:

  • One-to-One relationships

  • Many-to-Many Relationships

One-to-One

Filtering through user that created an article, and having a password containing the character p.

Many-to-Many

Almost the same thing but you need to filter more.

  • Get the user IDS: created_by__departments__employees__user__id

  • For each ID, get the username: created_by__departments__employees__user__username

  • Finally, leak their password hash: created_by__departments__employees__user__password

Use multiple filters in the same request:

Error-based leaking - ReDOS

If Django use MySQL, you can also abuse a ReDOS to force an error when the filter does not properly match the condition.

Prisma (Node.JS)

Tools:

Example:

Example of an ORM leak in Node.JS with Prisma.

Use the include to return all the fields of user records that have created an article

Select only one field

Relational Filtering

One-to-One

Many-to-Many

Ransack (Ruby)

Only in Ransack < 4.0.0.

ransack_bruteforce_overview
  • Extracting the reset_password_token field of a user

  • Target a specific user and extract his recoveries_key

CVE

References

Last updated