To download from Google Drive, you must enable third party cookies?
support.google.com
To download from Google Drive, you must enable third party cookies?
1–10 of 166 posts
Re: To download from Google Drive, you must enable third party cookies?
#2Re: To download from Google Drive, you must enable third party cookies?
#3Re: To download from Google Drive, you must enable third party cookies?
#4Re: To download from Google Drive, you must enable third party cookies?
#5I think it is because they use `googleusercontent.com` for content uploaded by users - that makes sense for security reasons, never ever let users upload content to your main domain.
Re: To download from Google Drive, you must enable third party cookies?
#6I think it is because they use `googleusercontent.com` for content uploaded by users - that makes sense for security reasons, never ever let users upload content to your main domain.
Can you elaborate on this? What's special about the domain here for security?
When doing so, an attacker can steal cookies, and/or invoke APIs for the user.
Now, there are of course ways to avoid that, but in the end, if every other system fails, being on a domain without any API and without any sensitive content allows reducing the blast of the impact.
Real-world example: https://gitlab.com/gitlab-org/gitlab/-/issues/200094
GitLab has APIs under their main domain. Due to a misconfiguration, it was possible to render in the browser user-generated `.svg` files. Thus, a malicious crafted SVG file could bring to a XSS, and accessing a lot of personal user data on the main domain.
There are technical reasons for the shared domain, but if that particular API call was on another domain, the impact of the vulnerability would have been way smaller.
Re: To download from Google Drive, you must enable third party cookies?
#7Seems like in this particular case, notwithstanding Google's long history of abuse and opportunism, this one is a genuine case when you enable a cookie for technical and not (necessarily) user tracking reasons.
Some companies are requesting permissions for more or less valid reasons and later using these permissions for their own goals as well.
Re: To download from Google Drive, you must enable third party cookies?
#8Earlier quoted context omitted.
Can you elaborate on this? What's special about the domain here for security?
It's a defense in depth mechanism: when you allow user-generated content uploaded on your main domain, somebody will find a way to break your security system and make that content executable on the user's browser. When doing so, an attacker can steal cookies, and/or invoke APIs for the user. Now, there are of course ways to avoid that, but in the end, if every other system fails, being on a domain without any API and…
Re: To download from Google Drive, you must enable third party cookies?
#9Maybe we could categorize cookie's party by domain's whois record?
Whois data are heavily redacted, and not really checked upon, so you have two problems:
* you have access only to redacted data;
* and also if you had access to original data, they are basically free form text;
Re: To download from Google Drive, you must enable third party cookies?
#10I think it is because they use `googleusercontent.com` for content uploaded by users - that makes sense for security reasons, never ever let users upload content to your main domain.
Can you elaborate on this? What's special about the domain here for security?