summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorTim Schilling <schillingt@better-simple.com>2023-11-22 22:27:30 -0600
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-11-23 05:28:15 +0100
commit06bdf62b56a7cbd37a74b590587a8ae51b206321 (patch)
tree5b5a96572a5e88182ecb0f77eee6ef6ddd09df43 /docs/ref
parent48eebdc63caca18fef90ce49dd5473fd338ebe94 (diff)
[5.0.x] Fixed #34990 -- Changed link to OWASP in CSRF docs.
The OWASP site is the standard resource for web application security information. Backport of aceee39d44994df20d13104e55ae61845d7a1e95 from main
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/csrf.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/csrf.txt b/docs/ref/csrf.txt
index ae94ccdee4..12a14091d0 100644
--- a/docs/ref/csrf.txt
+++ b/docs/ref/csrf.txt
@@ -18,7 +18,7 @@ The first defense against CSRF attacks is to ensure that GET requests (and other
Requests via 'unsafe' methods, such as POST, PUT, and DELETE, can then be
protected by the steps outlined in :ref:`using-csrf`.
-.. _Cross Site Request Forgeries: https://www.squarefree.com/securitytips/web-developers.html#CSRF
+.. _Cross Site Request Forgeries: https://owasp.org/www-community/attacks/csrf#overview
.. _how-csrf-works: