django-planet
May 15, 2020

Preventing SQL Injection in Django

in blog Jacob Kaplan-Moss
original entry Preventing SQL Injection in Django

SQL Injection (SQLi) is one of the most dangerous classes of web vulnerabilities. Thankfully, it’s becoming increasingly rare — thanks mostly to increasing use of database abstraction layers like Django’s ORM — but where it occurs it can be devastating. This article will help you understand and prevent SQLi vulnerabilities in your Django apps.