Which of these unique features in Django gives a special security advantage of “non-vulnerability” to XSS attacks?
Options
- It doesn’t accept raw SQL from users.
- It has automatic HTML escaping
- It has CSRF protection as there is no replay of forms by other code
- Both Choice 1,2
- Both Choice 1,3