Slashdot Mirror


User: progeek

progeek's activity in the archive.

Stories
0
Comments
1
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1

  1. Re:Mozilla/Firefox Workaround on New Vulnerability Affects All Browsers · · Score: 1

    More important for many businesses is what they can do to their web site to protect their customers. I've been reading the JavaScript code and, for starters, I recommend either targetting _blank or some randomly generated name. If the window must be targetted again later, maybe a combination of the user's session ID (which should already be randomly generated and protected from interception etc.) and a plain-english name. For example:

    var windowname = sessionid + 'foo');

    This would go well in a function to "sessionize" a window name and return the result.