top of page
Search
  • Writer's picturezohar shachar

Multiple Authorization bypass issues in Google's Richmedia Studio

Ah, Google research grants, how effective you are! It seems as if exactly in these times when my energy levels are low, and I just-can’t-get-motivated to sit down and do something, exactly then a new ‘research grant’ lands in my mailbox and kicks me into gear.

And so was the case a few months ago, where after a long break from research a wonderful email arrived - a new ‘vulnerability research grant’ for October 2020. Exciting indeed! And not only that, the research target included a Google app I’ve never encountered before, “Richmedia Studio” - a marketing campaign management platform. New (for me) target & a research grant? And it’s not even my bday! Let’s see where it goes.


Challenge one: Accessing the system

This is not much of a security issue, but I still found it interesting and it sure opened my mind regarding Google’s attack surface - you cannot just ‘stumble upon’ the Richmedia studio. If your account is not configured to use it, you will not see it, not even an ‘unauthorized’ page, you will simply be navigated away (give it a go and try to access https://www.google.com/doubleclick/studio). This is probably a key factor in why I’ve never stumbled upon this app before, even though I spent (and still spending) significant efforts searching for Google’s systems.

If you want to access the system, you should first fill a form here, afterwords (if Google grants you access), you will receive an email invite which will allow you to access the system. Welcome to Richmedia!

Poking around

So what are you, Richmedia studio? From what I could understand, the platform is used to manage online advertising campaigns, and relations with advertisers. A role management system allows administrators to create new campaigns and upload media to these campaigns (media such as HTML pages, videos, images, etc.). The admin can then give different advertisers access to the campaign, as well as run it through QA (all managed via permissions), leave comments, etc. As I don’t really understand the flow of marketing campaigns I’m sure I’m not doing this platform justice in this short description, but for our purpose it will do fine.


First vulnerability: accessing other users media [500$ bounty]

I started by looking at the media uploads. I was expecting to see the same mechanism as in most google apps, where uploaded files are stored under the user’s google Drive, and exposed via a temporary ‘googleusercontent’ link with a long, random ID. But that was not the case. In Richmedia, files are uploaded to a different domain - ‘s0.2mdn.net'. An example link can be seen here:


Hosting the files on a separate (non ‘google’) domain raises the question of authorization, as the browser holds no cookies for this domain (of course authorization can be solved via other means), and Indeed trying to access an example uploaded file from an anonymised browser showed that no auth is required. However, that on its own is not really an issue. The link is complex and cannot be realistically brute-forced or guessed. However, looking at this link, the ‘preview’ key jumped to my eye. Is this the actual path where the file is stored, or just a link to a ‘preview’ generated from the actual source?

I Uploaded another file and followed the network requests more closely, and found my suspicion was correct - in a separate HTTP response, a direct link to the file (and not to its ‘preview’) is returned to the browser. This link looks much simpler:


These direct links are also accessible without auth, and can be generated by an attacker (the first 8 digits are just the merchant ID that can be enumerated from the studio app, and the later consists of the upload date and a short random number).


So here we have a clear IDOR - A guessable link to another user file, without auth.

I’ve reported this to Google, which accepted the bug and issued a 500$ bounty.


Strike 2: Accessing other users campings [5000$ bounty]

Honestly, this one was so simple I really didn’t think it would work. If you recall, I mentioned above that studio offers a role-management system. In particular, you can create an account without access to the QA dashboard. And indeed, if you create such a user, the dashboard will look different.


Admin dashboard:

Limited account dashboard:

I know what you think here. Google is too good for ‘security-by-obscurity’ sort of stuff, right? I mean there is no-way that if I try to access the QA page with the limited account it will just work.. Right?

Well, I had to try. The results were… surprising:

Not only that I could access the QA page for the campaigns my user was associated with, I could see all campaigns, of all accounts!

By some weird ‘fail to true’ bug, if you have permission to see nothing, you could see everything! I had to verify it a few times to believe it myself ;) I’ve reported the issue to Google which issued a 5000$ bounty.


Strike 3: GWT

Google Richmedia studio is using GWT for it's API's. One of the first issues I ever found in a Google system was a GWT authorization issue, and so I have a warm place in my heart for this technology.


I decided to look again in the file upload process, this time paying closer attention to the GWT requests. Specifically, I looked at the HTTP request that retrieves the file download URL (the same long complex link we saw before), and noticed some weird strings sent as part of the HTTP POST body:

If you've never seen GWT before then such body might be intimidating, but if you study the protocol it's pretty easy to decipher. These two strings at the end, 'DlQXE' and 'DlQWU', caught my attention - they seemed to be the strings indicating what file I'm actually truing to access. Poking around in the system, it became clear that these strings are actually ID's representing the specific campaign in the system.

I guess you see where this is going now - I logged in as a different user and obtained another pair of IDs. I then tried using this IDs with the first user cookies - and was able to get the URL link for the second user's files. As these strings are very short, I figured it is rather easy to guess them. I ran a quick script to guess similar-looking ID's, and quickly found more IDs that worked - that pointed to more files belonging to other users.

Reporting this bug yielded another 500$ bounty.


Strikes 4 & 5

Encouraged by these initial findings, I continued my research around the system’s authorization mechanism, feeling that it’s not ‘as tight’ as it perhaps should be. Sure enough, within few days the issue were piling up:

Google’s team seemed to agree with me that perhaps the authorization in Richmedia studio should perhaps be, ah, adjusted..


Final thoughts:

Days after the research, what occupied my brain was not the auth issues, but rather the initial app discovery. I’m sure I’ve seen the https://www.google.com/doubleclick/studio/ link before, but as I didn’t have permission to the system I just didn’t know it existed. How many more such apps are lurking in the dark? For sure some food for thought ;)




2,008 views

Recent Posts

See All
bottom of page