Stories
Slash Boxes
Comments

News for nerds, stuff that matters

Big Day For Browser Vulnerabilities

Posted by timothy on Wed Oct 20, 2004 10:01 AM
from the uh-oh dept.
An anonymous reader writes "All browsers have been reported vulnerable to different vulnerabilities today. Starting with: Internet Explorer on XP SP1/SP2, which suffers a new system compromise (of course) vulnerability. Continuing with: Opera, Mozilla / Mozilla Firefox / Camino, Safari, Netscape, Konqueror, Avant Browser and Maxthon, which all suffers some new spoofing vulnerabilitities. Demonstrations of the spoofing vulnerabilities are available here and here."
This discussion has been archived. No new comments can be posted.
Big Day For Browser Vulnerabilities | Log In/Create an Account | Top | 429 comments (Spill at 50!) | Index Only | Search Discussion
Display Options Threshold:
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
  • NY Times Ad... (Score:5, Funny)

    by jea6 (117959) on Wednesday October 20 2004, @10:02AM (#10575394)
    (Last Journal: Friday October 01 2004, @03:27PM)
    Stop the presses.

  • Been thinking about this... (Score:5, Insightful)

    by byolinux (535260) * on Wednesday October 20 2004, @10:02AM (#10575397)
    (Last Journal: Friday December 08 2006, @04:28PM)
    So, a fairly common problem in all browsers bar IE (does it affect those browsers that embed IE to give tabs?)

    Possibly solutions that I've just thought up (for discussion)

    • Make the website launching any JavaScript event appear in the foreground
    • Make every dialog box give security information about the website it's from, if the website it's from is not the currently displayed tab.
    • Suspend various types of JavaScript until the tab is foremost again, but display a 'requires your attention' icon (I call shotgun on a panda [pandasecurity.com] for this)


    While they're fixing this, if all browser makers could make sure there's an option to stop websites resizing my browser, that'd be lovely. I know Moz has this, so it can't be hard for everyone to have it.
  • pwnXored by Harbinjer (Score:2) Wednesday October 20 2004, @10:04AM
    • Re:pwnXored by NanoGator (Score:2) Wednesday October 20 2004, @02:10PM
    • Re:pwnXored by AndroidCat (Score:2) Wednesday October 20 2004, @10:43AM
    • 1 reply beneath your current threshold.
  • Whats with the dig at IE? by tgd (Score:1) Wednesday October 20 2004, @10:04AM
  • Everything is vulnerable (Score:4, Informative)

    by networkBoy (774728) on Wednesday October 20 2004, @10:04AM (#10575413)
    (http://www.networkboy.net/)
    it's just that IE is so tied to the OS that when it goes down so does the whole 'puter
    -Nb
  • Phew! (Score:5, Funny)

    by acehole (174372) on Wednesday October 20 2004, @10:05AM (#10575425)
    (http://secondrate.org/)
    Lynx missed out!

    • Re:Phew! by Harbinjer (Score:2) Wednesday October 20 2004, @10:07AM
      • Re:Phew! by Reducer2001 (Score:3) Wednesday October 20 2004, @10:26AM
        • Re:Phew! by RedBear (Score:2) Wednesday October 20 2004, @05:01PM
    • Honor System Browser Exploit by TheOtherChimeraTwin (Score:3) Wednesday October 20 2004, @11:12AM
      • 1 reply beneath your current threshold.
    • Re:Phew! by Lars Clausen (Score:1) Wednesday October 20 2004, @01:16PM
      • 1 reply beneath your current threshold.
    • 1 reply beneath your current threshold.
  • All browsers? (Score:5, Funny)

    All browsers have been reported vulnerable to different vulnerabilities today.

    I use Lynx [isc.org], you insensitive clod!

    CDJ
  • What am I doing here? by Locdonan (Score:2) Wednesday October 20 2004, @10:07AM
    • 1 reply beneath your current threshold.
  • by nounderscores (246517) on Wednesday October 20 2004, @10:08AM (#10575455)
    I guess the best defense is a good slashdotting.
  • Yay! Mine isn't *THAT* bad! by chrisopherpace (Score:1) Wednesday October 20 2004, @10:08AM
  • by 99BottlesOfBeerInMyF (813746) on Wednesday October 20 2004, @10:09AM (#10575466)
    I just tried the exploit demonstration for Safari, but it did not work. The active tab switched back to the one providing the pop-up, not the target site. Did anyone else try it and have it work?
  • Slashdotted already... (Score:5, Insightful)

    by WIAKywbfatw (307557) on Wednesday October 20 2004, @10:09AM (#10575467)
    (Last Journal: Tuesday September 06 2005, @12:39PM)
    Slashdotted already. Would it kill the editors to, you know, edit and provide brief outlines of the stories they're linking to, especially in the case of stories on third party sites that they know will most likely not stand a slashdotting?
  • 6 minutes.. by Sunrun (Score:1) Wednesday October 20 2004, @10:09AM
    • Your sig... by saintp (Score:1) Wednesday October 20 2004, @10:21AM
    • Re:6 minutes.. by geggibus (Score:1) Wednesday October 20 2004, @10:33AM
  • It's a clever one. (Score:5, Interesting)

    by jimicus (737525) on Wednesday October 20 2004, @10:09AM (#10575473)
    (http://www.whitepost.org.uk/)
    For those who can't be bothered to RTFA, the Mozilla vulnerability is essentially a standard link with an "onMouseOver" bit which runs a little piece of JavaScript.

    The JavaScript pauses for a few seconds (while you presumably get distracted by another page) then flashes up a "Please enter some text" dialogue box.

    A similar effect could be achieved by calling the JavaScript on pretty much any event; the vulnerability relies on it being unclear which site caused the dialogue box to pop up. I can see how it could be classed a vulnerability, but it's hardly earth shattering.
    • So why couldn't you be clever as well? by Roadkills-R-Us (Score:2) Wednesday October 20 2004, @10:13AM
    • Re:It's a clever one. (Score:5, Insightful)

      by stromthurman (588355) on Wednesday October 20 2004, @10:18AM (#10575584)
      While I agree with that sentiment on the first exploit (though it would be nice if the parent of the dialog box were displayed when the dialog box is displayed, if the parent is not already active), the second one is a bit more serious.
      A form element should not be allowed to steal the focus when it's parent is not active. With a fairly simple timer (like the ones this guys already using), a javascript ...script, could call document.myform.submit after a few minutes to harvest all of the text entered in another page.
      Forms should be strictly tied to their containers, and focus requests should be restricted only to the currently active window/tab/whathaveyou. I suspect that the reason this is an issue is because technically the form and the citibank page are both in the same window, the tabs are merely controlling what components are visible at any given point in time.
      [ Parent ]
    • Re:It's a clever one. by DigitalRaptor (Score:3) Wednesday October 20 2004, @10:23AM
    • Re:It's a clever one. by bicho (Score:2) Wednesday October 20 2004, @10:33AM
    • Re:It's a clever one. by hackstraw (Score:2) Wednesday October 20 2004, @10:49AM
    • Re:It's a clever one. by ForestGrump (Score:2) Wednesday October 20 2004, @10:51AM
    • Re:It's a clever one. by TrancePhreak (Score:2) Wednesday October 20 2004, @03:58PM
    • 1 reply beneath your current threshold.
  • all URLs slashdotted already by frost22 (Score:2) Wednesday October 20 2004, @10:09AM
  • firefox users update now! by spoonyfork (Score:2) Wednesday October 20 2004, @10:10AM
  • Tabs by Tom (Score:1) Wednesday October 20 2004, @10:11AM
    • Re:Tabs (Score:4, Insightful)

      by Anonymous Coward on Wednesday October 20 2004, @10:15AM (#10575546)
      That's ridiculous. It has nothing to do with tabs. The same thing would happen with multiple open windows. To come to the conclusion that "tabs are problematic" is asinine.
      [ Parent ]
      • Re:Tabs by RedBear (Score:2) Wednesday October 20 2004, @05:19PM
      • 1 reply beneath your current threshold.
    • Re:Tabs by AlXtreme (Score:2) Wednesday October 20 2004, @10:28AM
      • Re:Tabs by Tom (Score:2) Wednesday October 20 2004, @02:13PM
        • Re:Tabs by AlXtreme (Score:2) Wednesday October 20 2004, @07:51PM
    • Re:Tabs by Anonymous Coward (Score:1) Wednesday October 20 2004, @10:50AM
    • Re:Tabs by Dom2 (Score:2) Wednesday October 20 2004, @02:38PM
    • Re:Point of tabs? by System.out.println() (Score:2) Wednesday October 20 2004, @10:47AM
    • Re:Point of tabs? by _Sprocket_ (Score:2) Wednesday October 20 2004, @11:04AM
    • 1 reply beneath your current threshold.
  • I don't get it... by Anonymous Coward (Score:2) Wednesday October 20 2004, @10:13AM
  • Netscape non-problem by RealProgrammer (Score:2) Wednesday October 20 2004, @10:13AM
    • WHAAAT by Prince Vegeta SSJ4 (Score:2) Wednesday October 20 2004, @10:47AM
      • Re:WHAAAT by RealProgrammer (Score:2) Wednesday October 20 2004, @11:30AM
      • Re:WHAAAT by Inuchance (Score:1) Wednesday October 20 2004, @04:51PM
    • Re:Netscape non-problem by autrijus (Score:2) Wednesday October 20 2004, @11:23AM
    • Re:And yet by Megaweapon (Score:2) Wednesday October 20 2004, @11:32AM
    • Re:And yet by NatasRevol (Score:2) Wednesday October 20 2004, @01:47PM
    • 1 reply beneath your current threshold.
  • Vulns text... (Score:5, Informative)

    by byolinux (535260) * on Wednesday October 20 2004, @10:14AM (#10575538)
    (Last Journal: Friday December 08 2006, @04:28PM)
    For Apple's Safari browser

    Description:
    Secunia Research has discovered a vulnerability in Safari, which can be exploited by malicious web sites to spoof dialog boxes.

    Inactive windows can launch dialog boxes so they appear to be displayed by a web site in another window. This can be exploited by a malicious web site to show a dialog box, which seems to originate from a trusted web site.

    Successful exploitation would normally require that a user is tricked into opening a link from a malicious web site to a trusted web site in a new window.

    A test is available here:
    http://secunia.com/multiple_browsers_dialog _box_sp oofing_test/

    The vulnerability has been confirmed in Safari 1.2.3 (v125.9). Other versions may also be affected.

    Solution:
    Don't visit trusted web sites while visiting untrusted web sites or disable JavaScript.

    And for IE

    Description:
    http-equiv has discovered two vulnerabilities in Internet Explorer, which can be exploited by malicious people to compromise a user's system, link to local resources, and bypass a security feature in Microsoft Windows XP SP2.

    1) Insufficient validation of drag and drop events from the "Internet" zone to local resources for valid images or media files with embedded HTML code. This can be exploited by e.g. a malicious web site to plant arbitrary HTML documents on a user's system, which may allow execution of arbitrary script code in the "Local Computer" zone.

    This vulnerability is related to:
    SA12321

    NOTE: Microsoft Windows XP SP2 does not allow Active Scripting in the "Local Computer" zone.

    2) A security zone restriction error, where an embedded HTML Help control on e.g. a malicious web site references a specially crafted index (.hhk) file, can execute local HTML documents.

    NOTE: This will also bypass the "Local Computer" zone lockdown security feature in SP2.

    The two vulnerabilities in combination with an inappropriate behaviour where the ActiveX Data Object (ADO) model can write arbitrary files can be exploited to compromise a user's system. This has been confirmed on a fully patched system with Internet Explorer 6.0 and Microsoft Windows XP SP2.

    Solution:
    Disable Active Scripting or use another product.
  • by Gadzinka (256729) <rrw@hell.pl> on Wednesday October 20 2004, @10:15AM (#10575542)
    (Last Journal: Tuesday December 07 2004, @09:19AM)
    Seems like all the vulnerability reports are vulnerable to reporing them on /.

    Robert
  • Safari 1.2.3 by RaisinBread (Score:2) Wednesday October 20 2004, @10:15AM
  • IE vulnerabilities by kzh (Score:1) Wednesday October 20 2004, @10:16AM
  • Spoofing Demo Vs. Slashdot (Score:4, Funny)

    by AbbyNormal (216235) on Wednesday October 20 2004, @10:17AM (#10575565)
    (http://www.everythingfreight.com/)
    Spoofing Demo 0
    Slashdot 1

    Take that you evil spoofers!
    • Slashdotted by sYn pHrEAk (Score:1) Wednesday October 20 2004, @10:21AM
    • 1 reply beneath your current threshold.
  • Tabs bug explained (Score:5, Insightful)

    by Tom (822) on Wednesday October 20 2004, @10:17AM (#10575571)
    (http://web.lemuria.org/)
    Essentially, it's an interface error. The problem seems to be that dialog boxes don't explain which tab they belong to.

    So with some creative coding, properly guessed/estimated delays, you can create the impression that dialog box A belongs to tab X, while it's actually from tab Y.

    I'm not sure if it's restricted to tabs. Can't get to the demo sites anymore as they're /.'ed, but I wouldn't be surprised if it works just as well for opening the external site in a new window.
  • Mozilla*.* (Score:3, Informative)

    by ParnBR (601156) on Wednesday October 20 2004, @10:17AM (#10575572)
    (http://parn.pro.br/musicstation/)
    Although they list Mozilla*.* vulnerabilities as not very serious, they must be acknowledged anyway. One is fairly trivial, I've seen it many times: typing in a text box in a tab may send keypresses to a text box in another tab. It happens when I open many tabs at once; the last tab to load usually steals the focus. It's a minor annoyance, though, and can be easily noticed looking at the screen, since typing doesn't appear where it should. However, spoofing dialog boxes can be more serious. Although suspending script execution in inactive tabs could solve this problem, it can break other things.

    At any rate, I'm fairly confident this will be solved in a sensible way by Mozilla*.* developers.
  • Safari by CaptScarlet22 (Score:1) Wednesday October 20 2004, @10:18AM
    • Re:Safari by KidMuddy (Score:1) Wednesday October 20 2004, @10:49AM
    • Re:Safari by argent (Score:2) Wednesday October 20 2004, @10:51AM
  • Can't Recreate one vuln in Camino Nightly by 10sball (Score:1) Wednesday October 20 2004, @10:19AM
  • About the second tab issue (Score:5, Informative)

    by ESqVIP (782999) on Wednesday October 20 2004, @10:20AM (#10575608)
    This was already filed as bug 124750, and has already been fixed. I'm using a 2004-10-19 build, and I can assure I already tested it.

    As I can't link bugzilla form Slashdot... go to http://bugzilla.mozilla.org/ and type in there the bug number. (None: it's not marked there as FIXED, but you should look at the "fixed-aviary1.0" keyword, which is what matters for Firefox 1.0)

  • that is more of a usability problem than anything by xutopia (Score:2) Wednesday October 20 2004, @10:21AM
  • Eff these browsers... all of them... by McNihil (Score:2) Wednesday October 20 2004, @10:23AM
  • This is why we need CHROOT browsers (Score:5, Insightful)

    by freelunch (258011) on Wednesday October 20 2004, @10:25AM (#10575657)
    Because the complexity and importance of our web browsers continues to increase, security of those applications will never be "solved" or "fixed".

    Other steps must be taken to deal with these issues. What we can do is treat the symptoms.

    For those using Linux or UNIX, privilege separation (running the browser process as a user ID that has limited rights) and a chroot jail would be major steps forward.

    I believe the browser projects need to work with the community to support that type of runtime configuration.. Before a big nasty vulnerability does damage.

    Chroot, in particular, is very tricky.
  • It's interesting to compare these (Score:5, Informative)

    by Anonymous Coward on Wednesday October 20 2004, @10:25AM (#10575662)

    This is an excellent example of two facts:

    • All software suffers security problems, and many of the security holes are actually just unintended side effects of useful features; and
    • Microsoft's software is much, much worse than the rest, because it's plagued by old design decisions that make it easy to turn a minor security problem into a remote root exploit.

    Here's what the vulnerabilities are:

    In all the non-IE browsers, there's a potential issue with how tabbed browsing works. Basically, the problem is that stuff on tabs other than the active tab can still (a) pop dialogs and (b) have the keyboard focus. It's pretty clear that (b) is just a problem that should be fixed, because although it's possible to concieve of a circumstance where a user would want to look at one tab while typing into a box on another, it's clearly way too surprising and not nearly useful enough to be allowed. But (a) is more interesting. It's a side effect of the fact that pages continue functioning in all ways even when they're not the active tab. This includes running Javascript/Java/Flash programs, loading, rendering, etc. And that's a good and useful thing. But when a background tab pops a dialog, it may appear to the user that the dialog was created by the active page. If the user trusts one page more than the other, that can lead to problems.

    The solution to this dialog-popping problem isn't obvious. Perhaps dialogs need to be labeled with the name of the site that created them. Perhaps some other solution. But it will be worked on, even though the risk is fairly small.

    The IE vulnerability is very different in that it's a system compromise flaw. It's similar in one way, though: it's caused by a subtle interaction of features. In this case, dragging and dropping of image or media files with embedded HTML code, which may be malicious. This malicious code isn't a problem, really, because IE is security-conscious and won't execute it -- except that Microsoft has that terrible "security zones" design feature. Once the malicious code is moved from the "Internet" zone to the "Local Computer" zone, the code will be executed. What makes it especially funny is that Microsoft fixed this problem in SP2 by changing the Local Computer zone so tht it will no longer execute Active Scripts. But yet another bug in the security zones can be exploited to bypass that "problem" so SP2 is vulnerable as well.

    Security flaws are everywhere, but what really kills Microsoft is their rash of bad design decisions in the past, turning little holes into remote root exploits. They're getting better, I believe, but it's going to be a long hard road for them to patch all of the problems that are created by their bad design decisions. It's too late, of course, to change the design. Too much depends on it.

  • YAV... by dark-br (Score:2) Wednesday October 20 2004, @10:25AM
  • Don't enable Javascript (Score:5, Insightful)

    by wowbagger (69688) on Wednesday October 20 2004, @10:26AM (#10575667)
    (http://slashdot.org/~wowbagger/journal/87552 | Last Journal: Monday September 03, @08:07PM)
    Don't visit trusted web sites while visiting untrusted web sites or disable JavaScript.


    Once again, for all you web masters out there who cannot code a simple <a href="foo"> without using Javascript:

    SOME OF US RUN WITH JAVASCRIPT DISABLED BY DEFAULT, FOR GOOD REASON!

    Yes, there are plenty of places where you CANNOT do what you need to do without Javascript - in those cases go ahead and use Javascript.

    But for a simple link to another page, or to an image, or to simply DISPLAY you site's content (I'm thinking of bone-headed sites like the International Herald Tribune here who use JS to display otherwise hidden text for their stories), USE HTML DAMNIT! OK, if you want to "enhance" (pronounced "clutter up with needless crap") you site by overriding those behaviors IF Javascript is enabled, knock yourselves out (preferably with a large mallet). BUT MAKE STANDARD HTML WORK AS WELL!

    Yes, you may WANT your image to be in its own window, without the standard decorations a browser will add. But if I have JS disabled, make the damn link just spawn a new window and be done with it.
  • Easy to work around by Todd Knarr (Score:2) Wednesday October 20 2004, @10:33AM
  • No problem with Safari. by brainnolo (Score:1) Wednesday October 20 2004, @10:36AM
  • Firefox exploits don't work by NigelJohnstone (Score:2) Wednesday October 20 2004, @10:36AM
  • Nasty on Avant by Inda (Score:2) Wednesday October 20 2004, @10:37AM
  • Microsoft already fixed the vuln by Digital Dharma (Score:1) Wednesday October 20 2004, @10:42AM
  • uhh ok so? by matth (Score:2) Wednesday October 20 2004, @10:45AM
  • Mirrors by webgit (Score:1) Wednesday October 20 2004, @10:46AM
  • The form vulnerability... by swiftstream (Score:2) Wednesday October 20 2004, @10:48AM
  • by museumpeace (735109) on Wednesday October 20 2004, @10:49AM (#10575929)
    (Last Journal: Monday July 18 2005, @06:18PM)
    after all, I love to bash poor Microsoft, but exhaustion is rapidly setting in here. I am what passes for a careful user: I don't use IE, I run the latest Mozilla, I use a firewall and anti-spyware and when its all said and done...not much gets done because I am fretting over yet another patch or vulenrability. I have sympathetic talks with my sysadmins but my family thinks I am the the Home Network Nazi.
    I feel like a small town policeman burried under a barrage of "sky-is-falling-alert-level-puce" faxes from the HomelandSecurity to be dealt with on zero budget.
    The color codes provided by Secunia are ,despite seeming like imitations of the nation's goofy alert color codes, a step in right direction. But what I want is an alert level made meaningful by contrasting it with risks I do understand: Since we perceive risk as a product of CHANCE_OF_OCCURANCE X COST_OF_OCCURANCE, I want a system where I can set a threshold for ignoring the drivel. The basis could be a chance_of_occurance = to my chances of a serious car accident on the way to work for instance [say its 1 in 5000] and the cost is monitarized in the range from 0$ to the 1.7million [or what ever it is] that the insurance industry pays out on average for a loss of life. ...if I am fithy rich, a vulnerability that opens my brokerage account could be > than loss of life but that is for me to set. All the stuff that falls below the threshold, I don't want to hear about, at least not more than once a year in a round-up batch of patches. Enough already!
  • Uhh it doesn't work for me by GoClick (Score:2) Wednesday October 20 2004, @10:51AM
  • Mozilla has had these bugs for a while now! by Jagasian (Score:2) Wednesday October 20 2004, @10:54AM
  • MirrorDotting time (Score:5, Informative)

    by ggvaidya (747058) on Wednesday October 20 2004, @11:00AM (#10576086)
    (http://www.ggvaidya.com/ | Last Journal: Sunday July 16 2006, @11:28PM)
    1. Microsoft Internet Explorer [mirrordot.org]
    2. Opera [mirrordot.org]
    3. Mozilla Suite/Firefox [mirrordot.org]
    4. Netscape [mirrordot.org]
    5. Konqueror [mirrordot.org]
    6. Avant [mirrordot.org]
    7. Maxthon [mirrordot.org]

    Demonstrations of vulnerabilities: here [mirrordot.org] and here [mirrordot.org]

  • Stop the biased news postings by Zed2K (Score:2) Wednesday October 20 2004, @11:04AM
  • Pause by Maint_Pgmr_3 (Score:1) Wednesday October 20 2004, @11:16AM
  • overblown issues... by evangellydonut (Score:1) Wednesday October 20 2004, @11:17AM
  • Give it time by 93 Escort Wagon (Score:2) Wednesday October 20 2004, @11:18AM
  • Depends by genzil (Score:1) Wednesday October 20 2004, @11:20AM
  • So how is this a security vulnerability? by PeterHammer (Score:2) Wednesday October 20 2004, @11:35AM
  • On what platform? by zogger (Score:2) Wednesday October 20 2004, @11:50AM
  • Konqueror work-around (Score:5, Informative)

    by kitzilla (266382) <paperfrog@@@gmail...com> on Wednesday October 20 2004, @11:54AM (#10576729)
    (http://moreminimal.com/ | Last Journal: Saturday March 15 2003, @06:24PM)
    I left Javascript enabled in Konqueror, but set "open new windows" to "ask" in preferences and set the other JS policies to "ignore." Site displayed normally, and the spoofed text entry box didn't launch.
  • Not limited to just content in the tab page... by KJACK98 (Score:1) Wednesday October 20 2004, @12:11PM
  • by Animats (122034) on Wednesday October 20 2004, @12:50PM (#10577495)
    (http://www.animats.com)
    Browser windows are going to have to become hierarchical. If the code in window A causes the opening of window B, window B must be considered a child of window A. If window A closes, so must window B.

    This means popups can't survive their parents, which is probably a good thing.

    Visual parenting is needed, too. If the parent window is minimized or goes to the back, so should its child windows. Window headers should reflect the parent window's header.

    Child windows shouldn't be allowed to position themselves entirely outside of the parent window. They should have to overlap, at least marginally. (Strict users might turn on a mode where they have to overlap totally, like subwindows in an application.) This creates a visual association between the parent and child windows.

    With this, multiple window sites behave in a more tolerable manner.

  • We need a new view of security (Score:4, Insightful)

    by gelfling (6534) on Wednesday October 20 2004, @01:10PM (#10577787)
    (http://slashdot.org/ | Last Journal: Monday October 29, @07:20AM)
    We need to accept that all browsers are fundamentally broken and exposed and can't be fixed. We need therefore to understand security as that set of tools and behaviors that minimize our own exposures and risks with the understanding that Browsers, in fact all desktop tools are to some extent nothing more than Dreadnoughts and Maginot Lines too big and stupid to get out of their own way and only as effective as the stupidity of the attack that tries to hit them head on.

    The notion that browsers are exposed is really only relevant in term of what is exposed and how meaningful that exposure might be to you or your enterprise. If your browser gets hijacked - ok then what are you going to lose your bank account or credit card? Are you going to lose your health management PPO records? Are you going to go to jail when the FBI finds your kiddyporn? Or do you simply take other steps to protect yourself in the case when not if your machine is cracked and taken over.

    • 1 reply beneath your current threshold.
  • Konqueror vulnerable, really? (Score:3, Interesting)

    by Balinares (316703) on Wednesday October 20 2004, @01:21PM (#10577939)
    (http://slashdot.org/)
    I tested the spoof vulnerability in Konqueror 3.3.1 (the latest).

    When displaying the popup, it 1) switched back to the tab that owns it, and 2) the popup clearly contained the server name "secunia.com".

    I was about to call this unhealthy sensationalism, but I haven't checked out older versions. Can anyone confirm the vulnerability in 3.3.0 and older? Thanks.
  • Excellent, an ad hoc patch race! by freality (Score:2) Wednesday October 20 2004, @02:13PM
  • Firefox's tabs (Score:5, Informative)

    by dfj225 (587560) on Wednesday October 20 2004, @02:20PM (#10578639)
    (http://www.livejournal.com/users/dfj225 | Last Journal: Monday March 01 2004, @04:15PM)
    The window from an unactive tab coming to the front in Firefox does not really seem like that big of a deal. I kind of like the fact that it does this. At work, the server needs to resart to load a new java war file so I usually browse on other tabs while the server is restarting. when it starts, the notification window pops to the top. Perhaps there should be an option to turn this on or off (the option could default to off)...I don't really see that many people putting really important information into a javascript notification window anyway.
  • Is the first one really a vulnerability? by Skudd (Score:1) Wednesday October 20 2004, @02:27PM
  • Big Day For Colour Vulnerabilities by Anonymous Coward (Score:1) Wednesday October 20 2004, @03:06PM
  • It's not a bug, it's a feature by davidwr (Score:1) Wednesday October 20 2004, @08:56PM
  • OmniWeb, a Bit different... by Lord Flipper (Score:1) Thursday October 21 2004, @04:55AM
  • Re:Oh my Gosh... (Score:5, Funny)

    by Dehumanizer (31435) on Wednesday October 20 2004, @10:08AM (#10575451)
    (http://tlog.dehumanizer.com/)
    Wanna guess how long Mozilla, Firefox and such will take to fix this?

    And how long IE will take?

    Didn't think so. :)

    [ Parent ]
  • Re:I wonder by Anonymous Coward (Score:1) Wednesday October 20 2004, @10:20AM
    • Re:I wonder by zurab (Score:2) Wednesday October 20 2004, @01:14PM
  • Re:Do NOT go to those links by ESqVIP (Score:1) Wednesday October 20 2004, @10:27AM
  • 15 replies beneath your current threshold.