-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37723 from sberyozkin/csrf_double_sign_bug
Do not use CSRF cookie as the next token value
- Loading branch information
Showing
6 changed files
with
101 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
integration-tests/csrf-reactive/src/main/resources/application.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
integration-tests/csrf-reactive/src/main/resources/templates/csrfTokenFirstForm.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>CSRF Token First Form Test</title> | ||
</head> | ||
<body> | ||
<h1>CSRF Test</h1> | ||
|
||
<form action="/service/csrfTokenFirstForm" method="post"> | ||
<input type="hidden" name="{inject:csrf.parameterName}" value="{inject:csrf.token}" /> | ||
|
||
<p>Your Name: <input type="text" name="name" /></p> | ||
<p><input type="submit" name="submit"/></p> | ||
</form> | ||
</body> | ||
</html> |
17 changes: 17 additions & 0 deletions
17
integration-tests/csrf-reactive/src/main/resources/templates/csrfTokenSecondForm.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>CSRF Token Second Form Test</title> | ||
</head> | ||
<body> | ||
<h1>CSRF Test</h1> | ||
|
||
<form action="/service/csrfTokenSecondForm" method="post"> | ||
<input type="hidden" name="{inject:csrf.parameterName}" value="{inject:csrf.token}" /> | ||
|
||
<p>Your Name: <input type="text" name="name" /></p> | ||
<p><input type="submit" name="submit"/></p> | ||
</form> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters