Slashdot Mirror


Drive-By Download Poisons Google Search Results

snydeq writes "A new attack that peppers Google search results with malicious links is spreading quickly, CERT has warned. The attack, which can be found on several thousand legitimate Web sites, exploits flaws in Adobe software to install malware that steals FTP login credentials and hijacks the victim's browser, replacing Google search results with links chosen by the attackers. Known as Gumblar because at one point it used the Gumblar.cn domain, the attack is spreading quickly in part because its creators have been good at obfuscating their attack code and because they are using FTP login credentials to change folder permissions, leaving multiple ways they can get back into the server."

136 comments

  1. The Importance of Being Forgotten by eldavojohn · · Score: 5, Insightful

    ... that steals FTP login credentials ...

    About five years ago, I had installed some Firefox FTP plugin (FireFTP?) and was enjoying the simplicity of having my browser be used for multiple kinds of traffic when transferring files.

    Well, we all know how bulletproof secure Firefox is, right? Not very. So I thought about it more and more I got really nervous about using something like this. I thought of the importance of all the things I had connected to--whether it be my friend's FTP server to drop off some pictures of our last vacation or one of several web hosts I had been working on. So in the end, I removed it from my machine as I wasn't sure how it was storing sessions and passwords. I also deleted the passwords from saved sessions in WinSCP on my Windows machines. Nowadays I just use the 'ftp' command in the shell no matter what operating system I'm using. Yeah, it's annoying to change directories both locally and remotely by hand (without even tab-complete!) but you know it sure beats being that guy that lost all his shit (and maybe some other people's) to something like this.

    The integration of FTP clients into browsers and I think I've seen plugins in integrated development environments to remotely connect and upload your changes. While this may seem like a stream lined and faster path to development, acknowledge the risks you take when that's a server hosting data to users.

    --
    My work here is dung.
    1. Re:The Importance of Being Forgotten by Aladrin · · Score: 5, Insightful

      It's a pretty rare thing in the computer world to gain convenience without sacrificing security.

      In fact... Drop 'computer' out of that sentence and it's still true.

      It's all about a balancing act. You have to take risks to be efficient... It's just part of life.

      --
      "If you make people think they're thinking, they'll love you; But if you really make them think, they'll hate you." - DM
    2. Re:The Importance of Being Forgotten by Anonymous Coward · · Score: 4, Interesting

      On the contrary, security without convenience is a myth. When "logging in" is an arcane protocol, then the user focuses on technical details instead of thinking about potential avenues of attack. Computers should handle the arbitrary and fiddly details and leave only the critical aspects to the user.

      The real problem with the security of credentials is that for some reason we're not willing to do the right thing, which is to encapsulate authentication in a small (and therefore easier to secure) subsystem, like a class 3 smart card reader.

    3. Re:The Importance of Being Forgotten by _LORAX_ · · Score: 3, Informative

      ssh keys with passwords are the best bet. Run an agent so you only have to give your password occasionally and there really is not a lot to steal. They can take the private keyfile, but without the password it is useless. They can use ssh/scp on your behalf, but only until the session ends.

      Putty has an agent for windows, OSX Leopard has an agent integrated with keychain, and Linux has agents that integrate with PAM. OSX and Linux allow it to be SSO with little risk of password/credential theft.

    4. Re:The Importance of Being Forgotten by morgan_greywolf · · Score: 2, Insightful

      Smart card readers are only as secure as the smart cards themselves.

    5. Re:The Importance of Being Forgotten by Abcd1234 · · Score: 4, Insightful

      Well, we all know how bulletproof secure Firefox is, right?

      More to the point, we all know how secure FTP is, right?

      Jebus, if you're that paranoid, why, dear god, weren't you using SFTP?

    6. Re:The Importance of Being Forgotten by Anubis350 · · Score: 3, Informative

      if they have can use ssh from your existing session they can: cat $NEW_PUBLIC_KEY >> ~/.ssh/authorized_keys

      --
      "goodbye and hello, as always" ~Prince Corwin, from Zelazny's Amber series
    7. Re:The Importance of Being Forgotten by Anonymous Coward · · Score: 1, Insightful

      Well, we all know how bulletproof secure Firefox is, right?

      More to the point, we all know how secure FTP is, right?

      Jebus, if you're that paranoid, why, dear god, weren't you using SFTP?

      Um, if you bothered to read his post, WinSCP and FireFTP are both SFTP or support it at least. And if he's connecting to other people's servers, what is he supposed to do? Ask them to move to SFTP before he will help or transfer?

    8. Re:The Importance of Being Forgotten by gparent · · Score: 3, Informative

      Nowadays I just use the 'ftp' command in the shell no matter what operating system I'm using. Yeah, it's annoying to change directories both locally and remotely by hand (without even tab-complete!) but you know it sure beats being that guy that lost all his shit (and maybe some other people's) to something like this.

      You realise FireZilla makes this 100 times easier and is just as secure, right?

    9. Re:The Importance of Being Forgotten by BenoitRen · · Score: 2, Insightful

      Well, we all know how bulletproof secure Firefox is, right? Not very.

      Care to substantiate this? Firefox has a very good track record when it comes to security thanks to its quick responses to known vulnerabilities and patching almost all of them before they become publicly known.

    10. Re:The Importance of Being Forgotten by CatBegemot · · Score: 2, Insightful

      "Smart card readers are only as secure as people using them" Here, fixed that for you. You're welcome.

    11. Re:The Importance of Being Forgotten by Anonymous Coward · · Score: 0

      There is no perfect security, obviously. The point is that security depends on reducing complexity. The separation of authentication and all the untrusted code running on a typical computer system has a beneficial side effect: People mostly understand the security implications of smart cards. People do not understand the security implications of scanning their TAN lists and saving passwords in browsers.

    12. Re:The Importance of Being Forgotten by thatskinnyguy · · Score: 1

      FTP is sent in plain text. Even a noob can sniff your credentials out of the ether. You would be much better off using SCP where available.

      --
      The game.
    13. Re:The Importance of Being Forgotten by knarf · · Score: 1

      Yeah, it's annoying to change directories both locally and remotely by hand (without even tab-complete!)

      Use lftp and you'll get your tab-completion, both local and remote...

      --
      --frank[at]unternet.org
    14. Re:The Importance of Being Forgotten by gzipped_tar · · Score: 1

      Hi,

      You may find lftp a good cli client! Very handy tab-completion and shell integration. I use it whenever possible.

      --
      Colorless green Cthulhu waits dreaming furiously.
    15. Re:The Importance of Being Forgotten by Presto+Vivace · · Score: 2, Insightful

      Security that is too cumbersome with be ignored by users, they will us go-arounds that dispense with security all together. Ease of use is a critical part of security.

    16. Re:The Importance of Being Forgotten by Anonymous Coward · · Score: 5, Funny

      Well, we all know how bulletproof secure Firefox is, right? Not very.

      Care to substantiate this? Firefox has a very good track record when it comes to security thanks to its quick responses to known vulnerabilities and patching almost all of them before they become publicly known.

      Sure, let me explain:

      1. I am snide.
      2. I am a bitter fanboy of another browser, which, for the sake of argument, I'll call... um... "Mop-er-ah".
      3. Firefox is more popular than my pet browser.
      4. By points 2 and 3 (and with help from 1), I am indier than thou.

      Therefore, it is obvious that I'm right and Firefox has a long-standing track record of swiss cheese security that any infant can get around from remote without the user even turning on the computer. QED.

      Next I'll tell you why spaghetti has a lousy track record in security issues. Right after I finish my stuffed pasta shells. Stupid spaghetti, stealing all the best features of stuffed pasta shells...

    17. Re:The Importance of Being Forgotten by Ex-Linux-Fanboy · · Score: 1

      The problem with Firefox is that the Gecko codebase is messy and prone to a lot of security problems. It is, if you will, the BIND 8 or Sendmail of the 2000s. In 2009 alone there have been eight critical security holes reported. Yes, Firefox patches these quickly, but having to update a program more than once a month to keep it secure is a real pain in the butt.

      Firefox has a very short update lifecycle for a given update of Firefox; if you want to use an older release of Firefox (think enterprise desktops where any software update has to be approved; think live CD or embedded distributsions), you have no choice but to place yourself at risk.

      Modern HTML + CSS + ECMAscript is so complicated that we can't have someone come forward and write a browser that is security-aware. Safari isn't much better, since it needed two updates already this year, and Opera has had an update this year with a couple of security problems fixed.

      So, yeah, to keep a modern browser secure requires running on the update treadmill. I hope HTML + CSS + ECMA stop being constantly updated, new web Acid tests are no longer made every couple of years, and the standards calm down so that browser developers don't have to rush to add new features to their browsers all the time, allowing browser developers to take the time to write secure code.

    18. Re:The Importance of Being Forgotten by Tanktalus · · Score: 1

      Smart card readers are only as secure as the smart cards themselves.

      And that's why I run my smartcard device through a rot13 filter, folks! And, when I'm getting truly paranoid about it, I skip straight to TRIPLE-rot13 filtering!

    19. Re:The Importance of Being Forgotten by 117 · · Score: 2, Insightful

      Nowadays I just use the 'ftp' command in the shell no matter what operating system I'm using. Yeah, it's annoying to change directories both locally and remotely by hand (without even tab-complete!) but you know it sure beats being that guy that lost all his shit (and maybe some other people's) to something like this.

      As you mentioned that you use Windows machines, why not just use Windows Explorer for FTP purposes?

    20. Re:The Importance of Being Forgotten by PitaBred · · Score: 2, Informative

      I tend to make authorized_keys2 read-only, and owned by root. I can change that if I need to add another key, but that's so rare that it's well worth the extra security.

    21. Re:The Importance of Being Forgotten by pyrbrand · · Score: 1

      You think ftp:// is forgotten about? What about gopher:// !?

    22. Re:The Importance of Being Forgotten by BenoitRen · · Score: 2, Informative

      You make a good point. There's one thing that I find fault with, though:

      I hope HTML + CSS + ECMA stop being constantly updated

      Where do you see constant updates? HTML 4.01 has been out since 1997 or so. CSS2 has been out since 1998. HTML5, CSS2.1 and CSS3 are still in draft stage, though I will admit that CSS2.1 has been close to completion for quite some time now, which makes it valid for implementation.

      I can't argue about ECMAScript. It seems to get an update a little quicker than the previously-mentioned technologies, though.

    23. Re:The Importance of Being Forgotten by S-100 · · Score: 1

      So you had no indication that your credentials were being stored improperly, but you dumped FireFTP anyway? If you were worried about vulnerable FTP credentials, all you had to do was delete them after you were done, or delete the plug-in in between uses (it's fast and easy to re-install). But I guess you like to punish yourself.

      Incidentally, the command line FTP program is just as vulnerable to the exploit in TFA. A security hole in unpatched Adobe software (i.e. Flash player, PDF viewer) installs spyware that captures your FTP traffic, and as we all know, FTP log-in credentials are sent in clear text. If you really care about security, you shouldn't be using naked FTP at all.

    24. Re:The Importance of Being Forgotten by Dan541 · · Score: 1

      I think you mean "Smart cards are only as smart as the people using them"

      In conclusion; the future looks very insecure.

      --
      An SQL query goes to a bar, walks up to a table and asks, "Mind if I join you?"
    25. Re:The Importance of Being Forgotten by thePowerOfGrayskull · · Score: 1

      On the contrary, security without convenience is a myth. When "logging in" is an arcane protocol, then the user focuses on technical details instead of thinking about potential avenues of attack. Computers should handle the arbitrary and fiddly details and leave only the critical aspects to the user

      I couldn't agree more. The trouble is this: how? Secondarily, who defines what is important enough to bother the user with?

    26. Re:The Importance of Being Forgotten by metaforest · · Score: 1

      Ya know if the kids around here knew what rot13 was this might be a good giggle for all...

    27. Re:The Importance of Being Forgotten by Anonymous Coward · · Score: 0

      Psst... FileZilla.

  2. Wouldn't... by Jaysyn · · Score: 2, Insightful

    ... Flashblock basically remove this exploits ability to infect your PC?

    --
    There is a war going on for your mind.
    1. Re:Wouldn't... by cool_story_bro · · Score: 1

      TFA says that it exploits flaws in adobe reader and acrobat, so no

      --
      You must wait a little bit before using this resource; please try again later.
    2. Re:Wouldn't... by ZirconCode · · Score: 4, Informative

      I guess this answers your question:

      "Users who visit these compromised websites and have not applied updates for known PDF and Flash Player vulnerabilities may become infected with malware"

      *sigh* Adobe...

    3. Re:Wouldn't... by Anonymous Coward · · Score: 2, Insightful

      I think Adobe (PDF and Flash) are the biggest nuisance to computers. I hate it when PDFs in firefox freeze the browser.

    4. Re:Wouldn't... by Jaysyn · · Score: 1

      So your PC can get infected whether the malign Flash code actual gets executed on your PC or not? I don't care about PDF as I don't have Adobe software installed to read them.

      --
      There is a war going on for your mind.
    5. Re:Wouldn't... by Anonymous Coward · · Score: 0

      PDFDownload helps, offers you choices whwen clicking on a pdf link.

    6. Re:Wouldn't... by Spatial · · Score: 3, Insightful

      Me too. It's crap anyway, so I turned it off and set FF to download PDFs to a folder instead.

      It's a good thing I got sick of it hanging actually, the whole PDF exploit thing came up a little after that. I still get randomly named PDFs downloading themselves sometimes, presumably they're exploit-loaded. Lately it occoured to me that, because Adobe includes a shell extension to render a preview image, simply selecting the file in Windows may be enough to trigger an exploit. Thoughts?

    7. Re:Wouldn't... by Cozminsky · · Score: 1

      I've given up on adobe acrobat reader. I'm using mozplugger and xpdf/kpdf/insert favourite pdf viewer here.

    8. Re:Wouldn't... by averner · · Score: 2, Interesting

      This is pretty much the only reason I use Chrome rather than Firefox - Chrome freezes less often when something in it acts slow.

      --
      Member of the 7 Digit UID Club
    9. Re:Wouldn't... by dnwq · · Score: 1

      No: Flashblock doesn't prevent flash applets from running, it merely hides them as soon as it can. If your connection is sufficiently fast and your computer sufficiently slow, you'll still get hit by Flash exploits. And then there's PDF exploits/misc browser holes, too.

    10. Re:Wouldn't... by jdog-usa · · Score: 1

      I believe that this is simply the Darwin theory at work in the world of computer users. Why should we fret? I, for one, welcome the extinction of those not smart enough to protect themselves.

      It's like a helmet law. "Which is even stupider, the idea behind the helmet law being to preserve a brain whose judgment is so poor, it does not even try to avoid the cracking of the head it's in." to quote Jerry Seinfeld.

    11. Re:Wouldn't... by joelmax · · Score: 4, Interesting

      Some recent adobe confirmed exploits do this. In some cases, simply mousing over the file and getting the preview alledgedly can cause infection.

    12. Re:Wouldn't... by perryizgr8 · · Score: 1

      yes, i've seen loading animations for about half a second with flashblock turned on, and then the flash object is removed.

      --
      Wealth is the gift that keeps on giving.
    13. Re:Wouldn't... by TheP4st · · Score: 2, Informative
      TFA says:

      Security experts say that if you're using a fully patched system with up-to-date security software, you should be protected from these attacks. To date, they've worked by hitting the victim with malicious PDF or Flash files.

      --
      "I have downloaded hundreds and hundreds of records, why would I care if somebody downloads ours?" Robin Pecknold
    14. Re:Wouldn't... by LordLimecat · · Score: 1

      i think that may just be incorrect. The applet doesnt start playing until you click--and it doesnt pick up somewhere in the middle. It doesnt hide them either, it leaves a placeholder that you can click to start the flash. If it was just hiding them, and they were running, they would use up CPU--which they dont.

      Its actually a lot like noscript in that regard (noscript leaves placeholders for some objects as well).

    15. Re:Wouldn't... by TreyGeek · · Score: 1

      I think Adobe (PDF and Flash) are the biggest nuisance to computers. I hate it when PDFs in firefox freeze the browser.

      Check out the FF add-on PDF Download. When you click on a link that goes to a PDF it prompts you and asks if you want to open it in the browser, save it to disk, or open in with Adobe Reader (outside the browser). No more FF lockups on PDFs for me.

    16. Re:Wouldn't... by elfprince13 · · Score: 0, Flamebait

      OS X's preview is great for viewing PDFs, and there are plenty of Linux programs for doing the same thing. It's only Windows idiots who think they *have* to install Acrobat Reader.

    17. Re:Wouldn't... by Turing+Machine · · Score: 1

      You're ignoring the scenario where the person who gets pwned has access rights to your sensitive information (bank, school, government agency, employer).

    18. Re:Wouldn't... by chaim79 · · Score: 1

      While I would appreciate the darwin theory applied to computer viruses, since they are non-fatal it doesn't really apply. All a luser does once their computer is packed full of viruses is to get a new computer, doesn't quite work...

      --
      DEMETRIUS: Villain, what hast thou done?
      AARON: Villain, I have done thy mother.
      Shakespeare invents 'your mom'
    19. Re:Wouldn't... by RpiMatty · · Score: 1

      Go to Tool->Options->Applications section.

      Look for Adobe Acrobat # Document or Application/pdf and make sure it is set to Always Ask

      No need to install an extension for this. Now you can choose Open which will download the pdf, save it to the temp dir, then open your local pdf program. Or you can choose Save and save it somewhere.

      The main reason FF will freeze is because the Adobe plugin will display the first page of the pdf as soon as it can. Then if you hit page down before the next page is finished downloading the plugin barfs and locks up FF until the pdf is downloaded or until you kill the adobereader.exe process

    20. Re:Wouldn't... by Lorens · · Score: 1

      http://www.google.com/chrome/intl/en/linux.html

      Google Chrome for Linux is in development and a team of engineers is working hard to bring it to you as soon as possible.

      Please enter your email address below and we'll let you know when it's released.

      _________________

    21. Re:Wouldn't... by Anonymous Coward · · Score: 0

      I bet you know that the freeze in embedded Acrobat reader it's because PDF does not have a preloading option, so you see the first two pages and start to scroll but the other ones are still loading so Acrobat hangs waiting for the pages to download. Other problem is that alternative PDF creators don't optimize size very well, OOo does it right btw.

      The alternatives are good but they can't handle document signing, review, screen reading, ocr or forms input/processing. If only Adobe GETS WITH THE TIMES and start to UNBLOAT their software.. you hear me Adobe! where is the multicore optimization? the 64bit versions? where?

  3. Nothing to worry about. by Anonymous Coward · · Score: 0

    I'm sure that MacAffee and Norton will have a anti-virus signature for this in no time.

  4. Sophos by Spad · · Score: 5, Informative

    According to Sophos, this particular exploit seems to be a hell of a lot more "popular" than other previous web-based malware.

  5. The problem is with Adobe... by vertinox · · Score: 5, Informative

    On OS X I don't even install the reader anymore.

    But if you use it on Windows and aren't half bothered to find a more secure PDF reader... At least turn the plugin off in Firefox

    Tools > Options > Applications

    Set all Adobe to always ask.

    --
    "I am the king of the Romans, and am superior to rules of grammar!"
    -Sigismund, Holy Roman Emperor (1368-1437)
    1. Re:The problem is with Adobe... by inglishmayjer · · Score: 1
    2. Re:The problem is with Adobe... by morgan_greywolf · · Score: 2, Insightful

      Yep. My step-daughter is always saying things like "I hate Ubuntu! It makes you load the PDF in a separate application, not right in the browser like on Windows!"

      It's a security thing! The Adobe plugins suck.

      Another way to fix the whole thing is to just use NoScript. No scripts running on a Web page == no drive-by downloads.

    3. Re:The problem is with Adobe... by drinkypoo · · Score: 4, Informative

      Install mozplugger and you can use evince to view PDFs inside of Firefox. If you install it on Ubuntu it happens automtically. It will use acroread if it's installed, I think; it will also use kpdf if you happen to be on Kubuntu, and I think xpdf for Xubuntu.

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
    4. Re:The problem is with Adobe... by hesaigo999ca · · Score: 1

      Problem is that pdfreader and flash are made by same company...and a lot of websites are stupid enough to use flash only on their websites....without even so much as some html sidelines, in case you don't have flash. So guess what ....you see u need flash, u download it, then it auto installs other stuff (common to adobe) which might share some of it with pdfreader...so even if you don't have it installed, you might have some of the components installed anyways.

    5. Re:The problem is with Adobe... by kju · · Score: 3, Insightful

      > It's a security thing! The Adobe plugin suck.

      Oh, it's a security thing. Really? Now please explain to me, why it is more
      secure to open the PDF in the standalone Acrobat Reader running under the
      same uid as your browser (and thus under the same uid as the standalone Reader).

      It would be a security thing to use another PDF reader instead of Acrobat
      Reader, but this has nothing to do with the fact if it is runs as a plugin
      or not. You can both embed Acrobat Reader and other PDF readers into the
      browser window in Linux.

      So instead of using lame excuses to your step daugther, thus making her linux
      experience bad and therefore make her dislike linux, just fix the damn box
      to show the PDF inside the browser.

    6. Re:The problem is with Adobe... by smoker2 · · Score: 3, Interesting

      Is PDF a web format ? If not then use a separate app to view them. The browser is not supposed to do everything. I have no plugins for PDF in my linux browser and my experience doesn't suck. Next you'll be wanting MS word to be viewable in the browser. Wanting something, and it being a good idea are sometimes very far removed. She probably wants a pony too, try getting that to run in a browser !

      There seems to be no word about this attack working under linux anyway.

    7. Re:The problem is with Adobe... by morgan_greywolf · · Score: 1

      I was not aware of mozplugger. *shrug*

    8. Re:The problem is with Adobe... by rhizome · · Score: 2, Informative

      or just use foxit

      same bug

      --
      When I was a kid, we only had one Darth.
    9. Re:The problem is with Adobe... by Anonymous Coward · · Score: 0

      Sounds like she nees to be beaten like a red headed step child

    10. Re:The problem is with Adobe... by Ex-Linux-Fanboy · · Score: 1

      Or Sumatra PDF, which doesn't try and get the user update to the for-pay registered version.

    11. Re:The problem is with Adobe... by Yvan256 · · Score: 2, Funny

      She probably wants a pony too, try getting that to run in a browser !

      No problemo.

    12. Re:The problem is with Adobe... by Chelloveck · · Score: 1

      On OS X I don't even install the reader anymore.

      There's only one reason why I have Adobe Reader on my Mac. It's because I don't know any other way to search through a directory full of PDFs. Is there anything else that can do it?

      (Don't bother suggesting Spotlight unless there's a way to run the search on demand rather than pre-building a big index file. I need to run this on arbitrary directories on network drives.)

      --
      Chelloveck
      I give up on debugging. From now on, SIGSEGV is a feature.
    13. Re:The problem is with Adobe... by nahdude812 · · Score: 1

      Just off the top of my head, running it in a separate process would protect from there being an exploit against the plugin communications channel. It would also mean that if there was active scripting in the PDF (Acrobat allows this), it would be substantially harder to get access to other browser data, such as the authentication cookie you have currently active to your bank account, etc.

      Exploits within a browser plugin are higher risk than exploits against the same software but not in plugin form.

    14. Re:The problem is with Adobe... by Lorens · · Score: 1

      Is PDF a web format ? If not then use a separate app to view them. The browser is not supposed to do everything.

      Well, it displays GIFs, then JPEGs, then PNGs . . ., SWFs and MPEGs seem here to stay, but is MPEG really a "web" format?

      Next you'll be wanting MS word to be viewable in the browser.

      I haven't seen a Windows machine either for a long time, but I do seem to remember "Word in browser" being new... half a dozen years ago?

      It's called plugins, and as long as formats change they are here to stay. There will be no perfect answer until something like Coyotos/CapROS finally becomes useable and puts every process into its own security domain. Or until Microsoft hires away the Coyotos lead to work on some under-wraps project called Midori... oh, sorry, that was last month. Maybe M$ will actually release a secure operating system. Some time in the next twenty years.

      There seems to be no word about this attack working under linux anyway.

      No, everyone knows vulnerabilities only exist on Windows. However asking google for CVE linux pdf returns a first result of

                                  AUSCERT External Security Bulletin Redistribution

                                            ESB-2009.0425 -- [UNIX/Linux][RedHat]
                                                  gpdf: Multiple Vulnerabilities
                                                                      1 May 2009

      Does that answer your question?

    15. Re:The problem is with Adobe... by Fish+(David+Trout) · · Score: 1
      It's called the Foxit Reader, and it, just like Adobe's Acrobat Reader, is completely free.

      (No, I don't work for them. I just got tired of Adobe's crap and gave them a try. Haven't looked back since.)

      --
      "Fish" (David B. Trout)
    16. Re:The problem is with Adobe... by Anonymous Coward · · Score: 0

      Is PDF a web format ?

      A de facto one, yes. Deal with it.

  6. Re:I don't see a problem here by sakdoctor · · Score: 1

    Server side of things could use work too.

    Uninstall the FTP server. Configure to login using public key authentication and disable passwords.

  7. You hate it when PDFs freeze Firefox? by Norsefire · · Score: 4, Funny

    I hate it when PDFs freeze Acrobat Reader.

    1. Re:You hate it when PDFs freeze Firefox? by Minwee · · Score: 1

      I hate [...] Acrobat Reader.

      And with good reason.

    2. Re:You hate it when PDFs freeze Firefox? by MoonBuggy · · Score: 1

      Which is a damn shame, since PDF is actually a decent document format.

    3. Re:You hate it when PDFs freeze Firefox? by perryizgr8 · · Score: 1

      i hate flash when i can't play hd youtube videos, even though i can watch 1080p video on vlc easily.

      --
      Wealth is the gift that keeps on giving.
  8. Google Attacks by Fantom42 · · Score: 0, Offtopic

    As the article points out, these trojans/viruses that use Google and other search engines are becoming more common. My mother got one that replaced all of the major search engine results with fake spyware and antivirus software links. I imagine its popular because its a bit subtle and pernicious. How much malware is out there that is undiscovered because the affects are more subtle? Maybe reordering search results? Replacing ads with different ones?

    For my mom, I ended up using http://www.scroogle.com/ to download AV software to fix it. Seeing it for the first time, it was surprising to me that search engine results could be corrupted in this way. (I guess not that surprising...) And, I must admint I don't know if these programs are latching on to the browser applications somehow or if they are doing it somewhere else in the OS layer. It would be interesting to find ways to prevent these symptoms in a more sophisticated way than using Scroogle (i.e., finding a search engine they hadn't considered). If these viruses are using the underlying OS, would the search engines using SSL by default be a way to do it? Or would a man in the middle attack negate that? And I'd imagine there had to be a way to lock down the browsers themselves, or at least make it difficult, from this kind of attack if that's their point of entry.

    <offtopic> When I was a kid, a friend of mine and I made two anti-virus viruses. (We didn't spread them around, just did them for research purposes.) The first one modified COMMAND.COM to expect .EXX, .MOC, and .TAB files instead of the standard ones, and then renamed all of the files on the system this way. This broke some programs, requiring a hex editor now and again, but it basically made my friend's system immune to viruses. The other one attached on a little self-CRC checker to every executable which would print a warning if another program had altered the file. Fun times. I wonder if these ideas are patented now. </offtopic>

    1. Re:Google Attacks by Anonymous Coward · · Score: 1, Insightful

      Hey! Please mention if your URLs are NSFW next time! (scroogle isn't, some porn stuff)

    2. Re:Google Attacks by Opportunist · · Score: 5, Interesting

      Trojans that modify your browser's behaviour don't care for connections or encryption thereof, because the modification happens much higher in the chain. I had a trojan to dissect that literally changed your online banking information inside the browser. You saw that you're transfering A bucks to B, while the trojan sent to the bank you're transfering C bucks to D. The bank confirmed C bucks for D, and the browser asked the user for the confirmation code to send A bucks to B.

      As soon as the browser is under the control of malware, it can manipulate your input before it is encrypted and sent through the wire, and manipulate the output after it has been decrypted and before you get to see it.

      Locking down the browser would essentially also mean that you disable anything that can inject code into running processes (createremoteprocess and the like), as well as disallow browser plugins. I doubt many people would really want that.

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    3. Re:Google Attacks by Anonymous Coward · · Score: 0

      As another poster pointed out, scroogle.org is the search site. scroogle.com is the porn site.

    4. Re:Google Attacks by LordLimecat · · Score: 2, Informative

      It does care for connections--ive seen this particular infection, and it doesnt care what browsers you install, or whether you install new ones, or use firefox portable. If http traffic leaves the computer for google | yahoo | live et al., it gets modified enroute. You get returned legitimate results in the correct order, but all the links are redirected to another site. Its browser-agnostic. I would imagine that it wouldnt care about encryption, since its on your computer and it could just do the injection after decryption takes place.

    5. Re:Google Attacks by Opportunist · · Score: 1

      Hooking one of the winsock/ws2_32 functions? Probably just rewriting the destination address?

      God, I miss being in IT-Sec... I don't even have a sample of that, I feel kinda pathetic.

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    6. Re:Google Attacks by afxgrin · · Score: 2, Informative

      Hey - thanks for the link to a nice website. :-)

  9. Re:I don't see a problem here by Norsefire · · Score: 1

    With all the better alternatives out there

    Yeah, it's not like Adobe's software is the standard in some industries. /sarcasm

  10. Don't use FTP anyways by 4D6963 · · Score: 3, Informative

    Don't use FTP anyways for anything sensitive like uploading to your website. I used to do that, then got infected by a virus of sorts. What it did was sniff the (non-encrypted) FTP packets to steal credentials, then log in and replace all the index files on the server with its malware infected version.

    That got me to of my websites to be infected and being blocked by Firefox/Google for being reported as attack sites. Now I only use SFTP/SCP.

    --
    You just got troll'd!
    1. Re:Don't use FTP anyways by Opportunist · · Score: 1

      Umm... did I get something wrong? When I'm sitting in the machine establishing an FTP connection, I don't have to sniff the wire. Either I log the keystrokes, or if it's a stored password, I hook into the FTP client and grab the password before it's sent (or, if encrypted, before it's reencrypted).

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    2. Re:Don't use FTP anyways by vertinox · · Score: 1

      Its easier to modify a browser plugg-in to sniff network activity than it is to monitor the keyboard or look at programs outside the browser.

      --
      "I am the king of the Romans, and am superior to rules of grammar!"
      -Sigismund, Holy Roman Emperor (1368-1437)
    3. Re:Don't use FTP anyways by hesaigo999ca · · Score: 0, Redundant

      Thats if the ISP u r signed up with offers sftp...godaddy...you have to pay more for that service...you woudl think it isnt that much more to offer their clients security for the same price...but wow....how bad does it have to get before they make these options standard for any website?

    4. Re:Don't use FTP anyways by LordLimecat · · Score: 1

      If someone compromises a single machine on either end--server (hosting company) end or locally-- they can fire up Cain and arp poison the switch to grab all the traffic they want. Presumably this can be done with cable connections for the local network, tho ive never tried--but Ive certainly seen a hosting company compromised by a single one of their customers, whose servers were discovered running Cain.

      Password sniffing is a real threat, and is easier to pull off than keylogging.

    5. Re:Don't use FTP anyways by Anonymous Coward · · Score: 0

      Ugh. Learn how to spell, dumbshit.

    6. Re:Don't use FTP anyways by Richy_T · · Score: 1

      Yeah, that's almost as dumb as charging customers for tone dialing when your equipment can handle it much easier than pulse dialing in the first place (though both are an anachronism)

    7. Re:Don't use FTP anyways by hesaigo999ca · · Score: 1

      I agree, they try to make up all these excuses, like offering dedicated servers if you want to run cgi scripts or updating the server to be able to run flash.....sometimes, they have to come up with novel ways to charge for stuff you normally should have with the base service.

  11. SFTP FTW by Maarek+Stele · · Score: 0

    I have SSH enabled on my server, nothing has gotten by according to my log files.

    --
    "Be who you are and say what you feel, because those who mind don't matter and those who matter don't mind." -Dr. Seuss
  12. PDF and FTP by aethelwyrd · · Score: 1

    Two of the most secure technologies on the interwebs...

  13. DON'T CLICK LINK IN PARENT POST (NSFW) by Anonymous Coward · · Score: 5, Informative

    This may not have been intentional, but the Scroogle link in parent post is wrong, and goes to a site that is NSFW.

    Correct link is here.

    1. Re:DON'T CLICK LINK IN PARENT POST (NSFW) by Fantom42 · · Score: 1

      Ack!

      Whoops!

      Sorry about that!

    2. Re:DON'T CLICK LINK IN PARENT POST (NSFW) by Anonymous Coward · · Score: 1, Informative

      You understand that now, thanks to you, people will intentionally click on the OP's link. And fill firefox with tabs from that page. For about 5 minutes or so.

  14. stuck with adobe by coulbc · · Score: 1

    Consider an organization where every desktop has the full version of adobe acrobat and flash player. Both are pushed out with GPO's. Thank god I can push the updates.

    1. Re:stuck with adobe by Norsefire · · Score: 2, Insightful

      Consider an organisation, such as a newspaper or print company, where Adobe's software is the industry standard.

    2. Re:stuck with adobe by rdnetto · · Score: 1

      Adobe's software is the industry standard

      Don't you mean Adobe's file format (i.e. PDF)?
      There are plenty of other programs which support it that are both more secure and less bloated than Acrobat. One that I recommend is Foxit.

      --
      Most human behaviour can be explained in terms of identity.
    3. Re:stuck with adobe by Anonymous Coward · · Score: 0

      I think you missed the point that the gp was making. Newspaper industry = going extinct, Adobe software = Not helping the matter.

    4. Re:stuck with adobe by Norsefire · · Score: 2

      No, software such as indesign and photoshop. Alternative PDF readers are fine for casually looking at downloaded PDFs but I haven't found one yet with the features Acrobat pro has; the bloat you mention are feautures people in some industries actually use.

    5. Re:stuck with adobe by Anonymous Coward · · Score: 0

      Rock on Norsefire, Print people represent!

  15. A little warning by Anonymous Coward · · Score: 3, Informative

    I got infected with this piece of shit (or some other very similar piece of shit) because malicious code on a website somehow forced Adobe Reader to open a PDF, although Foxit had been my default PDF reader for months (in conjunction with the PDF Download add-on, which was somehow circumvented as well).

    Sure, I should have been suspicious instead of just annoyed at AR opening out of the blue. And sure, I should have uninstalled AR when I started using Foxit, instead of just letting it sit on my computer. This is just a warning to other people that are as stupid as me.

    1. Re:A little warning by Anonymous Coward · · Score: 0

      With some PDFs, FoxIt doesn't work as well (formatting issues). I've used FoxIt for quite some time, but still have Adobe loaded JIC.

      I assume that Adobe Reader launched via a call from Flash?

      And if that's where the attack begins, what is the Flash replacement?

  16. Google Attacks (With Corrected Link) by Fantom42 · · Score: 2, Insightful

    (Reposted with Correct Link)

    As the article points out, these trojans/viruses that use Google and other search engines are becoming more common. My mother got one that replaced all of the major search engine results with fake spyware and antivirus software links. I imagine its popular because its a bit subtle and pernicious. How much malware is out there that is undiscovered because the affects are more subtle? Maybe reordering search results? Replacing ads with different ones?

    For my mom, I ended up using http://www.scroogle.org/ to download AV software to fix it. Seeing it for the first time, it was surprising to me that search engine results could be corrupted in this way. (I guess not that surprising...) And, I must admint I don't know if these programs are latching on to the browser applications somehow or if they are doing it somewhere else in the OS layer. It would be interesting to find ways to prevent these symptoms in a more sophisticated way than using Scroogle (i.e., finding a search engine they hadn't considered). If these viruses are using the underlying OS, would the search engines using SSL by default be a way to do it? Or would a man in the middle attack negate that? And I'd imagine there had to be a way to lock down the browsers themselves, or at least make it difficult, from this kind of attack if that's their point of entry.

      When I was a kid, a friend of mine and I made two anti-virus viruses. (We didn't spread them around, just did them for research purposes.) The first one modified COMMAND.COM to expect .EXX, .MOC, and .TAB files instead of the standard ones, and then renamed all of the files on the system this way. This broke some programs, requiring a hex editor now and again, but it basically made my friend's system immune to viruses. The other one attached on a little self-CRC checker to every executable which would print a warning if another program had altered the file. Fun times. I wonder if these ideas are patented now.

  17. nice work by Odd_Sam · · Score: 0, Flamebait

    Kudos to the author of this virus. The mindset that is behind such a hack is quite insane. I mean nobody would expect for a google search link to have been hijacked. Before you know it they'll have a way for your facebook to get malware. Anyone who got hit by this attack surly had it coming IMO.

  18. Re:I don't see a problem here by pnewhook · · Score: 1

    With all the better alternatives out there, anybody who uses Adobe software deserve to get malware. Think of it as evolution in action.

    Actually I was thinking the same thing but about ftp. I can't remember the last time I needed to use an ftp client. Must be at *least* 5 years ago - probably more.

    --
    Tesla was a genius. Edison however was a overrated hack who liked to torture puppies.
  19. 6 website infected with this last month by foniksonik · · Score: 5, Informative

    I had 6 websites infected by this last month. Flash and PDF downloads starting in iframes offscreen.... based out of China.

    Not sure if it was a web exploit or ftp login theft. We looked at both early on as the footprint was confusing in that things were happening that shouldn't be possible without direct access to the server via ftp.

    We changed all passwords to be sure that there weren't any old ones floating around on insecure PCs in the company or with clients, then updated all applications do remove any known exploits. Then added in rewrite rules to stop libwww and other known agents from accessing any files via the web.

    Seems to have worked, no more exploits happening (lots of tagging was happening in addition to Gumblar).

    It's odd that it took so long for this advisory to come out though. Maybe we should have reported it but we did not know it was new as both exploits were known at the time, just no connected with a specific initiative by a hacker/botnet.

    --
    A fool throws a stone into a well and a thousand sages can not remove it.
    1. Re:6 website infected with this last month by Renraku · · Score: 1

      Because Adobe still hasn't fixed their kludged/messy/slow/buggy/piecemeal program that is Adobe Acrobat and Adobe Acrobat Reader. Other companies instead stepped in and made free readers that use up much less resources and won't get your machine owned.

      --
      Job? I don't have time to get a job! Who will sit around and bitch about being broke and unemployed then?
    2. Re:6 website infected with this last month by Anonymous Coward · · Score: 0

      Bullshiat

  20. How do you know you're infected? by BenoitRen · · Score: 1

    I haven't seen malware links on Google, but I'm wondering if I'm infected because I don't regularly update Flash on my laptop (I don't have Flash on my main PC).

  21. You're still using Adobe Reader? by Toad-san · · Score: 1

    Shame on you! Get a free reader that isn't so vulnerable.

    1. Re:You're still using Adobe Reader? by andi75 · · Score: 2, Interesting

      Which one should I use? Is FoxIt's reader any better? I suspect it also has some vulnerabilities but gets less attention from the bad guys because Acrobat's Reader is much mode widely used.

    2. Re:You're still using Adobe Reader? by fluffman86 · · Score: 2, Informative

      In Windows, I like Sumatra. It's smaller and faster than Foxit, and doesn't allow javascript and crap that causes problems in Adobe Reader. It does, however, sometimes have trouble rendering some more complicated pdf's, but you could always keep foxit around for that rare occasion.

    3. Re:You're still using Adobe Reader? by Runaway1956 · · Score: 1

      "I suspect it also has some vulnerabilities but gets less attention from the bad guys because Acrobat's Reader is much mode widely used."

      Precisely. Using the most popular, and being part of the crowd, marks you as prey for the predators.

      I use Foxit and Sumatra. Haven't installed Adobe PDF products in years - literally. I would stop using Flash, but often times I'm just to lazy to download a version for VLC. Besides which, some sites seem to block access by any means other than Adobe Flash.

      --
      "Windows is like the faint smell of piss in a subway: it's there, and there's nothing you can do about it." - Charlie Br
    4. Re:You're still using Adobe Reader? by ais523 · · Score: 1

      Well, my experience has been that Linux PDF readers work much better than Windows PDF readers. I don't use Foxit because I don't like the licensing of it; Adobe Reader is awful as always, and Sumatra is nice although its UI needs work and it often renders differently to other readers. On the other hand, both Evince and KPDF are excellent at reading PDFs; they get out of the way and render PDFs as I expect them to render. (I wonder if KPDF is available for Windows yet, or if it will be in the future? That might be worth looking at...)

      --
      (1)DOCOMEFROM!2~.2'~#1WHILE:1<-"'?.1$.2'~'"':1/.1$.2'~#0"$#65535'"$"'"'&.1$.2'~'#0$#65535'"$#0'~#32767$#1"
    5. Re:You're still using Adobe Reader? by sabt-pestnu · · Score: 1

      My reaction to sites which are only accessible via Flash are 1) a complaint to the webmaster, if I can find even that much, and 2) to not use that site.

      If they're so feeble as all that, then they deserve what they get.

    6. Re:You're still using Adobe Reader? by Swave+An+deBwoner · · Score: 1
      I have never used Foxit but out of curiosity after reading your post, I downloaded their "Foxit Reader 3.0 for Windows" user manual just to read the license. It looks pretty innocuous to me. What don't you like about it?

      Well, my experience has been that Linux PDF readers work much better than Windows PDF readers. I don't use Foxit because I don't like the licensing of it; Adobe Reader is awful as always, and Sumatra is nice although its UI needs work and it often renders differently to other readers. On the other hand, both Evince and KPDF are excellent at reading PDFs; they get out of the way and render PDFs as I expect them to render. (I wonder if KPDF is available for Windows yet, or if it will be in the future? That might be worth looking at...)

    7. Re:You're still using Adobe Reader? by ais523 · · Score: 1

      I don't like features-withheld-until-paying programs; it means that the manufacturers have deliberately made the program worse than it could be. I may be unusual on this, though, I suppose.

      --
      (1)DOCOMEFROM!2~.2'~#1WHILE:1<-"'?.1$.2'~'"':1/.1$.2'~#0"$#65535'"$"'"'&.1$.2'~'#0$#65535'"$#0'~#32767$#1"
  22. GOOG is Madoff by Anonymous Coward · · Score: 0

    That sounds like a pretty ineffective virus because no one in the history of the Internet has ever clicked a text ad, ever. Seriously. Name one person who has clicked AdSense on purpose. Name one person who has clicked AdSense and then bought something. I don't believe it has ever happened, other than a proof of concept at the Googolplex.

  23. Adobe Reader 9.1.1 not installed by default! by AxelBoldt · · Score: 5, Interesting

    In their security alert, Adobe urges people to upgrade from Adobe Reader 9.1.0 to 9.1.1. If you install Reader from their main download site, they still give you 9.1.0. The 9.1.1 update is available only if you follow the links at the bottom of the security alert. Insecurity through obscurity!

    1. Re:Adobe Reader 9.1.1 not installed by default! by Anonymous Coward · · Score: 0

      *Ashamed*

      There's a lot of truth to this.

      I actually got hit by an infected PDF yesterday. Just installed the Win 7 release candidate a week ago or so, installed Abobe reader (after the patch came out) and had Firefox setup to auto-open PDF files instead of using the embedded reader.

      Sure enough, I had 9.1.0 because I had never been prompted to install the patch (and I foolishly assumed they distributed the patched version.)

      I was on a safe/respectable website when an ad network served a PDF link in an iframe. I was probably fine (no admin).

      Went ahead an reformatted to be safe, didn't lose anything. But I'm frustrated that Adobe would have their download page distributing a vulnerable product while there was a patched version available.

  24. What is is NSFW? by Snaller · · Score: 1, Informative

    What is is NSFW?

    --
    If Google really cared they would fix Android Chrome to reflow text, instead of discriminating
    1. Re:What is is NSFW? by Rashdot · · Score: 4, Funny

      Just scroogle it.

      --
      This is not the sig you're looking for.
  25. I've seen this. by rincebrain · · Score: 5, Informative

    I got to clean out a system with this about a week ago. It was really nasty.

    The worst part was that I spent the better part of two days trying to figure out why the search links were still being poisoned, even after nothing on several LiveCDs found anything...it turned out that it had installed an invisible Firefox plugin/extension which was doing it.

    Exciting, huh?

    --
    It's only an insult if it's not true.
  26. Huh? by cl0s · · Score: 1

    People still use FTP? I'm not saying your totally safe with SFTP, but I haven't used FTP in I don't know how long! For ssh/sftp it's gotten to a point where I just use SCP command line, with the exception of connecting through Nautilus once in a while.

  27. One slight problem by professorguy · · Score: 1

    No scripts running on a Web page == no drive-by downloads

    Unfortunately, with most 'modern' websites...

    No scripts == no working links
    No scripts == no images
    And more often than not
    No scripts == no content (blank page)

    But you sure won't get drive-bys. Of course, just leaving the machine off has the exact same effect. And is about as useful.

    (I use FF3 w/noscript, abp & noflash)

  28. I have the perfect answer. by BenFenner · · Score: 1

    Good thing I never moved on from Altavista. I use Mapquest, my ISP e-mail, etc.
    Every Google problem makes me laugh. I don't ever touch their services.
    Then again, I'm still using WinZip 7.0, AIM 5.9, WinAmp 5.0, etc.

  29. ZOMG! 9-11! by Anonymous Coward · · Score: 0

    ZOMG! 9-11!

  30. These people are morons. by Neanderthal+Ninny · · Score: 1

    I see that they are taking advantage of unsecure websites and security holes to propagate this crap.
    I have several websites that I regularly visit compromised by this.
    May these people be sent somewhere experience long term "extraordinary rendition".

  31. excuse me but by KingBenny · · Score: 1

    how does this affect my linux desktop ?

    --
    Free speech was meant to be free for all... how can anyone grow up in a nanny state ?
  32. No asshole moderator by Snaller · · Score: 1

    Its not redundant - the posters shouldn't use obscure abbreviations when people don't know what it means.

    --
    If Google really cared they would fix Android Chrome to reflow text, instead of discriminating