Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Security Web programming API in Python [closed]

Is 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 .

like image 625
Jumbo Avatar asked Nov 21 '10 13:11

Jumbo


1 Answers

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
like image 192
Wouter Dorgelo Avatar answered Sep 24 '22 05:09

Wouter Dorgelo