diff options
author | Tatu Lund <tatu@vaadin.com> | 2021-02-03 16:52:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-03 16:52:08 +0200 |
commit | d0d2cfbda0f96b68293ce723bf776332d4ecd4de (patch) | |
tree | d7d60966ebb9a8068b0742c2c8fa0fbfdc7d83d4 /uitest | |
parent | 46ecb27caf6068c85af39279fd47889f3bdd1a85 (diff) | |
download | vaadin-framework-d0d2cfbda0f96b68293ce723bf776332d4ecd4de.tar.gz vaadin-framework-d0d2cfbda0f96b68293ce723bf776332d4ecd4de.zip |
fix: use time-constant comparison for security tokens (#12192)
This is the same as #12190, but also applied for the upload security key
and the push id since both of those are also used to protect against
cross-site attacks. In addition, documentation for the push id is
clarified to point out its role.
Backporting of #12189
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/src/test/java/com/vaadin/tests/VerifyBrowserVersionTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uitest/src/test/java/com/vaadin/tests/VerifyBrowserVersionTest.java b/uitest/src/test/java/com/vaadin/tests/VerifyBrowserVersionTest.java index b044571ca3..ec3fb525a3 100644 --- a/uitest/src/test/java/com/vaadin/tests/VerifyBrowserVersionTest.java +++ b/uitest/src/test/java/com/vaadin/tests/VerifyBrowserVersionTest.java @@ -25,7 +25,7 @@ public class VerifyBrowserVersionTest extends MultiBrowserTest { // Chrome version does not necessarily match the desired version // because of auto updates... browserIdentifier = getExpectedUserAgentString( - getDesiredCapabilities()) + "87"; + getDesiredCapabilities()) + "88"; } else { browserIdentifier = getExpectedUserAgentString(desiredCapabilities) + desiredCapabilities.getVersion(); |