This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org
Difference between revisions of "CSRF Protector php library"
From OWASP
A V Minhaz (talk | contribs) (Created page with "<h2>CSRF Protector php library - Standalone php library for mitigating CSRF vulneabilty</h2>") |
A V Minhaz (talk | contribs) |
||
Line 1: | Line 1: | ||
− | <h2>CSRF Protector php library - Standalone php library for mitigating CSRF | + | <h2>CSRF Protector php library - Standalone php library for mitigating CSRF vulnerability</h2> |
+ | |||
+ | ==What is CSRF Protector php library== | ||
+ | Its a standalone php library for mitigating Cross Site Request Forgery (CSRF) vulnerabilities in web applications, which can be used with any existing web application or while developing a new one. | ||
+ | |||
+ | ==Features Offered== | ||
+ | CSRF Protection provide protection for: | ||
+ | * Normal HTML forms (POST/GET) | ||
+ | * Normal Get requests (Not enabled by default) | ||
+ | * Ajax Requests (XHR) | ||
+ | * Dynamically generated forms | ||
+ | |||
+ | ==Damages Mitigated== | ||
+ | * Cross Site Request Forgery | ||
+ | |||
+ | ==How to contribute== | ||
+ | To contribute to the code fork and send a pull to:<br> | ||
+ | [https://github.com/mebjas/CSRF-Protector-PHP GitHub Repo] | ||
+ | |||
+ | For discussions, join our mailing list: [https://lists.owasp.org/mailman/listinfo/owasp-csrfprotector - Mailing List] | ||
+ | |||
+ | ==Current Status== | ||
+ | Under Development |
Revision as of 18:23, 24 June 2014
[hide]
CSRF Protector php library - Standalone php library for mitigating CSRF vulnerability
What is CSRF Protector php library
Its a standalone php library for mitigating Cross Site Request Forgery (CSRF) vulnerabilities in web applications, which can be used with any existing web application or while developing a new one.
Features Offered
CSRF Protection provide protection for:
- Normal HTML forms (POST/GET)
- Normal Get requests (Not enabled by default)
- Ajax Requests (XHR)
- Dynamically generated forms
Damages Mitigated
- Cross Site Request Forgery
How to contribute
To contribute to the code fork and send a pull to:
GitHub Repo
For discussions, join our mailing list: - Mailing List
Current Status
Under Development