Come again? A XS-Search attack?
Combining these two vulnerabilities we have all that is needed to perform a Cross-Site Search (XS-Search) attack:
- Capacity to perform complex search queries.
- Capacity to inflate the response of a search query.
The second point is particularly important. If the response of a search query matches a bug, we can make the CSV significantly bigger than a query that doesn’t.
Because of this big difference in response length, it’s possible to calculate the time each request takes to complete and then infer whether the query returned results or not. This way, we achieve the ability to ask cross-origin boolean questions.
The phrase “cross-origin boolean questions” sounds weird, but it essentially means we’re able to ask questions like “is there any private bug that matches the folder `src/third_party/pdfium/`?” and obtain the answer cross-origin. This involves several steps that will be described in the following section.
For now, the examples below demonstrate the core of the issue:

1st case — CSV generated from query “Summary: This bug exists”.

2nd case — CSV generated from query “Summary: This bug doesn’t exist”.

3rd case — CSV generated from query ”Summary: This bug exists OR Summary: This bug doesn’t exist“.
As we can see, on the first and third case we would have an arbitrarily big CSV, because both queries match a bug with summary “This bug exists”. On the second case, the CSV would be empty (containing only the header), because the query didn’t match any bug with the Summary “This bug doesn’t exist”. Note that in the third case we are using the logic operator OR to query the first and second cases together.