Does django automatically handle auto-escaping & context aware?

Viewed 242

As now I am developing website using django web framework of python.

I have very concerned with XSS & security of website.

I have read some references related XSS & prevent them using escaping , encoding etc..

so my question is does Django autoescape every input data & handle XSS attacks automatically or explicitly do we need to implement code to prevent XSS attack ?

How can we prevent all kinds of XSS attacks in Django ?

2 Answers
Related