samesite Questions
1
According to learn.microsoft.com ASP.NET core implements the Synchronizer Token Pattern to mitigate CSRF.
The Anti request forgery mechanism has many drawbacks impacting users:
ex 1: login page ope...
Ligni asked 8/10, 2019 at 16:18
4
I'm currently developing my first webapp, frontend with React and backend with FastAPI.
I'm trying to test it out jointly with Chrome-- see if the frontend makes the correct API calls to backend, a...
Chante asked 21/7, 2020 at 8:32
3
Solved
I added SameSite=None; Secure; to set-cookie. but the cookie was not set and I can’t log in to my site.
response.writeHead(200, {
'Content-Type': 'application/json',
'Set-Cookie': 'token=' + toke...
Kamala asked 22/8, 2020 at 9:52
5
I have a website which requires authentication from another site to login. Both are different domains.
I have enabled the samesite by default cookies flag from chrome://flags. Just to check how ch...
Lash asked 5/2, 2020 at 4:30
7
I'm a front-end developer working on an application where the login/ response put a Session-Cookie on the client. The later request will be authorized since the user "logged in".
Starting...
Sextuple asked 3/6, 2021 at 12:44
8
Our application uses cookies to remember user login. Every auth API call we make, the browser attaches server-set HTTPonly cookie with the API request and gets authenticated. This behaviour seems t...
Otranto asked 23/10, 2019 at 14:57
2
I would like to secure my cookies using SameSite=strict. But is there a way to allow it to be accessed by few domains alone?
Beetner asked 24/11, 2020 at 11:38
5
Solved
After upgrade to Chrome Version 80.0.3987.132 cookies are not sent to the iframe request. On the Network tab (Chrome Dev tools), I do not see cookies for my requests.
After turning on the option "...
Catholicon asked 18/3, 2020 at 16:12
4
Solved
I have a Spring Boot Web Application (Spring boot version 2.0.3.RELEASE) and running in an Apache Tomcat 8.5.5 server.
With the recent security policy which has imposed by Google Chrome (Rolled out...
Tense asked 17/9, 2020 at 13:26
3
Tomcat's context.xml defines CookieProcessor
(default LegacyCookieProcessor).
Apache Tomcat 9 Configuration Reference
I'm trying to add attribute(s) shown on cookie processor, however that doesn't ...
2
Can anyone please help me on this issue as I'm getting this same error message on my site when I run it inside iframe of a separate domain in incognito mode only? You can access site from here.
No...
Hellenistic asked 31/7, 2020 at 16:3
1
Solved
Cross-site requests do not include same-site cookies, but what happens if such a request leads to a redirection within the target site?
I tested this with the following Node.js express app running ...
Interradial asked 20/1, 2023 at 12:48
1
When reading about SameSite attribute I came across the term top-level navigation.
As I understood it, it's when user has website1.com open in browser and then clicks the link that navigates browse...
4
I'm currently setting a cookie like this (in middleware):
cookie()->queue("loginToken", $loginToken, 60*24*365*10);
How do I specify SameSite = None?
I'm using Laravel 8.
3
I'm still becoming a developer. First of all I can't show any code related to this problem because I'm not allowed to do so...
With the new cookie policy from Chrome (and others) the SameSite attr...
2
2
Solved
I got the following code in happening on my site, and I tried my best cant grasp this, so I have a couple questions, please read.
category-search-Forum:1 A cookie associated with a cross-site resou...
Weese asked 23/3, 2020 at 23:25
8
Is it possible to set Same-Site Cookie flag in Spring Boot?
My problem in Chrome:
A cookie associated with a cross-site resource at http://google.com/
was set without the SameSite attribute. A fut...
Feoffee asked 15/10, 2019 at 1:34
3
Solved
As per the recent update from Google Chrome, it only allows cross-platform cookies which having attribute
sameSite=None
Link: https://learn.microsoft.com/en-us/aspnet/samesite/system-web-samesite...
Phenothiazine asked 8/9, 2020 at 12:21
4
Solved
My client's website is getting these SameSite cookie warnings in Chrome. I've searched all over and I can't get the warnings to go away. The cookies are due to Google Ad Conversion Tracking on a Wo...
10
Is it possible to set Same-site Cookie flag in Spring Security?
And if not, is it on a roadmap to add support, please? There is already support in some browsers (i.e. Chrome).
Lenlena asked 24/3, 2017 at 11:28
4
I am having issues with chrome and SameSite. I am serving a webpage in a shopify iframe and when setting the session using flask-login, chrome tells me this:
A cookie associated with a cross-site ...
Transaction asked 20/7, 2020 at 9:50
1
My web application (myApp further) is embedded in iframe of a single third-party webpage. MyApp sets cookie Set-Cookie: JSESSIONID=38FE580EE7D8CACA581532DD37A19182; Path=/myapi; Secure; HttpOnly fo...
8
Solved
Recently samesite=lax add automatically to my session cookie!
this attribute just add to sessionID:
"Set-Cookie ASP.NET_SessionId=zana3mklplqwewhwvika2125; path=/; HttpOnly; **SameSite=Lax**"
My w...
2
I am using cookie-session and passportjs to authenticate users in my express app. When I initialize my cookieSession like this:
app.use(cookieSession({
maxAge: 24 * 60 * 60 * 1000,
keys: ['key1']...
Jeffersonjeffery asked 21/6, 2021 at 19:16
1 Next >
© 2022 - 2024 — McMap. All rights reserved.