Security Web programming API in Python [closed]
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
开发者_StackOverflow社区 Improve this questionIs there a secure API available which will help protect against attacks like XSS, CSRF etc by providing encoders, token support etc.? for python which can be used with google app engine?
I do not want to reinvent the wheel by coding it all again if its already out there .
Python Security is a good resource:
- Access Control/Authorization
- Authentication
- Configuration
- Cross-Site Request Forgery (CSRF)
- Cross-Site Scripting (XSS)
- Cryptography
- Escaping
- Hashing
- Injection
- Object Reference
- Redirects
- Session Management
- Taint Mode
- Transport Layer Security
- Validation
精彩评论