Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Attacking Web Proxies in the modern Era.

Nafeez
November 13, 2014

Attacking Web Proxies in the modern Era.

Slides from my talk on Attack web proxies @ Ground Zero 2014, New Delhi

Nafeez

November 13, 2014
Tweet

More Decks by Nafeez

Other Decks in Programming

Transcript

  1. Nafeez Software Security Engineer Defending & building secure stuff is

    more fun. Been talking about stuff that break the web @ BlackHat, HITB, Nullcon, C0c0n
  2. Why use web proxies? Widely used for anonymous surfing and

    identity cloaking on the Internet. 
 Also used in traffic filtering, traffic management, log auditing, access policies and surfing restricted sites.
  3. How does a web based proxy work? 1. User requests

    site.com inside the Web Proxy page. 2. The Proxy downloads the web content and pushes its own HTML alongside the downloaded content. 3. User finally gets to see site.com under the Web Proxy page.
  4. Past attacks on web proxies De-anonymization, exfiltrating data, logs …

    Usually revolves around, the Proxy itself being malicious.
  5. Those are old threats Lets talk about owning an user

    when he is willing to click on links!
  6. Same origin policy (SOP) Single most important security feature in

    the browser. Without this, we would have a world-wide XSS havoc.
  7. Universal XSS (uXSS) Any flaw or un-intended feature in the

    browser, that bypasses its Same Origin Policy.
  8. Back to our web proxy story All the websites being

    proxied comes under a single trusted 'origin' from the browser's perspective.
  9. This also means any website can interact with the DOM

    / Cookies of other proxied websites.
  10. attacker.com IFrame’s the proxified site.com URL. The user navigates to,

    
 <iframe src=‘http://proxy.com/site?url=site.com’>
  11. Proxy Hot-linking This feature prevents users from hot-linking directly to

    a proxied page and forces all users to visit the index page first.
  12. Proxy Hot-linking This feature is like the achilles-heel of any

    web proxy security. If any website can directly get themselves being IFRAMED + Proxied by a web proxy then attacks like the SOP bypass and other attacks are easily possible.
  13. This checks for all the whitelisted websites in the Referer

    If found, the hot-linking protection doesn’t apply to this!
  14. The bypass Just add the whitelisted name to the path

    of your referrer. Just do a location.reload() from, 
 http://attacker.com/localhost/ http://attacker.com/whitelisted-domain/
  15. Practical aspects What if the target website prevents IFraming using

    X-Frame-options and other such security headers? What if the target website has set httpOnly cookies?
  16. True Story Web based proxies don’t respect target website’s HTTP

    Response Headers! Web based proxies have their own Cookie Jar implementation.
  17. Unsafe response rewrites Messing around with secure response headers like

    X- Frame-Options, X-XSS-Protection, Content- Security-Policy, HSTS Those headers won’t be re-written back to the user’s browser in the response.
  18. Cookie Jars on Proxy Proxies under-estimate the complexity of Cookie

    management. Things like various cookie flags, handling of secure channels, limit of cookies with the same name, cookie folding, cookie SOP etc
  19. They work by searching for Javascript patterns and removing them.

    They cannot completely disable Javascript because they are not the same as browser!
  20. Most proxies don’t restrict JS execution from SVG, Complex JS

    Event handlers. An attacker can also send chunked encoded responses.
  21. How not to write JS filters var inputHTML = "<img

    src='PLACEHOLDER'>"; function doTemplating(){ var input = document.getElementById('id_input').value; input = filterInput(input); var finalHTML = inputHTML.replace("PLACEHOLDER", input); console.log(finalHTML); document.write('Your input: </br>' + input); document.write(finalHTML); }
  22. String.replace is MAD! var inputHTML = "<img src='PLACEHOLDER'>"; function doTemplating(){

    var input = document.getElementById('id_input').value; input = filterInput(input); var finalHTML = inputHTML.replace("PLACEHOLDER", input); console.log(finalHTML); document.write('Your input: </br>' + input); document.write(finalHTML); }
  23. Little bit of the new ECMAScript features helps as well!

    Overriding and Freezing DOM properties using ES5 Object locking mechanisms to completely subvert any defences placed by the proxied website against Proxy based attacks.
  24. Proxies should adopt CSP to enforce real anonymity. Content security

    policy helps extensively in locking down proxy based attacks, since its enforced by the browser.