Slashdot Mirror


Security Company Says NASDAQ Waited Two Weeks To Fix XSS Flaw

alphadogg writes "A Swiss security company said the NASDAQ website had a serious cross-site scripting vulnerability for two weeks before being fixed on Monday, despite earlier warnings. Ilia Kolochenko, CEO of the Geneva-based penetration testing company High-Tech Bridge, said he repeatedly emailed NASDAQ and warned of the XSS flaw. 'I can basically say I have spammed them,' Kolochenko said in an interview. A NASDAQ spokesman did not have immediate comment. NASDAQ.com lets users create accounts and build a profile to monitor stocks and news."

3 of 61 comments (clear)

  1. Who cares? by Gizzmonic · · Score: 5, Insightful

    So, it's the NASDAQ website. Who goes the NASDAQ website? You can't trade stocks there. Financial information was not leaked, so BFD. This is fairly common on any website. Sounds to me like a single security research got butthurt because they didn't acknowledge his finding quickly enough.

    --
    (-1, Raw and Uncut is the only way to read)
  2. Re:Very difficult. by cbhacking · · Score: 5, Insightful

    For the unaware: this is serious sarcasm. Fixing XSS is usually pretty trivial; just apply output encoding (usually HTML entity encoding, but there are other valid approaches) to the user-supplied data before reflecting it into the page. Even in weird edge cases, like where the user is explicitly allowed to insert their own HTML (Slashdot, for example) you can get around the problem by whitelisting certain elements and parameters, and rejecting (or removing, though this must be done carefully) anything which doesn't conform. It's A long-ago solved problem that some people still have incredible difficulty with.

    Doing security work myself, I've seen XSS fix times ranging from "within the hour" to "three weeks or so", and the median is probably about two days. I always wonder what the hell is up with the companies on the long end of that scale.

    --
    There's no place I could be, since I've found Serenity...
  3. Re:Sounds like a fast response... by QilessQi · · Score: 4, Insightful

    No, taking the time to
    (1) evaluate the problem,
    (2) determine the best approach for a fix,
    (3) weight the time commitment against any other critical activities going on,
    (4) assign the best person to code it,
    (5) review the code,
    (6) rebuild and deploy it up through various testing environments,
    (7) test the hell out of it in each environment, and
    (8) deploy it into production
    in a mere 10 work days is excellent, given the importance of the system. That's what Enterprise System timelines are often like.

    If a major financial system like NASDAQ had managers run into the developer area and shouting "ZOMG someone fix this and slam it into Production now now now!", then I'd be more concerned.