|
|
|
|
|
by levigross
5085 days ago
|
|
This is true, however with creating applications with Django you are protected against most basic attacks. The ORM uses parameterized queries, all unsafe output is automatically escaped, Protection against CRLF injection within the framework and protection against HTTP response splitting. The framework isn't fool proof (no one can protect developers from themselves). But I feel that Django does what it needs to do when it comes to protecting its users. |
|
The "last mile" is just making sure your code is using all those tools correctly.