Slashdot Mirror


New Vulnerability Affects All Browsers

Jimmy writes "Secunia is reported about a new vulnerability, which affects all browsers. It allows a malicious web site to "hi-jack" pop-up windows, which could have been opened by e.g. a your bank or an online shop. Here is a demonstration of the vulnerability"

4 of 945 comments (clear)

  1. Re:Sniff, our little browser's all grown up... by Indy+Media+Watch · · Score: 5, Insightful

    Now we can move from the myth that free software is impervious to exploits

    Uh, who was saying that?

    --

    Indy Media Watch-Proctologist of the Internet

  2. Here's how it works by sbszine · · Score: 5, Insightful

    The links to Citibank from the Secunia site are actually handled by JavaScript. The script sets a timer, then opens citibank. Every second or so, Secunia's script then checks whether you've opened Citibank's pop-up. If you have, it opens a window with the same name (i.e. variable name) as Citibank's window, thus overwriting their content.

    So the attacker doesn't need you to click on anything, they just need you to have their site open -- with the timer going -- in another window. Also, the attacker needs to know in advance what name the victim site's pop-up is referenced by. A dynamically generated name could possibly defeat this attack, though the attacker could always crawl the DOM for a handle to the pop-up.

    --

    Vino, gyno, and techno -Bruce Sterling

  3. Of course it's a bug by Chuck+Chunder · · Score: 5, Insightful

    Target names should only exist within the namespace of the site that created them.

    Site A should be able to create and interact with a window named "popup".
    Site B should be able to create and interact with a window named "popup".
    This should happen without either site interfering, blocking or overwriting the other. They should simply be invisible to each other, existing in completely seperate little worlds.

    --
    Boffoonery - downloadable Comedy Benefit for Bletchley Park
    1. Re:Of course it's a bug by Anonymous Coward · · Score: 5, Insightful

      OF course that seems sensible. But when you say "should" do you mean "should" because you think so, or because some W3C or other standard says so?