I am writing a django app and I know it handles string escaping and all to prevent sql injections in the queryset ( https://docs.djangoproject.com/en/dev/topics/security/ ).
Out of curiosity, I was wondering if there are still ways to perform sql injections on django apps? What would be an example?
Take a look at the Django documentation; it may be useful.