DOM based cookie bomb

Disclosed: 2017-04-11 03:24:51 By filedescriptor To x
Unknown
Vulnerability Details
Hi, I would like to report an issue that allows attackers to plant a "cookie bomb" on a victim's browser, so that the victim will be unable to access any Twitter services. ##PoC 1. Go to http://innerht.ml/pocs/twitter-dom-based-cookie-bomb/ 2. Click on the "DoS" link 3. Wait for a moment 4. Now Twitter will be unaccessible Video demonstration https://vimeo.com/125377697 (password: c4) ##Details Let's examine the very first script block on https://twitter.com: ```javascript function d(a) { ... var b = document.referrer || "none", d = "ev_redir_" + encodeURIComponent(a) + "=" + b + "; path=/"; document.cookie = d; ... } ... window.location.hash != "" && d(window.location.hash.substr(1).toLowerCase()) ``` In short, it sets a cookie with hash as the name and referrer as the value. The problems are that there is no length limitation setting the cookie and referrer is not properly escaped (i.e. the ";" character). Thus, the attacker can craft a long enough cookie to *.twitter.com and manipulate the referrer value to add additional cookie attributes to make the attack persistent. All requests to Twitter will then result in HTTP 431, causing a DoS on the client side.
Actions
View on HackerOne
Report Stats
  • Report ID: 57356
  • State: Closed
  • Substate: resolved
  • Upvotes: 52
Share this report