Slashdot Mirror


AVG Fakes User Agent, Floods the Internet

Slimy anti-virus provider AVG is spamming the internet with deceptive traffic pretending to be Internet Explorer. Essentially, users of the software automatically pre-crawl search results, which is bad, but they do so with an intentionally generic user agent. This is flooding websites with meaningless traffic (on Slashdot, we're seeing them as like 6% of our page traffic now). Best of all, they change their UA to avoid being filtered by websites who are seeing massive increases in bandwidth from worthless robots.

928 comments

  1. F5 IRule by Precision · · Score: 5, Informative

    For anyone that happens to run a site behind an F5 BigIP, here's a nice little IRule to nuke this horrible crap from orbit.

    rule IRULE_block_avg-prefetch {
          when HTTP_REQUEST {
            set ::avg_useragents [list \
                    "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" \
                    "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;1813)" \
                    "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" \
                    "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;1813)" \
            ]

            if { ![HTTP::header exists "Accept-Encoding"] } {
                    if { [matchclass [HTTP::header User-Agent] equals $::avg_useragents] } {
                            reject
                    }
            }
    }

    --
    - U
    1. Re:F5 IRule by rvw · · Score: 4, Funny

      Another suggestion I read somewhere else is to redirect all traffic to the AVG website. That will teach them!

    2. Re:F5 IRule by Snerdley · · Score: 1, Informative

      For the record, this is a REALLY bad idea.

      It will block all traffic from legitimate IE6 users, and if you have a $20K router, you probably don't want to do that.

      If you read the links in the article (and some comments further down), there are things you can do to block this, including blocking requests with these UAs that also have odd or missing headers, cookies, etc.

    3. Re:F5 IRule by Anonymous Coward · · Score: 0

      I find it hilarious that they prefix the user-agent with "User-Agent: ". It's like they want it to be blocked. Anyway, that POS bot has a broken parser and keeps seeing URLs which are not actually there. The incompetence at that AVG outfit is staggering.

    4. Re:F5 IRule by Bandman · · Score: 0

      I think if you check, those user agent strings are unique to AVG.

    5. Re:F5 IRule by snl2587 · · Score: 0, Troll

      Can anyone please tell me why we need to support IE6?

    6. Re:F5 IRule by Em+Ellel · · Score: 5, Informative

      For the record, this is a REALLY bad idea.

      It will block all traffic from legitimate IE6 users, and if you have a $20K router, you probably don't want to do that.

      If you read the links in the article (and some comments further down), there are things you can do to block this, including blocking requests with these UAs that also have odd or missing headers, cookies, etc.

      LOL, perhaps you might want to READ the rule before replying - it is NOT blocking all IE6 users, just the ones that are missing "Accept-Encoding" header

      -Em

      --
      RelevantElephants: A Somatic WebComic...
    7. Re:F5 IRule by afidel · · Score: 4, Informative

      I think someone did since free.grisoft.com has been down all day today! My AVG is complaining about not being able to get it's updates. Oh and the plugin REALLY freaking slows down FF on Google results so I turned the damn thing off. I guess I know why now!

      --
      There are 4 boxes to use in the defense of liberty: soap, ballot, jury, ammo. Use in that order. Starting now.
    8. Re:F5 IRule by Precision · · Score: 4, Informative

      Actually all browsers send the Accept-Encoding HTTP header, which AVG does not.. if you look at the rule you'll see that it checks for the existence of that head and only blocks if it doesn't exist.

                      if { ![HTTP::header exists "Accept-Encoding"] {

      --
      - U
    9. Re:F5 IRule by Anonymous Coward · · Score: 1, Informative

      The first one isn't. I wouldn't mind seeing a wide-spread block of that user agent, but a business will probably want to avoid losing those customers.

    10. Re:F5 IRule by Snerdley · · Score: 1

      Fair enough, my bad!

    11. Re:F5 IRule by brunascle · · Score: 1

      I'm looking a log files of thousands of them, and I dont see the words "User-Agent". I think that's a mistake in the article. I only see:
      Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;1813)
      Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)

    12. Re:F5 IRule by Snerdley · · Score: 1

      Hate to reply to my own post, but as pointed out below, I missed the "Accept-Encoding" line and was focused on the UA Strings.

      *dons Ass Hat*

      Sorry about that!

    13. Re:F5 IRule by Darkness404 · · Score: 5, Insightful

      Because it is a browser that people use... The same thing could be said on why should we have to support Konqueror, or the Mozilla Suite, or Seamonkey, why not even block Safari just because we can. Basically, IE6 is a browser, it is even a popular browser. And saying we should block it is like saying we should block Firefox 1.5 and earlier and hey! Firefox 3 is out now, lets block Firefox 2!

      --
      Taxation is legalized theft, no more, no less.
    14. Re:F5 IRule by Em+Ellel · · Score: 3, Informative

      Can anyone please tell me why we need to support IE6?

      Because according to stats on one of my relatively high traffic sites - IE6 is still about 37.64% of the IE traffic (or more than 1/4 of ALL traffic). Sad but true.

      -Em

      --
      RelevantElephants: A Somatic WebComic...
    15. Re:F5 IRule by TriggerFin · · Score: 1

      To sell your product. Otherwise, go ahead and block everything that isn't what you use.

      --
      Here's your sig.
    16. Re:F5 IRule by Snerdley · · Score: 1

      Yes, I know
      Mea Culpa, Mea Culpa

    17. Re:F5 IRule by larry+bagina · · Score: 1

      The rule doesn't just check the usear agent, it also checks for a missing Accept-Encoding header.

      --
      Do you even lift?

      These aren't the 'roids you're looking for.

    18. Re:F5 IRule by J'raxis · · Score: 1

      It appears to be blocking the IE user agent only if the "Accept-Encoding" header is missing -- something I presume differentiates the real IE from the AVG "IE".

    19. Re:F5 IRule by eakerin · · Score: 2, Interesting

      The question is, how much of that 37.64% is actually AVG in disguise...

    20. Re:F5 IRule by snowraver1 · · Score: 4, Informative

      I am typing this comment into IE6 right now. At my company IE6 is the standard. I had upgraded to IE7 a while ago (TABS!) and someone came up and asked me to uninstall it.

      Sometimes the choice of browser is beyond the user's control.

      --
      Copyright 2010. All rights reserved. This comment may not be copied in any way including, but not limited to caching.
    21. Re:F5 IRule by j-pimp · · Score: 1

      I am typing this comment into IE6 right now. At my company IE6 is the standard. I had upgraded to IE7 a while ago (TABS!) and someone came up and asked me to uninstall it.

      If they care enough to ask you to to uninstall it, why do they trust you with local admin privileges. Either you not allowed to and you can't or your allowed to and you can.

      --
      --- Justin Dearing http://www.justaprogrammer.net/ We're just programmers.
    22. Re:F5 IRule by Anonymous Coward · · Score: 4, Insightful

      Actually this is quite close a real solution :) what AVG should have done is cache the scan results from each page. Thus if a user tries to access a page it should first query AVG for a result. ( the result here is- OK page or not OK to visit page)

      If a result exists in cache, no need to scrape the page. If there is no result in the cache, both AVG server and Client (to avoid trust issues) should query and compare results. The cache should periodically refresh and use multiple different UAs to avoid gaming. Quite a nice solution if you ask me ;) I knew I should have take up consulting instead of this damn Ph.D..

      Also AVG are not slimly, the spyware/trojan/malware site operators are. Not to mention Norton/Symantec/Kaspersky et al.. The feature can easily be turned off and its purpose is to help the user at no $ cost. Besides, which self respecting /.-er needs anti virus

    23. Re:F5 IRule by Dmala · · Score: 4, Insightful

      LOL, perhaps you might want to READ the rule before replying - it is NOT blocking all IE6 users, just the ones that are missing "Accept-Encoding" header

      So doesn't this render the link scanner completely useless? I assume someone looking to dodge the AVG scanner for eeeeeevil purposes can just do the same thing, no?

    24. Re:F5 IRule by bberens · · Score: 2, Funny

      Probably smaller than the portion which is Firefox in disguise. :)

      --
      Check out my lame java blog at www.javachopshop.com
    25. Re:F5 IRule by snowraver1 · · Score: 4, Insightful

      There is an error with your logic. Just because I *could* delete all our site data (for example), does not give me permission to do so. Companies have standards to keep everything somewhat similar. I was actually impressed that someone was actually monitoring what people have on their systems.

      --
      Copyright 2010. All rights reserved. This comment may not be copied in any way including, but not limited to caching.
    26. Re:F5 IRule by Anonymous Coward · · Score: 0

      And so, the cat and mouse game continues.

    27. Re:F5 IRule by ConceptJunkie · · Score: 5, Funny

      You've got an actual Ass Hat? Where'd you get it? I could order a couple hundred because a lot of people deserve them.

      In fact, let's spam the White House and Congress with a million Ass Hats. I'm sure some enterprising person could design a hat that resembles the south end of a north-bound mule.

      --
      You are in a maze of twisty little passages, all alike.
    28. Re:F5 IRule by jamie · · Score: 4, Informative

      Not a typo, here's a clip from a short period last night before Slashdot banned it:

      | user_agent                                                          | count(*) |
      | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)             |      339 |
      | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;1813)             |       57 |
      | User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) |      273 |
      | User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;1813) |       15 |
      4 rows in set (0.03 sec)

    29. Re:F5 IRule by cthulu_mt · · Score: 2, Informative

      The site* I admin runs even higher than that. We get about 90% IE6, 5% IE7, 3% FF and 2% Safari.
      Most people and major companies hate upgrading.


      *A marketing data service accessed by most of the major CPG retailers and manufacturers in the US.

      --
      Virginia is for lovers. EVE is for griefers.
    30. Re:F5 IRule by Stellian · · Score: 4, Interesting

      Another suggestion I read somewhere else is to redirect all traffic to the AVG website

      Instead of punishing the site, you could punish the users of this crappy code. Make an invisible href somewhere in you page, that triggers a script that does a temporary IP-ban. Since AVG will follow any href, when the user tries to access the site, he gets the message:
      Sorry AVG user, your antivirus is abusive and wastes our resources. Disable AVG and come back.

      If a few important sites do this AVG's user-base will drop in a week to about 100 people.

    31. Re:F5 IRule by oliderid · · Score: 2, Funny

      # But don't forget to identify user_agent first :-)
      header ('HTTP/1.1 301 Moved Permanently');
      header ('Location: '."http://www.grisoft.com/");

    32. Re:F5 IRule by Anonymous Coward · · Score: 0

      What exactly is an "ass hat" and how do you keep it perched on your ass while walking? Can I get an ass top hat? How about putting a feather in your ass hat for that jaunty ass hat look?

    33. Re:F5 IRule by Anonymous Coward · · Score: 0

      Good idea. Then we can get some work done!

    34. Re:F5 IRule by Homr+Zodyssey · · Score: 4, Interesting

      I had a similar experience at my previous employer. This was a global fortune 500 company, and I was on the local site's IT team. I was sent an email from the global IT team saying that Firefox had been detected on my machine, this was unauthorized software and I needed to uninstall it. Being a developer, I was generally allowed to install whatever tools I needed to get my job done, and therefore had administrator priveliges. However, the Global IT deparment didn't know me from Suzie in purchasing.

      I simply went to my manager, who was an open-source/Linux nut. He emailed the Global IT people and told them it was "required for my job" (which it wasn't).

    35. Re:F5 IRule by RanCossack · · Score: 1

      I read that suggestion, too, back when the AVG User Agent was unique and never changed. I get the impression that the past state of affairs being the past state of affairs is due to that advice being followed.

    36. Re:F5 IRule by Em+Ellel · · Score: 4, Informative

      The question is, how much of that 37.64% is actually AVG in disguise...

      I thought of that - answer is none. These stats are from actual browsers executing javascript - which AVG does not.

      -Em

      --
      RelevantElephants: A Somatic WebComic...
    37. Re:F5 IRule by j-pimp · · Score: 1

      There is an error with your logic. Just because I *could* delete all our site data (for example), does not give me permission to do so. Companies have standards to keep everything somewhat similar. I was actually impressed that someone was actually monitoring what people have on their systems.

      Ok perhaps its not totally black and white. However, I find this particular case, a particular version of IE a bit disturbing. Then again, I've never worked for a company large enough to have a reason to care. Perhaps they were thoroughly testing each individual web app the company used.

      --
      --- Justin Dearing http://www.justaprogrammer.net/ We're just programmers.
    38. Re:F5 IRule by Ares · · Score: 1

      I'm sure some enterprising person could design a hat that resembles the south end of a north-bound mule.

      Hey now. Don't exclude the GOP. We need south ends of north-bound elephants as well.

      Ya know. Fair and balanced and all that.

    39. Re:F5 IRule by Pentahex · · Score: 1

      I'am reading this from work. Here, I have not choice. It's IE6 or nothing.

    40. Re:F5 IRule by springbox · · Score: 1

      I have a better idea. The new "feature" ("Safe Surf") is total crap. AVG's FAQ tells you how to remove the component from an installation: avg_free_stf_*.exe /REMOVE_FEATURE fea_AVG_SafeSurf

    41. Re:F5 IRule by Anonymous Coward · · Score: 0

      Obvious troll is obvious.

    42. Re:F5 IRule by Anonymous Coward · · Score: 0

      Your company needs to get with the times, buddy. What is it, just a bunch of geezers?

    43. Re:F5 IRule by griffjon · · Score: 1

      Yeah I turned that off; I only wish I could get AVG to stop complaining that I turned it off.

      --
      Returned Peace Corps IT Volunteer
    44. Re:F5 IRule by Anonymous Coward · · Score: 0

      Precision, I think you need to give up on this one.

    45. Re:F5 IRule by klubar · · Score: 5, Informative

      Don't deactivate in AVG contol panel, just disenable the add on in IE or FF. For IE, Tools->Manage Add-ons...->Enable or disable add-ons then disable the AVG control. Probably something similar for FF.

      Actually this is in their support file.

    46. Re:F5 IRule by springbox · · Score: 3, Informative

      Oops. The command should be:

      avg_free_stf_*.exe /REMOVE_FEATURE fea_AVG_SafeSurf /REMOVE_FEATURE fea_AVG_SafeSearch

      Because the second part looks like a copy of the first part.

    47. Re:F5 IRule by gmcraff · · Score: 2, Informative

      I recommend using a data class rather than setting a global variable.

      Data classes are compiled at configuration load and are static, whereas setting the global variable with each firing of the event absorbs a small amount of processing time to reset the variable. Setting global variables can also move TMM into a slower processing regime. As the HTTP_REQUEST event is very 'inner loop', it is best to optimize it as much as possible.

      If you absolutely have to set a global variable with a semi-fixed value, I recommend doing it during the RULE_INIT event.

      (As of July 1st, F5 is offering expanded iRule support to Premium and Premium Plus support contract holders. Call in with your troublesome iRules, and you have a somewhat decent chance of ending up with me at the other end of the phone.)

    48. Re:F5 IRule by lawn.ninja · · Score: 5, Insightful

      I'll tell you why they did it. It's because at the current time some of their other interfaces have not been upgraded and are not compatible with IE7. You may not even use them, but if someone sees IE 7 on your desktop, they want it on theirs and so on and so forth. It's not that anyone in their right mind wants to keep IE 6 around, but it is likely that is what is currently supported according to their corporate image. It also has to do with preserving standards and how the techs support your PC and the efficiency of how it is supported. Bleeding edge doesn't happen in corporate environments, hell leading edge doesn't even happen most of the time. Its slow and steady movements forward. If you jumped on the bandwagon for every new upgrade your network would be a mess and would show no signs of a standard. Software is tested in corporations, with everything else that already exists inside the shop. They even have a position dedicated to just that task. They are commonly called desktop engineers. They typically spend a good part of their workday developing and testing products to integrate into the desktop standard image. This is because something as simple as a non supported browser can cause a user all sorts of issues and then cost hours of time (read: money) for the tech to diagnose it. This is why you pay for an IT department, there are many headaches the user never sees and it is because we work it out first.

    49. Re:F5 IRule by DikSeaCup · · Score: 1

      Thing is, I have some machines (no .NET whatsoever) that report the SV1 UA.

      I found this out when I started to deal with some issues from AVG not properly interpreting certain javascript in use on my employer's site, which let to AVG doing strange recursive lookups.

    50. Re:F5 IRule by Jeff+DeMaagd · · Score: 4, Interesting

      That doesn't work for me. I'm moving away from AVG just because it's suddenly more work than it is worth. AVG 8 is what did it for me, everything before was fine with me. The link scanning was irritating, turning it off triggers a non-removeable notice that I don't need to see. I don't remember being asked if I wanted the search bar in Firefox, and I install using the "advanced" mode.

      The biggest thing is that a virus scan noticeably lugs down my computer, which is an accomplishment because I've never had that with any other program.

    51. Re:F5 IRule by plague3106 · · Score: 4, Insightful

      Nice idea, except I simply won't come back to the site, as I suspect many other AVG users would not do. The novices out there will read your message as "Sorry AVG user, your antivirus is abusive and wastes our resources. Disable AVG and come back so we can infect your machine!"

    52. Re:F5 IRule by ArhcAngel · · Score: 4, Informative

      you could punish the users of this crappy code.

      The users of this crappy code are almost certainly happily unaware of any problem they may be causing. I have used and recommended AVG for a number of years to people I have had to reinstall Windows due to the amount of true crapware they are infected with. I upgraded to version 8 a couple of months ago and wasn't even aware of the feature until I pulled up a google search and noticed the little green check marks. I quickly located and disabled the feature because it slowed my browsing down but I could see how someone could see this as a valuable tool. You want to punish someone for using a tool that will most likely prevent them from becoming part of a botnet yet again because the tool maker has added a good feature in theory that has a negative side effect. Doesn't most medication have a long list of possible undesirable side effects? So which is worse, a horde of zombie computers controlled by malicious hackers or a bunch of unknowing PC users who's AV software pre-checks the web site they are thinking about going to and telling them whether it is safe or not? I know which I'd rather be if I were technically challenged.

      Sorry AVG user, your antivirus is abusive and wastes our resources. Disable AVG and come back.

      Actually all you need to do is uninstall the link scanner feature.

      --
      "A person is smart. People are dumb, panicky dangerous animals and you know it." - K
    53. Re:F5 IRule by ConceptJunkie · · Score: 1

      Hey, I was referring to the "ass" part of of the hat in a double-entendre way. Frankly, I think both parties are full of asses, although the elephant Ass Hat is a good idea.

      --
      You are in a maze of twisty little passages, all alike.
    54. Re:F5 IRule by Anonymous Coward · · Score: 0

      And that's what most poeple should probably do. Just turn it off. And all the people wanting to and doing malicious things because of Linkscanner should grow up and educate people to just turn that particular feature off. Simple solution and you don't look like a malicious, self centered little punk.

    55. Re:F5 IRule by sjames · · Score: 4, Informative

      I liked the suggestion on the reader comments to add <iframe src="http://www.google.com/search?num=100&q=site:grisoft.com" width="1" height="1"></iframe> to your pages.

    56. Re:F5 IRule by slapout · · Score: 1

      I thought that IE7 was uninstallable.

      --
      Coder's Stone: The programming language quick ref for iPad
    57. Re:F5 IRule by StarkRG · · Score: 1

      Your company is insane.

      Or just stupid.

      Nobody who knows anything about IE and is mostly sane would ever make IE standard. Have the option, sure, but you should STRONGLY recommend people not use it.

      Perhaps the problem is that someone's written an internal app that only runs on IE. They should be fired. At my work there are a couple internal apps that have full functionality only when used in Firefox (it'll still work, but with less functionality, in IE).

    58. Re:F5 IRule by griffjon · · Score: 1

      Yeah AVG8 really torqued me; the whole "pay us money or spend half an hour hunting and jumping through loops to find the free version" really did not put me in my best of moods. There's a trick further down to getting rid of the alert problem.

      what are other free AV systems (other than Clam)?

      P.S. Yes, I'm moving to a Linux and Mac only household, but until I can afford a system powerful enough to do decent virtualization I'll be keeping my XP box alive. Telling me to dump microsoft is preaching to the choir here.

      --
      Returned Peace Corps IT Volunteer
    59. Re:F5 IRule by Ares · · Score: 1

      yeah i kind of figured that. i just couldn't resist. :)

    60. Re:F5 IRule by initdeep · · Score: 2, Informative

      no
      not only wrong but dead wrong

      http:\\free.avg.com

      and the old http:\\free.grisoft.com forwards to it.

    61. Re:F5 IRule by Anonymous Coward · · Score: 0

      Straight from the horse's mouth:
      How to disable the AVG add-on in my Internet Browser? or How to install AVG without LinkScanner?
      http://free.avg.com/ww.faq.num-1241

    62. Re:F5 IRule by Fulcrum+of+Evil · · Score: 1

      why would the site owner care? It's traffic that mostly isn't initiated by the user.

      --
      "We returned the General to El Salvador, or maybe Guatemala, it's difficult to tell from 10,000 feet"
    63. Re:F5 IRule by TriezGamer · · Score: 2, Informative

      You obviously know very little about the average user. It is because the average user readily follows random instructions that virus software is so important in the first place.

    64. Re:F5 IRule by Lehk228 · · Score: 1

      that would mean sending all your web traffic to AVG.

      no thanks

      --
      Snowden and Manning are heroes.
    65. Re:F5 IRule by halcyon1234 · · Score: 1

      I assume someone looking to dodge the AVG scanner for eeeeeevil purposes can just do the same thing, no?

      Which makes the scanner overall pretty useless. Thus, it should just be disabled. It was a stupid idea to begin with.

    66. Re:F5 IRule by mpeskett · · Score: 1

      Checked mine, says its not compatible with FF3

      No action required :-)

    67. Re:F5 IRule by snowraver1 · · Score: 1

      Yea, I thought so too, until I uninstalled it. I *think* that it might be uninstallable if you have SP3 installed.

      --
      Copyright 2010. All rights reserved. This comment may not be copied in any way including, but not limited to caching.
    68. Re:F5 IRule by Anonymous Coward · · Score: 0

      The biggest thing is that a virus scan noticeably lugs down my computer, which is an accomplishment because I've never had that with any other program.

      You must never have used a product from Symantec then, or any of the recent (>2000) Mcafee products.

      My father installed this abomination on his pc a few weeks back. End result: several applications failed to recognize the net connection, and I had to uninstall it to get rid of the firefox plugin (it wasn't listed in add-ons). Unless something else comes up, I'll be switching to nod32.

    69. Re:F5 IRule by mashade · · Score: 3, Informative

      what are other free AV systems (other than Clam)?

      I like http://www.avast.com/ quite a bit.

      --
      Technology tips and tricks.
    70. Re:F5 IRule by megaditto · · Score: 5, Insightful

      Why, what does that do?
      Do you want it to pound Google's servers, bump up grisoft's search rank, or anything else I am not seing?

      --
      Obama likes poor people so much, he wants to make more of them.
    71. Re:F5 IRule by Dmala · · Score: 1

      Right, my point is that the AVG scanner is useless. They might as well drop it and save everyone a lot of grief.

    72. Re:F5 IRule by stretch0611 · · Score: 1

      To play devils advocate, I can support Konqueror, Mozilla, Seamonkey, Safari, Opera, Firefox, Galleon, Lynx, Flock, and many others just by simply supporting web standards.

      In order to support IE6, I need to code specifically for IE6.

      --
      Looking for a job?
      Want your resume written professionally?
      DON'T USE TUNAREZ!!!
    73. Re:F5 IRule by westyvw · · Score: 4, Interesting

      Once again: Why stop at dealing with AVG? Get rid of the whole mess. Every time I move some one from Windows to Linux the "what shall I do about spyware/adware/printer/windowsupdate" questions just go away. I used to recommend AVG about 4 years ago. Since then, I just recommend an OS without a need for antivirus software.

    74. Re:F5 IRule by LiquidFire_HK · · Score: 5, Informative

      DDoS Grisoft with their own plugin - it fetches all linked search result pages in a Google search in order to scan them.

    75. Re:F5 IRule by Skylinux · · Score: 4, Informative

      Try Antivir!

      From my personal experiance, as a computer service technician, it finds AND fixes infections where Norton (Personal + Corporate) and AVG find nothing.

      http://www.free-av.com/

      --
      Everyone who buys Wild Hunt will receive 16 specially prepared DLCs absolutely for free, regardless of platform.
    76. Re:F5 IRule by Darkness404 · · Score: 1

      In order to support IE6, I need to code specifically for IE6.

      But this was about blocking IE6. If you just code as you normally do and the page doesn't render right in IE6, tough luck for the IE6 users, if they e-mail you, tell them to install Firefox.

      --
      Taxation is legalized theft, no more, no less.
    77. Re:F5 IRule by vigiles · · Score: 1

      I just didn't enable the link scanner- worked for me

    78. Re:F5 IRule by spoco2 · · Score: 2, Informative

      Download the latest version of AVG, when you install that it now has the option to not even install the horrendous link checking thing. So it doesn't have it, and it doesn't whinge about not having it.

      It was a horrendous idea by the AVG guys, because in general I do like their products, use the free client on all my home pcs and have the paid one running on all work ones.

      (none use the link checker)

    79. Re:F5 IRule by tubapro12 · · Score: 5, Informative
    80. Re:F5 IRule by Anonymous Coward · · Score: 0

      saying we should block [IE6] is like saying we should block Firefox 1.5 and earlier and hey! Firefox 3 is out now, lets block Firefox 2!

      Um, not really.

      Firefox 1.5 was released in 2005. Firefox 2 was released in 2006. IE6 was released in 2001.

      See the difference yet? (Hint: one of these browsers was not released in the last 5 years!)

    81. Re:F5 IRule by Anonymous Coward · · Score: 0

      For anyone that happens to run a site behind a ZXTM from Zeus Technology, here's a nice little TrafficScript rule to nuke this horrible crap from orbit:

      $ua = http.getHeader("User-Agent");

      if( http.getHeader("Accept-Encoding") == "" &&
          http.getHeader("Referer") == "" &&
            ( $ua == "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" ||
              $ua == "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;1813)" ||
              $ua == "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" ||
              $ua == "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;1813)" ) ) {
          connection.discard();
      }

    82. Re:F5 IRule by yoyhed · · Score: 3, Funny

      How about Googling for AVG, clicking the first result ("AVG Free") and clicking the "Get It Now" button under "Free Basic Protection"?

      --
      WHO NEEDS SHIFT WHEN YOU HAVE CAPSLOCK/ DAMN1
    83. Re:F5 IRule by bluefoxlucid · · Score: 1

      I simply went to my manager, who was an open-source/Linux nut.

      Keep the faith. Social engineering forever!

    84. Re:F5 IRule by Zero__Kelvin · · Score: 1

      I commend you on simply saying mea culpa. It is refreshing to see someone who, when he is wrong, just accepts it, recognizes that it happens to everyone, and moves on. That seems to seldom happen on Slashdot these days.

      --
      Guns don't kill people; Physics kills people! - John Lithgow as Dick Solomon on Third Rock From The Sun
    85. Re:F5 IRule by yoyhed · · Score: 1

      There's an option when installing to uncheck Link Scanning.

      --
      WHO NEEDS SHIFT WHEN YOU HAVE CAPSLOCK/ DAMN1
    86. Re:F5 IRule by bluefoxlucid · · Score: 0, Offtopic

      Sweet, a helpful astroturfer. How much do they pay you to astroturf? Is that your primary job function or are you unofficially a part of Damage Control?

    87. Re:F5 IRule by TommydCat · · Score: 1

      What Damage Control? F5 has no affiliation with AVG of which I'm aware...

      --
      This comment does not necessarily represent the views and opinions of the author.
    88. Re:F5 IRule by akita · · Score: 1

      Just delete the avg files on the firefox folder and AVG will not complain.

    89. Re:F5 IRule by Anonymous Coward · · Score: 1, Interesting

      Bleeding edge doesn't happen in corporate environments, hell leading edge doesn't even happen most of the time

      Brother, count yourself lucky. In my department, edge doesn't happen.

          My last day for a shitty client is tomorrow; said client is a $3*10^9 US corporation. These gimps have never allowed any real testing in the six months that I've been here. And that's normal for both them and most of the larger clients I've worked with.

          Thankfully, I'm a professional contractor and the fact that fantasy office politics is more important to them than the quality of clinical decision making is about to cease being my problem.

          Appologies for the AC post but I've just realised that my SID could be related back to me professionally.

          I've done my best, educated those around me, even given up my own time to help those who've been nice to me. As to the corporation: fuck 'em. I'm about to be the competition.

    90. Re:F5 IRule by Anonymous Coward · · Score: 0

      Problem - what happens if some poor user legitimately has one of those user agent strings, and is sitting behind a proxy that doesn't understand compression? Typically, they strip the Accept-Encoding header out entirely.

    91. Re:F5 IRule by Snaller · · Score: 1

      Yep, Slashdot just helped the Black Hats!

      --
      If Google really cared they would fix Android Chrome to reflow text, instead of discriminating
    92. Re:F5 IRule by bluefoxlucid · · Score: 1

      No, but a slow processing script vs a tiny enhancement to improve performance under high load (and thus load capacity) makes the difference between a customer with an appliance that performs poorly beyond capacity and needs an upgrade versus a customer with an appliance that slows as it nears capacity and chokes out entirely when it's passed it.

    93. Re:F5 IRule by Anonymous Coward · · Score: 0

      People who use AVG with the site crawling bits will load the first one hundred search results on the Grisoft (makers of AVG) website.

      They'll hit Google's servers once, Grisoft's a hundred times.

    94. Re:F5 IRule by somersault · · Score: 1

      I was actually fine with 98, Firefox, Spybot and no AV for years, obviously behind a firewall (just a basic hardware firewall). I got AV when I got XP because it kept whining about no AV. Now I just have AV on my Windows install through work, but obviously don't need anything for my OSX install (yet.. and hopefully never).

      --
      which is totally what she said
    95. Re:F5 IRule by Snaller · · Score: 1

      Wow god, tell me do all download managers also do this?

      --
      If Google really cared they would fix Android Chrome to reflow text, instead of discriminating
    96. Re:F5 IRule by HobophobE · · Score: 1

      I believe the intent is that AVG will then follow all the links on that search page that is included as content in your pages (thus hammering grisoft.com with 100 hits every time a user of this visits one of your pages).

      --

      -HobophobE
      Nothing laughs forever.
    97. Re:F5 IRule by Anonymous Coward · · Score: 0

      If you're declaring the list in HTTP_REQUEST you can save some resources by not declaring it as a global variable. You can just remove the :: from the set and matchclass commands.

      AC

    98. Re:F5 IRule by PhoenixAtlantios · · Score: 1

      Wouldn't anyone visiting your page with AVG's Safe Search enabled cause all of the results inside the iframe to poll AVG's website? 100 results to be checked, unless grisoft.com is automatically marked as safe.

    99. Re:F5 IRule by Anonymous Coward · · Score: 0

      AVG doesn't execute javascript? That seems like it would be a very common vector for malware, no?

    100. Re:F5 IRule by Em+Ellel · · Score: 1

      AVG doesn't execute javascript? That seems like it would be a very common vector for malware, no?

      Most antivirus software does not execute viruses, why should this be different?

      -Em

      --
      RelevantElephants: A Somatic WebComic...
    101. Re:F5 IRule by kesuki · · Score: 3, Interesting

      well, with the dancing pigs problem, universal java exploits (i mean JRE exploits not javascript here) it could be you're telling people to move to a platform where sophisticated anti-malware doesn't exist, with the fallacy that 'it's linux, it's not targeted by hackers'

      of course, pure linux exploits don't exist, but an exploit of a p2p application written in java or python, oh heck, even a bad site, that runs a java exploit as part of say 'free movie downloads' it's possible to write once, run anywhere code that can equally infect mac and linux desktops that thanks to the dancing pigs problem relies on closed source, 'feature' software that doesn't come 'default' with linux, but which they're going to install the first time a website doesn't work without it.

      all the most popular bittorent software all comes in a 'universal' language, either java or python... and they're all in the 'multiverse' repositories... making them easy for linux users to install...

      sure, in a write once, run anywhere situation, you can't do as much to a linux machine, as to a windows machine, but the basic stuff, but depending on what the hacker hopes to do, it could be super simple.

      linux isn't kryptonite to good hacker.
    102. Re:F5 IRule by JebusIsLord · · Score: 1

      I'm pretty happy with Avast!. Only complaint is the default cheesy voice warning message... you can turn it off though.

      --
      Jeremy
    103. Re:F5 IRule by kesuki · · Score: 1

      i don't see any on google image search, but a DIY project is pretty easy.

      first you have to decide What an asshat is, is it a hat that looks like someone's behind?

      is it a hat that looks like a behind, with another hat on top of it?

      whichever design you go with, you need an easily worked with material that either is the correct color, or is easily painted or colored correctly, after working with it.

      i don't have any good material suggestions, besides using fabric (easily dyed) and cotton batting inside, and sewing the fabric to the correct shape, a bit of work, and cotton can lose it's shape,... still i couldn't think of any easier material...

    104. Re:F5 IRule by Snaller · · Score: 1

      "Are you willing to die for what you "say" you believe in?"

      I believe in death.

      --
      If Google really cared they would fix Android Chrome to reflow text, instead of discriminating
    105. Re:F5 IRule by Jeff+DeMaagd · · Score: 2, Interesting

      Actually, I have abandoned Norton & McAfee products, but I've forgotten about them.

      I don't recall them lugging my computer as much as AVG 8 either, because I would notice a lag between keypresses and when they actually show up on the screen, and a virus scan would take about several hours scanning an 18GB 15kRPM hard drive. I don't think Norton or McAfee virus scanners that I used were as bad, though maybe more recent versions were.

    106. Re:F5 IRule by Jeff+DeMaagd · · Score: 1

      There's an option when installing to uncheck Link Scanning.

      If I have to reinstall the software in order to change a setting to not get the lame nag, then I'm generally going to look for alternative software.

    107. Re:F5 IRule by Snerdley · · Score: 1

      Thanks, I appreciate that.

      My original post was (in an admittedly smarmy way) trying to help people avoid a big mistake. To do anything other than just correct it would be counter-productive.

    108. Re:F5 IRule by vegiVamp · · Score: 0

      grisoft.com is the AVG site.

      This new AVG crap will notice when you go to google, and pre-fetch and scan all search results.

      The iframe loads an invisible (well, 1x1) google query for 100 pages from site:grisoft.com.

      Net result of this: Everytime a user hits your page, grisoft gets a hundred hits from their own scanner.

      --
      What a depressingly stupid machine.
    109. Re:F5 IRule by Kalriath · · Score: 1

      Any IE6 user likely has the .NET Framework, which adds the .NET CLR version to the UA (making it something like "Mozilla/4.0 (compatible; MSIE 6.0; WinNT 5.0; .NET CLR 1.4.4322)"

      So that IS still unique to AVG.

      --
      For a site about things like basic rights, Slashdot users sure do like to censor "dissent".
    110. Re:F5 IRule by Waccoon · · Score: 2, Insightful

      I would think that a decent IT guy would explain at least the basics of this logic to his/her users.

      Nobody wants to be told, "because I said so."

    111. Re:F5 IRule by oracle128 · · Score: 1

      I've also used no AV for years on an XP machine. Windows Defender is the only anti-malware I have at all. And I use Firefox primarily, with some occasional IE. I am behind a router though. You can tell XP to ignore the fact that you've got no AV via the Security Center.

      Really, unless you're always browsing dodgy sites or opening random emails, it's pretty hard to get infected by anything more serious than tracking cookies.

    112. Re:F5 IRule by Spacejock · · Score: 2, Interesting

      I zapped the link scanner on my laptop & PC, but to my surprise when I went to disable the same thing on my wife's computer she stopped me. She was more than happy to have the web a little bit slower if it meant her google results were tested & filtered for her.

      I too am not happy with AVG 8. I don't like the fact it displays a critical error if I disable scanning of outbound email, I don't like the link scanner and I certainly don't like the speed or the UI. The only reason I upgraded was because v7 kept popping up ads for v8, which pissed me off even more.

    113. Re:F5 IRule by Ysangkok · · Score: 3, Informative

      Antivir is adware. There's ads popping up, requesting that you buy the full product. And the user-interface is ugly.

    114. Re:F5 IRule by Tim+C · · Score: 1

      Yes, but AVG doesn't need to execute the javascript to determine whether or not it's suspicious, just like it doesn't execute a file to determine whether or not it's infected with a virus.

    115. Re:F5 IRule by Tim+C · · Score: 1

      Yes, of course they can, which is why sooner or later AVG is going to change the headers to perfectly match IE - they'll have to, or the scanner will be completely useless other than possibly to catch sites that have been hacked.

    116. Re:F5 IRule by g0dsp33d · · Score: 1

      For Windows I run PC tools AV (also their firewall, both free [beer]). Both Have worked pretty well for me and are both pretty detailed when you want and not terribly annoying. They also have a spyware tool for one source security, but it costs money so I haven't tried it.

      --
      lol: You see no door there!
    117. Re:F5 IRule by Mhtsos · · Score: 1

      Besides, which self respecting /.-er needs anti virus

      Only everyone who supports barely computer literate windows users who run everything they find on the net in a company that won't pay for AV "since there's a free one".

    118. Re:F5 IRule by Jedi+Alec · · Score: 2, Interesting

      Your company is insane.

      Or just stupid.

      Nobody who knows anything about IE and is mostly sane would ever make IE standard. Have the option, sure, but you should STRONGLY recommend people not use it.

      You'd be amazed at the number of "enterprise" "web interface" applications that...turn out to only work on IE, and with any luck only on a specific version.

      Let's see, right now I'm looking at CC&B and Blue Pumpkin, both of which simply will not render on anything but IE, not even with fake user clients.

      Posting this using Firefox though ;-)

      --

      People replying to my sig annoy me. That's why I change it all the time.
    119. Re:F5 IRule by deroby · · Score: 1

      grin, but if they'd do that the 'privacy-crowd' will start yelling that AVG is 'illegally observering' their browsing habits...

      Although I don't like the current implementation too much either, it IS a lot safer to have only safe sites listed in a search result.
      The problem isn't quite with AVG if you think about it, the problem is with malware sites managing to wiggle themselves in google-results...

      The way AVG included this in their latest release might have been more 'transparent' indeed :
      * give users the option to turn it on/off "easily"
      * give users an option to use an AVG repository for checking
      * make the installer clearly ask whether you want this on or off by default

      As for the 'they do it in a hidden way, pretending to be a genuine user-agent instead of a bot' : DUHUH, if a webserver can tell the difference, then they will return something honky-dory whenever the AV comes by and drop their malicious payload when "it's for real".

      --
      If there is one thing to be learned on slashdot, it has to be sarcasm.
    120. Re:F5 IRule by Mhtsos · · Score: 1

      Maby it should be "please replace AVG with another AntiVirus and come back". it sounds better.

    121. Re:F5 IRule by ultranova · · Score: 1

      well, with the dancing pigs problem, universal java exploits (i mean JRE exploits not javascript here) it could be you're telling people to move to a platform where sophisticated anti-malware doesn't exist, with the fallacy that 'it's linux, it's not targeted by hackers'

      Do you know of any such JVM exploits - which, in order to be write-once run-everywhere, would not only need to allow one to allow the execution of arbitrary Java classes, bypassing possible security monitor, but also depend on a flaw in the JVM specification, rather than a flaw in the implementation, since implementations differ in different platforms - or are you just speculating in the vein of "nothing's really safe" ?

      --

      Forget magic. Any technology distinguishable from divine power is insufficiently advanced.

    122. Re:F5 IRule by GourdCaptain · · Score: 1

      While I agree this is stupid, you can run the installer again and there is a "Add/Remove Components" option. You can remove the link scanner there. /me is in looking for a free Anti-Virus that doesn't stink. Cause I know there aren't any pay anti-virus programs that don't. (I have a bad history with Norton, McAfee, PcIllin, Zone Alarm.)

    123. Re:F5 IRule by EDinNY · · Score: 1

      I noticed that it was slowing down google use when I installed it. I tested AVG against McAfee SiteAdvisor and found that AVG lost, so I just turned off the option and now AVG displays a warning on the icon, but everything else works..

    124. Re:F5 IRule by chefren · · Score: 1

      But the scanning engine is called Luke Filewalker! Plus it's pretty fast and low on resources.

    125. Re:F5 IRule by MikeBabcock · · Score: 1

      You mean "I'm sorry crappy Windows user, uninstall and use Linux then come back" right?

      I see no reason to punish Windows users or AVG users. If their software is putting a burden on your webserver, block the requests, or just limit them.

      --
      - Michael T. Babcock (Yes, I blog)
    126. Re:F5 IRule by smagruder · · Score: 1

      The problem is that the first user-agent in that list is also associated with legitimate site visitors, and I'm certainly not rejecting them.

      --
      Steve Magruder, Metro Foodist
    127. Re:F5 IRule by smagruder · · Score: 1

      Whoops, didn't think about the "Accept-Encoding" check. My bad. That should work fine.

      --
      Steve Magruder, Metro Foodist
    128. Re:F5 IRule by billcopc · · Score: 1

      The feature itself is a good idea, it's the implementation that's a shameful mess. Google does it, and Firefox does it - both do it without client-side spidering. They have their own server-side index, which means each site gets spidered only once per refresh cycle.

      The way it is now, AVG is acting not unlike a number of bots, and costing a whole lot of people a whole lot of money in excess bandwidth. They deserve to be blocked, this is the wrong way to do things.

      --
      -Billco, Fnarg.com
    129. Re:F5 IRule by Ticklemonster · · Score: 0

      So AVG is trying to scour the net for dangerous sites in a way that is slightly overly sort of exactly mostly absolutely considered very sort of wrong, but the idea is to compile as much data as they can to make the net safe, and everyone wants to stop them from being able to make the net safe for their users? Isn't that like being mad at bank guards for carrying guns? (okay, so if they were AVG bank guards, they'd be shooting everyone who walks in the door... so never mind, I guess) We have AVG 8 on all the virus magnets here, and I installed the browser attachment, but turned off the share information part. Does this mean I need to do something to stop it from crawling? AVG being able to stop drive bys is good enough for me, I don't need it visiting every href on the net. Besides, what if the AVG on my machine crawls over to some kiddie pron site and spends a few hours finding stuff? Will it leave my IP address (or worse, my IP provider's unique identifier) there for the authorities to find later?

      --
      Karma: Bad is the liberal way of saying this guy won't drink the kool aid here on slash dot. I wear my Karma with pride
    130. Re:F5 IRule by ReedYoung · · Score: 1

      grin, but if they'd do that the 'privacy-crowd' will start yelling that AVG is 'illegally observering' their browsing habits...

      I would not have any 'illegally observering' [sic] objection, unless the IP addresses or other personal information of AVG users were stored with the URLs we report, and that was not part of AC's suggestion. Your straw man, observing browsing habits, is a valid concern, but not relevant to AC's idea. A cache which stores only URLs hosting malware, which is all that AC actually recommended, does not technologically necessitate any invasion of privacy.

      --
      "I can't imagine how things could get any worse!" (some guy) "That could just be failure of imaginatioÂn on your p
    131. Re:F5 IRule by StarkRG · · Score: 2, Interesting

      Ahh. but you see, I was talking about internally written apps, not enterprise apps.

      I've written some very simple web apps myself, and I understand the technologies and code. It takes some very careful stupid planning to make it only work on IE. You have to do something like choose IE specific javascript or ActiveX (one of the worst ideas in the history of computers, IMHO).

      There's almost nothing that you can do with IE jscript and activex that you can't do with regular javascript. (Granted there may be some functions that you'll need to write yourself or find a pre-written library for)

      Just lazy programming.

    132. Re:F5 IRule by Anonymous Coward · · Score: 1, Insightful

      *** She was more than happy to have the web a little bit slower if it meant her google results were tested & filtered for her. ***

      You can't believe the results of that test. When AVG accesses the site, the site can SEE that it is AVG doing it (because of the brain-dead way in which it works). The site can then feed "good content" to AVG, and stiff you with a virus or malware when you actually click the link to visit the site.

      The feature offers you no protection at all.

    133. Re:F5 IRule by listen · · Score: 1

      This is fairly naive. On Linux and other free unices, any privilege escalation holes are considered bugs and will be fixed in a reasonable time frame. This is not the case on windows. I would like to believe it is the case on OSX but I'm unconvinced (posting from OSX). I have to admit I don't know why web browsers aren't by default run under a subservient user account (with saved downloads handed off to a much more easily audited process) ... but anyway - the conceit that all end user platforms are equivalently easy to attack is clearly bogus. "super simple" my arse.

    134. Re:F5 IRule by time64_t · · Score: 0

      Users of Zeus Technology's ZXTM could use the following TrafficScript rule (which strikes me as slightly more intuitive):

      if( http.getHeader("Accept-Encoding") == "" &&
          http.getHeader("Referer") == "" )
      {
         $ua = http.getHeader("User-Agent");
         if( $ua == "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)"||
             $ua == "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;1813)"||
             $ua == "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)"||
             $ua == "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;1813)" )
         {
            connection.discard();
         }
      }

    135. Re:F5 IRule by Deltic55 · · Score: 1
      Actually, you can deactivate without a notice popping up:

      1- In the "Security Components and Status Overview", double-click Link Scanner, uncheck all the boxes, then save (if this hasn't been done already);
      2- Bring up the SC&SO panel again, right-clicking Link Scanner, then selecting "Ignore component state".

      This should eliminate the perpetual warning message.

    136. Re:F5 IRule by kesuki · · Score: 1

      "are you just speculating in the vein of "nothing's really safe" ?"

      I live with the speculation that nothing is safe, it's part of my mental illness, a feature modern medicine does little about, at least in the dosages that leave me coherent and aware of the world around me.

      in some ways it's more frightening on high doses of strong medications, which can alter your perception, and even make you high. They tried at least 4-5 medications... before finding one that helps, and has fewer negative side effects.

      Oh, BTW noscript add-on for firefox makes 'bad' website flaws a little less likely to work. I don't think noscript would be popular if it didn't protect you from 0-day exploits.

    137. Re:F5 IRule by kesuki · · Score: 1

      you assume privilege escalation is required. a lot of things, like browser search redirects, or say, generating 'click' through to ad sites, without the end user aware of what's happening doesn't require privilege escalation, all they have to do is corrupt a few browser settings, and if you aren't running noscript, then it's easy for hackers to come up with ways to use your browser for evil, without needing to root your system.

      i'm serious here, if you know that n% of users even if they notice, won't do anything because they don't understand what's going on in the first place... it may not be as easy to make write once run anywhere exploits, but the idea is that if your goal is to infect as many people as possible and that n$ won't do anything, then it might be a viable model to at least try to do it as a write once run any where exploit.

      the idea of selling people on 'oh firewfox is secure' without at least giving these novices 'noscript' and explain that there are bad sites that can do bad things to your browser, and no script is there to block stuff that the bad guys figured out and other haven't...

      they might complain, or simply set up bypasses for all the dancing pig sites, but if they do, it's their fault... i consider noscript as essential to any firefox install.

    138. Re:F5 IRule by awrowe · · Score: 1

      Well it obviously has to be a hat that looks like a behind.

      Ideally (shield your eyes here folks) it would look like a really old womans behind, with wrinkles and orange peel skin which was never meant for the eyes of a man.

      I'm sure there is a market for this. Whats the URL for the US patent office? I wanna patent an asshat like that. No prior art? God damn, I'm on a winner here!

      --
      A.I. Research. The peculiar science in which we know the question and we know the answer, but can't show the working
    139. Re:F5 IRule by Anonymous Coward · · Score: 0

      A suggestion I have for black hats is to download this growing IP list of recorded "AVG users" with LinkScanner installed to work out which companies/users are relying on AVG 8.

      The next time an AVG exploit is in the wild (possibly even in LinkScanner itself!), you may have a head start.

      Or simply just make your malware AVG-proof, and send it to the companies which you've recorded as having a whole bunch of LinkScanner users. This is not really a great advantage given it is already far too easy to make malware undetected by all anti-virus software. But let's assume AntiVirus software worked in the first place - you'd only have to dodge one possible piece of software, rather than taking into account another 20 AntiVirus products that could be installed.

      Or if you're into malware (or any other shady online business for that matter), post links to your temporary malware sites on popular sites/blogs. LinkScanner users will automatically fetch the URLs you've posted, increasing load on the server(s) of your choice.

    140. Re:F5 IRule by florin · · Score: 1

      Yeah me too. Although the default futuristic non-standard UI looks a bit cheapish. But you can switch it off, like the spoken status updates (which I don't mind), and otherwise this is a pretty solid free scanner.

      I used to run AVG on some of my PCs but I pretty much switched over to Avast altogether a couple of months ago.

    141. Re:F5 IRule by m0i · · Score: 1

      just nuke the right to execute on avnotify.exe :-) and you can set the update job to invisible.
      AFAIK Avast is the best AV with Kaspersky on live scanning sites such as virustotal.

      --
      have you been defaced today?
    142. Re:F5 IRule by m0i · · Score: 1

      Meh, s/Avast/Antivir/

      --
      have you been defaced today?
    143. Re:F5 IRule by westyvw · · Score: 1

      The question wasn't about getting exploited, its possible. The point was that the questions go away, because security is handled without strange nagging third party applications. There is ONE update location, one place to bring the system up to date, and usually it doesnt break things. 'multiverse'? You think I would recommend a 'buntu? No way. Additionally, most people i set these up for dont use torrents, and if they do, I recommend Ktorrent, written in C++ and Kde C++ libraries.

    144. Re:F5 IRule by Anonymous Coward · · Score: 0

      This software gets my vote.

    145. Re:F5 IRule by XO · · Score: 1

      go to google enter "avg free" click "download".

      I thought slashdot people were supposed to be smart.

      --
      "Champagne for my real friends - and real pain for my sham friends!" http://ericblade.postalboard.com/
    146. Re:F5 IRule by XO · · Score: 1

      look in the program settings, it's right there

      --
      "Champagne for my real friends - and real pain for my sham friends!" http://ericblade.postalboard.com/
    147. Re:F5 IRule by Anonymous Coward · · Score: 0

      Make it the 'uninstallation instructions' page.

    148. Re:F5 IRule by smagruder · · Score: 1

      The "Accept-Encoding" check will allow the visitors who are real-live-browser-users with that user-agent in just fine.

      --
      Steve Magruder, Metro Foodist
    149. Re:F5 IRule by nacturation · · Score: 1

      Why, what does that do?
      Do you want it to pound Google's servers, bump up grisoft's search rank, or anything else I am not seing?

      The other replies have somewhat addressed this, but I think the part you're still missing is that the GP is probably (or should be) suggesting that this particular iframe code would only be served up to users identified by the subset of user agent strings to be suspected of running AVG. Google would never see the iframe code when crawling your site, nor would the vast majority of non-AVG users, thus their pagerank is unaffected.

      And as you'd only be targeting AVG users it will have negligible effect on Google itself -- unless CNN, Yahoo, MSN, etc. do it -- but it will cause AVG to hammer its own site as the scanner works its way through all 100 links checking the site content.
       

      --
      Want to improve your Karma? Instead of "Post Anonymously", try the "Post Humously" option.
    150. Re:F5 IRule by Anonymous Coward · · Score: 0
      A simple 'yes' would have sufficed.

      I can't even smell me own name mate.

    151. Re:F5 IRule by deroby · · Score: 1

      True,

      but the 'crowd' I'm thinking of would simply cry out because *potentially* AVG *might* keep track of such information, sell it to the bad guys and become rich overnight.

      Off course, I very much doubt they would abuse the information (not) obtained, but then again I know I'm overly naive =)

      --
      If there is one thing to be learned on slashdot, it has to be sarcasm.
    152. Re:F5 IRule by ReedYoung · · Score: 1

      True,

      but the 'crowd' I'm thinking of would simply cry out because *potentially* AVG *might* keep track of such information, sell it to the bad guys and become rich overnight.

      You mean they would complain about something that isn't even happening just like you are doing. Good one. I apologize for not getting your joke sooner.

      --
      "I can't imagine how things could get any worse!" (some guy) "That could just be failure of imaginatioÂn on your p
  2. One Word by Spazztastic · · Score: 4, Informative

    Avira.

    --
    Posts not to be taken literally. Almost everything is sarcasm.
    1. Re:One Word by BadAnalogyGuy · · Score: 3, Interesting

      When the AVG Free forced upgrade came out, I went in search of another antivirus software product and picked Avira too, but it also seems to enjoy popping up useless dialog boxes, more so than even AVG ever did.

      Is there a good AV software package that is free and up to date and doesn't suck ass?

    2. Re:One Word by TheLinuxSRC · · Score: 4, Informative

      I don't use windows on the desktop so I cannot really comment, however I do administer some Linux mail relays that use ClamAV with extremely good results.

      I mention this because there is a windows client that uses the same FOSS engine -- ClamWin.

    3. Re:One Word by Southpaw018 · · Score: 0, Troll

      Are you really so strapped for cash that you can't fork over $60 for top of the line AV? Renewals are $40. This is pretty basic, absolutely essential stuff we're talking about, here, and $60 really isn't too much to ask if you're employed. (I understand if you're still a student.)

      --
      ACs are modded -6. I don't read you, I don't mod you, I don't see you. Don't like it? Don't be a coward.
    4. Re:One Word by lukas84 · · Score: 3, Interesting

      Please note that ClamWin Free Antivirus does not include an on-access real-time scanner. You need to manually scan a file in order to detect a virus or spyware.

      Yeah, and embedded virus scanning is all that is currently good for. It does not have an On-Access scanner, making it almost useless in a desktop environment.

    5. Re:One Word by Anonymous Coward · · Score: 0
    6. Re:One Word by BadAnalogyGuy · · Score: 3, Funny

      Gimme a break.

      I download movies for free.
      I download music for free.
      I download porn for free.
      I download operating systems for free.
      I download software for free.

      Why shouldn't I expect antivirus software to be free as well?

    7. Re:One Word by michrech · · Score: 1

      The interface could use some work (it's skinable, at least!), however, I have converted countless people (MOSTLY McAfee/Symantec users) to Avast! Antivirus. It has a free-for-home version, just like AVG, but doesn't have annoying pop-ups (the only popups I see are when it updates its database, when it's telling you a new version exists, or when it finds a virus/malware).

      Clicky

      When the AVG Free forced upgrade came out, I went in search of another antivirus software product and picked Avira too, but it also seems to enjoy popping up useless dialog boxes, more so than even AVG ever did.

      Is there a good AV software package that is free and up to date and doesn't suck ass?

      --
      bork bork bork!
    8. Re:One Word by Mistshadow2k4 · · Score: 1

      Well, of course, there's Avast, which is usually what I recommend to most people. If you're interested in on-demand scanners besides ClamWin, there's also Arcamicroscan, which has proven to be pretty good in my experience.

      --
      I dream of a better world... one in which chickens can cross roads without their motives being questioned.
    9. Re:One Word by Southpaw018 · · Score: 1

      ClamWin (and ClamAV) do not have on-access scanning of any kind. They only do manual scans, and are worthless for use on a live workstation.

      --
      ACs are modded -6. I don't read you, I don't mod you, I don't see you. Don't like it? Don't be a coward.
    10. Re:One Word by Verteiron · · Score: 1

      Sure. Avast Antivirus. Requires an email address to register the home version, but it's free for home users, updates at least daily, and is much less of a RAM hog than Norton. It's effective enough that I actually use the Pro version as my AV at work. The network management features are pretty good.

      --
      End of lesson. You may press the button.
    11. Re:One Word by TheLinuxSRC · · Score: 1

      Oops... Like I said, it works really well on my email filter servers.. but I don't do windows :P

    12. Re:One Word by michrech · · Score: 1

      The main problem with clamwin is that it does not do on-access or real-time scanning. *All* virus scanning is done manually, or via schedules.

      It works *great* on mail servers (I set clamAV up for a school on their courier-imap/postfix mail server and it cut down the amount of crap they received *greatly*).

      I don't use windows on the desktop so I cannot really comment, however I do administer some Linux mail relays that use ClamAV with extremely good results.

      I mention this because there is a windows client that uses the same FOSS engine -- ClamWin.

      --
      bork bork bork!
    13. Re:One Word by Anonymous Coward · · Score: 0

      Avira.

      Yup, I used Avira for a few years now. It's been good. I researched free Anti-Virus packages and I got an About.com page that compared a few. They came down to AVG and Avira and I choose Avira because it had the smallest footprint, and it still has a very small footprint.

      However, it will pop up a ad in the free version to buy their full version from time to time, which will minimize your game window if possible. Plenty of times I've had WoW minimize on me for this. It's never been a real problem though and I suppose I *could* pony up for the real product if I really wanted. They've supplied a pretty good service so far, I've been waiting to pay off some debt and plan on upgrading.

    14. Re:One Word by Maxo-Texas · · Score: 1

      People paint for free.

      People do not tend to clean toilets for free.

      Sometimes, you just have to do something to induce people to do the crappy jobs.

      I just wish they would write a secure OS and get it over with. It's clear that cutting corners for performance reasons isn't working. Time to bounds check everything.

      --
      She was like chocolate when she drank... semi-sweet at first and then increasingly bitter.
    15. Re:One Word by Araxen · · Score: 2, Informative

      Eh...you don't need $60. Just goto newegg and buy the nod32 oem version for $30.

      http://www.newegg.com/Product/Product.aspx?Item=N82E16832114005

    16. Re:One Word by PIBM · · Score: 1

      There's a problem with the paid antivirus: they are often much more bloated than what you want. They don't have complete configuration, as they are built for the masses. They often take out a large chunk of memory, add things up at tons of places you don't want and just slow down your computer as much as the virus they prevent.

      And that's when they aren't tampering with the requests your browsers are sending, breaking the webpages you view when they are enabled..

      So, it's a no thank you for me.

    17. Re:One Word by Anonymous Coward · · Score: 0, Insightful

      And what do you contribute back to society or how do you help support the various efforts that you piggyback on?

      There is an obvious answer to your question about why you shouldn't expect everything to be free but I wonder if you can figure it out.

    18. Re:One Word by tj111 · · Score: 1

      Because your downloading the wrong "free" operating systems.

    19. Re:One Word by modecx · · Score: 2, Interesting

      It's useless on a workstation? Only if you're a nincompoop and don't scan suspicious files manually, before you go to run them. I.E. the way things used to work before computers were generally fast enough to make on-access virus scanning bearable. It's a good alternative, if you don't sit on your brain--which, of course makes it unusable to most people, (if that's what you meant)

      --
      Constitutional rights may be respected, repealed, or modified; but they must never be ignored.
    20. Re:One Word by kryptkpr · · Score: 1

      You are correct in general, but the GP was talking about NOD32 .. a virus scanner that's written in Win32 Assembly and specifically designed to be lightweight and un-intrusive.

      With that being said, last time I tried it the "network scanner" got very confused when p2p began opening up hundreds of connections and would bog down the system (or worse, start rejecting connections). I've been meaning to NODS32 another go, hopefully this has been fixed..

      --
      DJ kRYPT's Free MP3s!
    21. Re:One Word by thePowerOfGrayskull · · Score: 1

      Actually, on-access scans are resource hogs on a live workstation, and are not worth the overhead when all you need to do is exercise some common sense in the things that you open.

    22. Re:One Word by thePowerOfGrayskull · · Score: 1

      Why essential? I've not been running AV for years except a periodic ClamAV scan "just in case", and yet somehow have not been infected. And all on Windows, at that...

    23. Re:One Word by Bert64 · · Score: 3, Informative

      On access scanning, what a horrendous way to cripple performance.

      --
      http://spamdecoy.net - free throwaway anonymous email - avoid spam!
    24. Re:One Word by thePowerOfGrayskull · · Score: 5, Funny

      Personally, I wish they'd write a secure user. Then AV wouldn't be necessary.

    25. Re:One Word by Bert64 · · Score: 1

      Why should people who have already spent $100 or so on an OS then be expected to spend a further $60 "hidden costs" before it's safe to use it to access files from third parties?

      --
      http://spamdecoy.net - free throwaway anonymous email - avoid spam!
    26. Re:One Word by beckerist · · Score: 1

      I personally use Avast, but truthfully it's because it's the only one I've found for free that supported XP x64. That's not to say there aren't others, more or less it was the first one I found that did the trick and didn't piss me off!

    27. Re:One Word by MBGMorden · · Score: 4, Insightful

      Generally, you're right. 99.9% of all virus infections I see on other people's machine would have been prevented if they just followed safe computing practices:

      1) Don't download useless crap. Useless crap is subjective, but programs that change your cursors, have teddy bears come out and wink at you, or other non-sense are definitely useless crap.

      2) Even on Windows, try and use open source software where you can. In general, if something comes from SourceForge, I trust it a lot more than some random closed source app that I've never heard of.

      3) Research your programs before you download them.

      4) Use a good browser and limit what scripted content you run. Firefox with NoScript works perfectly. After you whitelist your normally visited sites you rarely have to worry about it anymore, and any new site that needs to run scripts has to be approved first. And for most sites, unless I notice something broken/not working on the site, I don't allow scripts even if the popup does appear.

      Personally, I haven't ran an on-access virus scanner in 3-4 years. They're intrusive and take up valuable resources. I do currently have ClamWin installed though, and scan every so often just in case. I've always turned up clean (at least on my Windows machine - I have Linux and Mac machines as well that I don't even have to worry about scanning).

      Since too many people around here seem to think that I'm a door-to-door compute repair guy and keep calling me, I've seen tons and tons of spyware infected machines. Lately I've taken to pointing them to the Apple Store to show them the Mac Mini, and telling them that I'm going to be switching over to only supporting Mac's soon . . . (hoping that if they'll just buy the damned Mac that I'll never have to visit again anyways)

      --
      "People who think they know everything are very annoying to those of us who do."-Mark Twain
    28. Re:One Word by Ngarrang · · Score: 2, Insightful

      Actually, on-access scans are resource hogs on a live workstation, and are not worth the overhead when all you need to do is exercise some common sense in the things that you open.

      Remember who we are talking about now: Users. The same people who demonstrate time and again any idea of common sense and will click on any prompt that comes their way. For a sysadmin, automated scans will remove far worse headaches like the thought of a virus running free on your network.

      --
      Bearded Dragon
    29. Re:One Word by j-pimp · · Score: 1

      It's clear that cutting corners for performance reasons isn't working. Time to bounds check everything.

      What do bounds checks have to do with viruses and malware? Most initial infections are caused by stupid users? Also, I don't think windows cuts corners for performance reasons.

      --
      --- Justin Dearing http://www.justaprogrammer.net/ We're just programmers.
    30. Re:One Word by thePowerOfGrayskull · · Score: 1

      Yeah, I know. I live in this fantasy world that operates on the assumption that users aren't actually stupid enough to open everything that crosses their path.

    31. Re:One Word by Anonymous Coward · · Score: 0

      Yarr! Avast!

    32. Re:One Word by znerk · · Score: 1

      Is there a good AV software package that is free and up to date and doesn't suck ass?

      Avast has served me well for several years now.

      It's free as in beer, it auto-updates itself (seems like daily, or more often), and the only downside is the audio alert when it updates ("VIRUS DATABASE HAS BEEN UPDATED!" is shouted from your speakers). I should probably look for that option at some point, but it's so small an issue, I've never bothered.

      --
      This work is licensed under a Creative Commons Attribution 3.0 Unported License.
    33. Re:One Word by Anonymous Coward · · Score: 0

      This is pretty basic, absolutely essential stuff we're talking about, here

      No, it's not. It's only essential to people who choose to run arbitrary unaudited code that they get from arbitrary sources. And even as an "essential" tool, it's only moderately effective (in other words: sufficiently unreliable that you can't count on it, and thus doesn't really solve anything).

      People who don't choose to run arbitrary unaudited, unvetted code from arbitrary sources, on the other hand, don't need to check their their code against blacklists. The idea of AV software being "essential" to people who aren't already out to hurt themselves, is ludicrous.

      Using AV software is like going to West Africa with the intent of fucking 100 prostitutes, and then deciding, "Hey, maybe I ought to bring one condom. I'll flip it inside out in between each fuck."

    34. Re:One Word by Anonymous Coward · · Score: 0

      ClamWin does not have on-access realtime scanning. I love it on my thumbdrive with PortableApps though. Someone suggested MoonAV above as a FOSS AV with real-time scanning. Turns out it is ClamWin with a real-time scanner added on.

      However, I still use Antivir because in all of the tests I've seen, it outperforms most other free and even pay AV engines. I can live with clicking 'OK' to the 'Please buy our paid version!' ads every time it updates.

    35. Re:One Word by BigRare · · Score: 1

      I know this is slashdot and all, but some of us actually do have families to feed. Shocking, I know.

    36. Re:One Word by Anonymous Coward · · Score: 0

      Unfortunately, Avast has also turned to crap lately. I'm so sick of the problems caused by the latest versions of AVG and Avast that I could projectile vomit.

    37. Re:One Word by besalope · · Score: 1

      AVG8 works with XP x64 too. (Just found out after my latest re-install) However after this new information, you might want to stick with Avast. Even if it does have that annoying "Virus Database has been Updated" announcement.

    38. Re:One Word by osu-neko · · Score: 1

      The main problem with clamwin is that it does not do on-access or real-time scanning. *All* virus scanning is done manually, or via schedules.

      The main problem with most anti-virus software is that they do on-access or real-time scanning, thus wasting a vast amount of time scanning things that have no need to be scanned at precisely the most inconvenient time possible.

      --
      "Convictions are more dangerous enemies of truth than lies."
    39. Re:One Word by jonbryce · · Score: 4, Insightful

      Anti-virus software is the one thing I would never download from a torrent site. You need to be sure it comes from a trustworthy source so you can check all your other torrents with it.

    40. Re:One Word by Stellian · · Score: 1

      Here's a quick way to disable that nag. I think Antivir, with the above tweaks, is an excellent choice for a geek like me. I don't know if it has a very good detection ratio on the most recent threats - I keep my computer clean, because I'm a geek and I know what to avoid. But I never had an infection and it will not hijack my computer. Just an AV, low resource consumption, no firewall/mail scanner/insert-stupid-technology-here.

    41. Re:One Word by filthpickle · · Score: 2, Interesting

      NOD32 is pretty good about not being intrusive/using up resources. Whenever I fix(wipe/reinstall) someone's horribly infected PC I try to get them to buy it, it will save you the "it keeps popping up saying XYZ" calls.

      but like you say if you are careful you really don't need on-access. In 12 years or so of owning a computer that had net access I have only had one virus. Got it from the warez version of one of the Mortal Kombat games (oddly enough...warez, downloaded from the right places, is almost always clean). An update to Starcraft came out and was nice enough to tell me that it couldn't patch the exe because it was the wrong size. Now that's virus protection!

    42. Re:One Word by Maxo-Texas · · Score: 1

      Lots of apps still have very loose bounds checking. This allows things like that JPG vector virus attack. The jpg interpreter had a hole which a malicious jpg could lie about it's data size and overload, then pass execution to.

      For performance reasons, they set up a buffer of fixed size and trust that other applications will feed them that amount of information. Many virii and malware figure out a way to overload that buffer and then have execution start in the excess data. It is possible to bounds check everything but it comes at a definite performance hit. You set up a buffer for 1024 and when data is sent to you, instead of flash loading it- it is specifically loaded to fill the buffer and any excess throws an exception or is discarded.

      The other severely open issue is administrative rights. The same thing applies- how convenient do you want your system to be vs how safe. If programmers write code correctly, you don't have issues with lack of god level authority.

      --
      She was like chocolate when she drank... semi-sweet at first and then increasingly bitter.
    43. Re:One Word by filthpickle · · Score: 1

      I use NOD32 and haven't had any trouble with it affecting p2p...is the network scanner enabled by default?

    44. Re:One Word by mrscorpio · · Score: 1

      How far do you want to take this? Why should people who have already spent $100 on an OS then be expected to shell out another $500 on software just to edit photos?

    45. Re:One Word by SethKinast · · Score: 1

      There's a rather easy way to prevent the popup from showing. It's its own self-contained program, called avnotify.exe. You can just use Security Policy settings to deny access to the file. More information: http://www.tipsfor.us/2007/08/15/make-avira-antivir-free-edition-more-usable/

    46. Re:One Word by Binestar · · Score: 1

      http://www.avast.com/

      As usual, it's Free for home use only.

      They do require you to get a license, which involves putting in your name and email address. The license is valid for 14 months, at which time you need to get another.

      --
      Do you Gentoo!?
    47. Re:One Word by msuarezalvarez · · Score: 1

      The interface could use some work (it's skinable, at least!)

      Skinability is in 97.5% of the cases the worst thing you can do to an interface...

    48. Re:One Word by redxxx · · Score: 1

      Right, a sysadmin should never expect a user to have common sense. I don't run any sort of resident AV stuff at home. Every computer at my job does, because people who use them are ignorant and don't know how to think before clicking.

    49. Re:One Word by paulzeye · · Score: 5, Funny

      Actually I think on access scanning is a great way to cripple performance : )

    50. Re:One Word by Anonymous Coward · · Score: 0

      thus wasting a vast amount of time scanning things that have no need to be scanned at precisely the most inconvenient time possible.

      My previous employer was an "innovator" of one of the major commercial antivirus packages out there, although that wasn't the division I worked in. First thing I ever did when my company-provided laptop powered on was terminate the scheduled scanning service (had to use process explorer to kill the process because the service didn't respond to a shut-down). Only then was I able to be productive, because the scanner took so much I/O time because it would hit the disk constantly.

      I'm so glad I don't work there anymore.

    51. Re:One Word by Orion+Blastar · · Score: 1

      Actually just visiting the wrong web site can get your computer infected even if you follow all of that advice.

      Which is why pop-up blockers and ad-blockers are good, as most of the infections are pop-up or ad based. I really get upset at banks that use pop-up windows to view bank statements, which forces me to turn pop-up blocking off or add a rule so my bank statements can work and everything else gets blocked.

      I really hate search engine results that display a web page in search results with information you want to see, but as soon as you click on that web link it takes you to some fake virus scan that even infects Firefox with pop-up blocking and ad-blocking turned on. The fake virus scan actually infects your system with like a hundred or a thousand infections because it installed a trojan dropper/downloader that downloads more of them, and it is very very hard to remove.

      --
      Remember, Slashdot does not have a -1 disagree moderation, and no, troll, flamebait, and overrated are not substitutes.
    52. Re:One Word by jabberw0k · · Score: 1

      People paint for free.

      But usually, only things you didn't want painted.

    53. Re:One Word by Nightspirit · · Score: 1

      You may want to try a one-time scan by another antivirus program such as nod32, avast, etc. ClamAV constantly gets poor results in antivirus tests: http://en.wikipedia.org/wiki/Clamav

    54. Re:One Word by michrech · · Score: 1

      Spoken like someone used to McAfee or Symantec, OR, you do such specific work that the few milliseconds it takes to scan executables as they, well, execute, that you indeed need to disable on-access scanning.

      Between having Avast! on my machine, and not, the only way I can tell something is happening is when I see the blue A spinning. It really is a very good product; unless, of course, you are dong something so I/O intensive that you NEED every millisecond of I/O time, that is.

      Remember, what may be great for you, and your situation, isn't what is great for "the majority". Nearly every person I personally interact with *needs* on-access scanning because they couldn't be bothered to pay attention to what the hell they're doing. If they lose a few milliseconds here or there, it won't be the end of their lives...

      The main problem with most anti-virus software is that they do on-access or real-time scanning, thus wasting a vast amount of time scanning things that have no need to be scanned at precisely the most inconvenient time possible.

      --
      bork bork bork!
    55. Re:One Word by michrech · · Score: 1

      Oh YEAH?! Well 105.3% of all statistics are completely wrong! ;)

      Yes, there are some horrible skins available for the software that supports it, but not *all* of the skins are bad!

      I happen not to mind the default skin for Avast!, though some will obviously disagree. Still, Avast! is still a very good virus scanner (losing out only to NOD32 and one or two other for-pay scanners (that weren't McAfee or Symantec)), from what I've been reading...

      --
      bork bork bork!
    56. Re:One Word by weirdcrashingnoises · · Score: 1

      jw how does Avira compare to Avast! ...?

      been using Avast! for awhile and it works great, never noticed any slowdowns, but if someone has a link to any kind of article that compares the two i would be interested.

      simply saying "it works better/faster because i know it does" will not convince me.

      --
      sigs... don't talk to me about sigs....
    57. Re:One Word by Anonymous Coward · · Score: 0

      I emphatically disagree, and I demand you justify the 2.5% where it's not the worst thing you can do.

    58. Re:One Word by spyrochaete · · Score: 2, Informative

      You can (and should) disable the interface skins when installing Avast or at the preferences screen. They should make this the default since the skinned interface is very cryptic and the unskinned interface is above average in usability.

    59. Re:One Word by msuarezalvarez · · Score: 1

      Note I did not say that the actual skins are bad: I mean that skinability is brain-dead in most cases. Why oh why does an antivirus app need to look different from the other apps? In the particular case of an antivirus app, they should be working in fact in making it so that the users does not even *know* it is there instead!

    60. Re:One Word by arth1 · · Score: 1

      The main problem with clamwin is that it does not do on-access or real-time scanning. *All* virus scanning is done manually, or via schedules.

      It works *great* on mail servers (I set clamAV up for a school on their courier-imap/postfix mail server and it cut down the amount of crap they received *greatly*).

      Yeah, it works *great* on low volume mail servers with lots of RAM and fast CPUs. With high volume e-mail, or where you don't have a boatload of RAM and CPU power, it does more damage than good. To the point that when I troubleshoot e-mail server problems, my first question is now "do you run clamav?".
      A typical example is a medium-to-high volume mail server that has been running for years, without any problems whatsoever, and a load never even hitting 0.2 or above. Then someone installs clamav, and the memory usage goes through the roof, the latency on mail increases, and the load is high.

      Yeah, clamav is a good product, but it is cthulhuware that you need to dimension, anoint and bless your servers for before you install it.

    61. Re:One Word by grahamd0 · · Score: 1

      Or you could just stick with AVG and disable the browser plugin.

    62. Re:One Word by element-o.p. · · Score: 1

      ...making it almost useless in a desktop environment.

      As opposed to, say, Norton or McAfee?

      --
      MCSE? No, sir...I don't do Windows. Yes, I am an idealist. What's your point?
    63. Re:One Word by cparker15 · · Score: 3, Informative

      According to http://www.clamwin.com/content/view/35/27/, on-access functionality is going to be in the next major version.

      --
      Have you driven a fnord... lately?

      You must wait a little bit before using this resource; please try again later.

    64. Re:One Word by blincoln · · Score: 1

      I used to believe the same thing. Then my PC got infected by an autorun virus that was included on a music player I bought (new).

      I disabled autorun after that, but it got me thinking - if Windows still has stupid stuff like autorun of USB devices enabled by default, what other potential vectors are there for infection?

      I've been running AVG with on-access scanning enabled ever since.

      --
      "...always new atoms but always doing the same dance, remembering what the dance was yesterday." -Richard Feynman
    65. Re:One Word by MBGMorden · · Score: 3, Informative

      Actually just visiting the wrong web site can get your computer infected even if you follow all of that advice.

      Generally not with the NoScript part in place. Firefox already blocks pop-ups, but with NoScript I can filter down by domain what scripts to allow - I only allow scripts for very trusted sights (ie, like Slashdot, NeweEgg, my bank etc), and I NEVER, even for those sites, whitelist any script coming from offsite, which kills any scripts that an ad might run. I also run AdBlock Plus as well to kill non-scripted ads, but that's usually to get rid of annoyances more than actual harmful stuff.

      With NoScript in place a page basically can't infect you unless you specifically enable scripts from that domain to run.

      Now of course a "trusted" sight could become compromised if hacked or if the admin went over to the dark side for some reason, but that rarely happens.

      As I said, I've dealt with the little trojans that download the tons and tons of self-replicating spyware and viruses, but only to remove them from other peoples' computers. My own computer hasn't seen a virus or spyware in years :).

      --
      "People who think they know everything are very annoying to those of us who do."-Mark Twain
    66. Re:One Word by silent_artichoke · · Score: 1

      It takes about 12 seconds to disable that if you don't know where to find it in the settings, and two if you do. I went to Avast after quite a few years of AVG because the latest version of AVG Free likes to pop up IE windows at night. IE isn't even my default browser. That announcement scared me good the first night. I went in and turned it off the next day.

    67. Re:One Word by MBGMorden · · Score: 1

      Yes, but a lot of those seem to be for things that ClamAV isn't designed for. On Access and On Demand got poor and very poor, when neither of those features are even part of the product. In personal experience, I setup the Email gateway system at work, and it runs on a Linux system that scans/filters all incoming mail with ClamAV. If it passes, the mail is then sent on to our main email system (Lotus Domino based) which then runs it's own Symantec Antivirus checks. That's been in place since early 2005. We are not huge, but do have a little over 400 users on the system and receive a decent email volume. Not once in all that time has ClamAV EVER missed a virus that Symantec subsequently picked up. In just a few cases Symantec did quarantine a few because of bad file extensions (executables), but it didn't detect the virus. This was always for brand new viruses though and ClamAV was always updated within a day or two and started blocking them earlier in stream.

      --
      "People who think they know everything are very annoying to those of us who do."-Mark Twain
    68. Re:One Word by Wicked+Zen · · Score: 1
      Program Settings > Sounds > check box that says "Disable Avast! Sounds"

      Or, you can go to your system sounds settings and customize your Avast! sounds just like you can your Windows sounds.

    69. Re:One Word by element-o.p. · · Score: 1

      NOD32 absolutely *rocks* -- I use it on some servers here at work, and on all of my wife's home and business PCs -- but I have had problems downloading updates from time to time. While the primary cause of this problem is poor Internet connectivity, I don't particularly like the way the web client that Eset built into NOD32 works when it sees packet loss (it gives up).

      --
      MCSE? No, sir...I don't do Windows. Yes, I am an idealist. What's your point?
    70. Re:One Word by michrech · · Score: 1

      The server I setup was an Athlon X2 (I don't recall what speed -- probably a 3200+) with about 1GB DDR2 ram and a couple SATA HDD's. They had about 150 users (give or take a few) who were receiving a *TON* of junk mail a day (thousands of messages daily -- I don't recall any specific numbers now). This server also acted as their firewall, squidguard, web server, and samba. It's been in place for two years now (in its current configuration) and there hasn't been one peep out of them, other than several "Thank You!" cards I've received in the mail for making their server work far better than the previous server (Novell) did.

      The sites you've been looking at are either FAR busier than mine, or were configured wrong. Dunno. *shrug*

      Yeah, it works *great* on low volume mail servers with lots of RAM and fast CPUs. With high volume e-mail, or where you don't have a boatload of RAM and CPU power, it does more damage than good. To the point that when I troubleshoot e-mail server problems, my first question is now "do you run clamav?".
      A typical example is a medium-to-high volume mail server that has been running for years, without any problems whatsoever, and a load never even hitting 0.2 or above. Then someone installs clamav, and the memory usage goes through the roof, the latency on mail increases, and the load is high.

      Yeah, clamav is a good product, but it is cthulhuware that you need to dimension, anoint and bless your servers for before you install it.

      --
      bork bork bork!
    71. Re:One Word by lucifuge31337 · · Score: 1

      clamwin almost doesn't suck ass. http://clamwin.com/

      --
      Do not fold, spindle or mutilate.
    72. Re:One Word by Anonymous Coward · · Score: 0

      Once in a while people tell me about their favorite antivirus software. I tell them I only use rule 4 from your list. To date, nobody knows what I'm talking about, and they often try to help me by warning about how many viruses I must have. At that point I usually laugh, evil like.

      Once every couple of months, or when I suspect there's a problem, I install AVG Free and test my computer. More often then not there are no problems found. Then I immediately uninstall AVG - because I can't stand its background services and general BS "protection".

      To make an analogy, background antivirus protection is like a laser guided condom. If you need it to be laser guided, you have other problems. Perhaps your browser has a mind of its own, and it makes you insecure. If trojans intimidate you, then why overcompensate? I was a real swinger back in the day, and we didn't used to worry about trojans. You just had to make sure to limit... Gah. Okay, to hell with the analogy. There's enough smut on the net already.

    73. Re:One Word by Anonymous Coward · · Score: 0

      Because those things aren't actually provided for you to leech from, you cheap cunt.

      How about, you pay the asked price or you buy something else you can afford - that's how the free market works, not "I can't afford it so I'll steal it". Prick.

    74. Re:One Word by TornCityVenz · · Score: 1

      Google search string AVG...10 hits ... /. x 10 maybe they will rethink the wisdom.

      --
      I Need someone to rebuild a Digitech Digital Delay pedal for me....for me...for me...for me.
    75. Re:One Word by Anonymous Coward · · Score: 0

      At the company where I was formerly System and Network Administrator, my linux mail servers ran ClamAV, and the Windows workstations also ran Clamwin. On top of that I had strict policies regarding being stupid with company computers. I also kept a golf club at my desk as an implicit method of enforcing said policies.

      We never had a virus problem during my tenure.

    76. Re:One Word by Orion+Blastar · · Score: 1

      Which sounds good, except that I tried to install NoScript in Firefox 3.0 and for some reason it said it could not install. Is there an alternative to it that works with Firefox 3.0?

      --
      Remember, Slashdot does not have a -1 disagree moderation, and no, troll, flamebait, and overrated are not substitutes.
    77. Re:One Word by Raenex · · Score: 1

      That's what checksums are for. It doesn't matter where a file comes from if the file size and md5sum match publicized numbers from a trusted source.

    78. Re:One Word by Anonymous Coward · · Score: 0

      I mention this because there is a windows client that uses the same FOSS engine -- ClamWin.

      And if you want clamd for windows use this "official" Win32 distribution, always an engine version behind, but is much better suited to servers and knowledgeable users than clamwin:

      http://w32.clamav.net/ ...


      Slow Down Cowboy!

      Slashdot requires you to wait between each successful posting of a comment to allow everyone a fair chance at posting a comment.

      It's been 8 minutes since you last successfully posted a comment

    79. Re:One Word by MBGMorden · · Score: 1

      Hmm. I'm running NoScript fine on 3.0 :S.

      --
      "People who think they know everything are very annoying to those of us who do."-Mark Twain
    80. Re:One Word by rtechie · · Score: 1

      Is there a good AV software package that is free and up to date and doesn't suck ass?

      No, and there almost certainly never* will be.

      The key thing in your list is "up to date". It takes a very large amount of work to identify and create definitions for new viruses as they appear. This is essentially "real-time" work that requires dedicated staff to address. An AV package that can't produce a definition for a virus "in the wild" for a single day is now considered useless. This is where ClamAV falls down, it's definitions always lag behind commercial vendors who have dedicated staff that do nothing but find new viruses and create definitions.

      * = There is a way around this. Stealing. Several Russian and Chinese AV vendors simply steal their AV databases from other vendors (Trend, Symantec, etc.) simply releasing a few days after their source.

    81. Re:One Word by kesuki · · Score: 1

      well, comodo's got a new service, it's not free, with their 'pro plus' firewall, that guarantees that if you get malware, a paid security guy will remotely fix your machine for you.

      i can just imagine blackhats abusing this to try and cripple the product, but if it i'm strongly considering requiring all my relatives who run afowl of malware get the service so i don't have to fix their computers anymore.

    82. Re:One Word by DavidRawling · · Score: 1

      You'll want a reasonably current version of NoScript - or if you're a Vista user, try downloading the XPI file and then drag and drop the XPI file into Firefox.

      I remember having to do that to get it going the first time. After that it's been updated multiple times with no issue.

    83. Re:One Word by kesuki · · Score: 1

      so what do you do with people who download porn, play online game sites, want the dreaded cursors from hell, or intentionally install this shit on their siblings computers, just to piss them off...

      hey i know good passwords can help that last, but what about a shared machine... if they've got an account and can install software... they can hose the whole machine with the right download...

      then what about the people who want to download illegal content from shadey sites, like say, every frickign warezable video game and all the hacks for them, especially the ones that contain stealth rootkits...

      god, you have no clue what it's like to admin a system where people actually use software or websites and think EVEN THOUGH THEY DIDN'T PAY YOU IT'S YOUR JOB TO FIX THEM WHEN THEY BREAK.

      yeah live in your perfect world where you don't run afowl of any security exploits.. you'd do a better job as an admin if you had 2-3 junker machines behind a full stateful inspection firewall (i recommend a hardened Linux from scratch install) and went out looking for bad sites, and bad software, and actually TESTED the various pay/free software to SEE what works and what doesn't.

      you might get good at reflashing bioses when they get hosed by malware, instead of stupidly thinking that stealth rootkit your nephew got from a porn site, couldn't possibly have infected the BIOS when there ARE ONLY 3-4 BIOS makers on the market, and infecting them to auto reinstall malware is nowhere near impossible, as long as you don't corrupt any critical parts of the bios image...

    84. Re:One Word by kesuki · · Score: 1

      "I download movies for free."

      You could have infected your system with malware already then.

      "I download music for free."

      Ditto.

      "I download porn for free."

      You HAVE malware installed already, i can tell, the first thing hackers figured out how to do was make free porn into system compromises.

      Don't deny it, I ASKED a paid hacker back in 2006 how easy it was to hack me, and he only laughed.

      "I download operating systems for free."

      no promise this keeps you safe from malware given 1, 2, and 3.

      "I download software for free."

      You could easily be downloading a dancing pig, don't expect FOSS to be immune, there have been numerous attempt to get malware into trusted repositories, windows based FOSS is just asking for trouble, because usually the source requires a 'paid' compiler package from Microsoft, do you really trust that mafia hackers didn't set up and pagerank that software just to get a malware vector for their paid hackers?

      "Why shouldn't I expect antivirus software to be free as well?"

      your free malware/av software is virtually guaranteed to be impotent. if major players like mcaffee can't keep up with crap from 2006, why would free software do so? if free software was capable, why does google who loves FOSS write it's own in house malware/av scanner? Right now only one anti malware company 'promises' the ability to use computer techs to FIX your malware problem, over the internet. guess who? comodo. with their 'pro plus' firewall, it's not even a normal AV suite, it's from a corporate security firm, that rolled out a free as in beer firewall, and eventually figured out how bad the AV/anti malware industry was getting. no it's not free, but at $40 a year it's priced to sell.

    85. Re:One Word by kesuki · · Score: 1

      "People do not tend to clean toilets for free."

      you have a very limited experience with Mysophobic people, huh. some of them won't use any toilet, public or belonging to themselves without cleaning it first, they also wash their hands a lot, but some get really uptight about toilets.

      its more or less rare, and highly associated with OCD, but i've always wondered why there are 'paper' toilet seats in some rest rooms, are you really that worried about germs on your ass? what about touching other paople's bottoms?

      if there was some deadly disease that transferred from butt to butt, i'd a be more pragmatic about it, but realistically the worst thing to touch on a person is their hand, the next worst place is their mouth. typically toilets are cleaned with harsh, ugly chemicals, and as mythbusters showed, the toil seat was the cleanest sample site in their lab.

      IIRC, they also compared dog saliva to one of the mythbusters to see if human or dog saliva had more bacteria, not sure about that... maybe someone else will remember clearly.

    86. Re:One Word by drew · · Score: 1

      The three major free ones that I know of are AVG, Avast! and Avira. I used (and recommended) AVG until a little over a year ago, when I finally got sick of some of the changes that they made when their new version came out. Of the other two (I forget which is which now) one of them seemed ridiculously crippled, and the other would through up and endless stream of nagware to upgrade to the pay version.

      At one time, AOL offered a free AOL branded version of Kaspersky, which I used for about a year before my license ran out. By that time, AOL had dropped Kaspersky in favor of McAfee, which I won't touch with a 10 foot pole. I think also Google offers a free version of Norton... which I wouldn't touch with a 10 meter pole.

      Anyway, after my AOL/Kaspersky installation expired, I fought for about a week with trying out various different free options and finally bit the bullet and paid the $30/year for ESET's NOD32. Well worth it. No nags, completely unobtrusive, updates frequently (but again, unobtrusively) and I have never once noticed an impact on system performance. Alternatively, based on my experience with AOL's branded version, Kaspersky seems to be a solid product, but I've never used the full version. It's a little more expensive than NOD32, but supposedly easier to set up for people who are not so technically inclined.

      Anyway, to sum up, the free options that I am aware of are AVG, Avast!, Avira, AOL/McAfee, and possibly Google/Norton. But honestly, if you have the $40 laying around, you'll easily save yourself $40 worth of frustration by going with NOD32.

      --
      If I don't put anything here, will anyone recognize me anymore?
    87. Re:One Word by Thalagyrt · · Score: 1

      Cthulhuware.

      That's fucking awesome.

      --
      Buffalo buffalo Buffalo buffalo buffalo buffalo Buffalo buffalo!
    88. Re:One Word by Eskarel · · Score: 1

      Trusted sites get hacked quite often(well perhaps not trusted sites, but sites which you have to trust to get work done).

    89. Re:One Word by Kalriath · · Score: 1

      if Windows still has stupid stuff like autorun of USB devices enabled by default

      Nope. It asks you what to do now. And it also wont autorun anything except an executable now (again, it still asks first).

      --
      For a site about things like basic rights, Slashdot users sure do like to censor "dissent".
    90. Re:One Word by Kalriath · · Score: 1

      Sounds like you're describing fucking CA e-Trust antivirus. First thing I do when I reboot my work PC is open task manager and kill InoTask, InoRT, InoRPC, ITMRTSVC, and close the taskbar icon manually. Otherwise, I just plain cannot do anything on the PC without waiting half an hour for it.

      --
      For a site about things like basic rights, Slashdot users sure do like to censor "dissent".
    91. Re:One Word by SenseiLeNoir · · Score: 1

      No it doesn't ask in that autorun case. I was also under the impression that autorun will be more careful about automatically running a EXE from a removable disk and I got lazy about disabling Autorun. However, I got blasted by a virus recently via that means. Rather embarrassing, because in over 15 years of computing, I never got a virus, ever, despite never running "on demand" virus checkers.

      --
      Have a nice day!
    92. Re:One Word by Orion+Blastar · · Score: 1

      Thanks I'll try that. It is one of those extensions that I couldn't get to install correctly without errors.

      --
      Remember, Slashdot does not have a -1 disagree moderation, and no, troll, flamebait, and overrated are not substitutes.
    93. Re:One Word by Orion+Blastar · · Score: 1

      I tried it and I got the following errors in the error log:

      Error: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISafeOutputStream.finish]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: file:///D:/Program%20Files/Mozilla%20Firefox/components/nsExtensionManager.js :: closeSafeFileOutputStream :: line 508" data: no]
      Source File: file:///D:/Program%20Files/Mozilla%20Firefox/components/nsExtensionManager.js
      Line: 508

      Error: e.location.getItemLocation(e.id) is undefined
      Source File: file:///D:/Program%20Files/Mozilla%20Firefox/components/nsExtensionManager.js
      Line: 4007

      I have no idea why I am getting these errors I tried Noscript from the main web site and the Mozilla add-on page as well with the same results.

      --
      Remember, Slashdot does not have a -1 disagree moderation, and no, troll, flamebait, and overrated are not substitutes.
    94. Re:One Word by ardle · · Score: 1

      On my "live work station", I'll use whatever my "live work station providers" (read "employers") provide. If I'm responsible in my use of it, any mishaps are their problem.
      For my home computer, I want something non-intrusive and obviously want more control.
      I've just installed ClamWin and the preferences panel was a joy (all being relative ;-) I've scheduled a scan of what I want when I want (couldn't do that with AVG).
      I don't think as many people will be intimidated by the range of options available - users (generally) these days are more used to that kind of interface thanks to file-sharing and ripping tools. It'd be a shame to see Clam pushed to the margins because of bad publicity.

    95. Re:One Word by Kalriath · · Score: 1

      Try updating Windows then. Apparently you're missing a year or two of updates.

      --
      For a site about things like basic rights, Slashdot users sure do like to censor "dissent".
    96. Re:One Word by znerk · · Score: 1

      I appreciate the pointers, but it really isn't an issue. I come home from work, turn on my pc, wait 30 seconds, log in, then I go make a plate of food and/or change out of my work clothes. I am typically greeted a few minutes later by the announcement that Avast has updated itself, usually just before I sit down to start playing whatever time-wasting interactive activity I'm playing this week. It's not in the way, and the only time it's really annoying is if I leave my pc on all day (meaning that it gets a second update when I'm not expecting it), and happen to be watching a movie when it goes off (when I have the volume cranked so I can hear the movie).

      Like I said, it's such a small issue, I won't bother fixing it. To be honest, a more pressing concern in my mind is "Why does most, if not all, DVD playing software for Windows seem to have a volume deficiency, requiring me to crank the volume to maximum if I want to sit on the couch instead of at my desk?"

      --
      This work is licensed under a Creative Commons Attribution 3.0 Unported License.
  3. How do you really feel? by SoupGuru · · Score: 5, Insightful

    Why don't you tell us how you really feel about AVG?

    --
    What doesn't kill you only delays the inevitable
    1. Re:How do you really feel? by Anonymous Coward · · Score: 5, Funny

      Ok. It's run by Jews in a secret conspiracy to take over the World using sharks with frickin' lasers and gorgeous fembots with a penchant for evil.

    2. Re:How do you really feel? by Anonymous Coward · · Score: 0

      imagine a beowulf cluster of them

    3. Re:How do you really feel? by The+Clockwork+Troll · · Score: 5, Funny

      In this day and age it's sad to see that anti-sharkitism is still alive and well.

      AVG = Alotta VaGina?

      --

      There are no karma whores, only moderation johns
    4. Re:How do you really feel? by Anonymous Coward · · Score: 0

      I KNEW IT!

    5. Re:How do you really feel? by Anonymous Coward · · Score: 0

      Ok. It's run by Jews in a secret conspiracy to take over the World using sharks with frickin' lasers and gorgeous fembots with a penchant for evil.

      The real joke here is that it was modded informative.

    6. Re:How do you really feel? by AppHack · · Score: 1

      If this is informative, my view of reality is really screwed up. Hmmmm, and it's not even Friday yet.

    7. Re:How do you really feel? by seandiggity · · Score: 0, Troll

      Ok. It's run by Jews in a secret conspiracy to take over the World using sharks with frickin' lasers and gorgeous fembots with a penchant for evil.

      "Score 5, Informative"!?! Seriously? Something is VERY wrong in slashdotland.

      --
      Geeks like to think that they can ignore politics, you can leave politics alone, but politics won't leave you alone.-rms
    8. Re:How do you really feel? by Anonymous Coward · · Score: 0

      Well, I can tell you that I use the commercial version on about 20 machines, and we don't have any problems from them. I have no idea what any of this is about, actually; I've never seen any of this from our machines.

      We use their network firewall (which works well and is centrally-administrable, though that could use a few tweaks) and their anti-virus scans (which could use a few "please stop distracting my users" tweaks but is basically good). I've never seen anything to do with browser integration, for either browser.

    9. Re:How do you really feel? by immcintosh · · Score: 5, Insightful

      One of those times I wish you could moderate the moderation as +1 Funny.

    10. Re:How do you really feel? by Anonymous Coward · · Score: 1, Informative

      Ok. It's run by Jews in a secret conspiracy to take over the World using sharks with frickin' lasers and gorgeous fembots with a penchant for evil.

      Score:5, Informative ?

    11. Re:How do you really feel? by triathlon4life · · Score: 1

      Don't forget laser cats!

    12. Re:How do you really feel? by Anonymous Coward · · Score: 0

      Sign me up!

    13. Re:How do you really feel? by Achromatic1978 · · Score: 1

      What I'm trying to figure out why it's acceptable in Slashdot eyes to fake your user agent to get to a web site that otherwise won't let you in (a la many Opera users and online banking) for completely arbitrary reasons, but somehow when a company is doing it, it becomes unacceptable? The two aren't perfect parallels, I grant you, but still, it's laughable watching the anger here on this.

    14. Re:How do you really feel? by Telecommando · · Score: 1

      Something is VERY wrong in slashdotland.

      You're new here, right?

      --
      Beta sux! Join the Slashcott! http://hardware.slashdot.org/comments.pl?sid=4760465&cid=46173047
    15. Re:How do you really feel? by flerchin · · Score: 2, Insightful

      It has nothing to do with faking the user agent and everything to do with using far more bandwidth and resources than is necessary to do a job that will be minimally effective at best. 6% of slashdot's traffic is not an insignificant amount of bandwidth. As another poster put it, they are using a flamethrower to take out a hornet's nest, on the whole bloody internet.

      --
      --why?
    16. Re:How do you really feel? by znerk · · Score: 1

      What I'm trying to figure out why it's acceptable in Slashdot eyes to fake your user agent to get to a web site that otherwise won't let you in (a la many Opera users and online banking) for completely arbitrary reasons, but somehow when a company is doing it, it becomes unacceptable? The two aren't perfect parallels, I grant you, but still, it's laughable watching the anger here on this.

      It's not about the user agent for me... it's about the DDoS. Smaller websites are getting knocked offline by this crap. Hell, Slashdot has had a 6% traffic spike.

      I don't have any idea how many hits per day Slashdot gets, but I would estimate it as frikkin huge, and I know I wouldn't want 6% of their traffic landing on my site...

      --
      This work is licensed under a Creative Commons Attribution 3.0 Unported License.
    17. Re:How do you really feel? by bhtooefr · · Score: 2, Insightful

      Because the websites that are blocking Opera, or non-IE browsers, or whatever are usually doing it for completely arbitrary reasons as well.

      The websites that are blocking AVG are doing it because AVG doesn't obey robots.txt, it seems.

    18. Re:How do you really feel? by seandiggity · · Score: 0, Troll

      No can't say that I am :) But apparently now I'm a troll. At least the AC comment that got modded 5 pts is marked "Funny" instead of "Informative" now...

      --
      Geeks like to think that they can ignore politics, you can leave politics alone, but politics won't leave you alone.-rms
    19. Re:How do you really feel? by gbjbaanb · · Score: 1

      gorgeous fembots with a penchant for evil.

      and this is a bad thing? "Hey girls, I'm evil, over here, yep, come to bad daddy" :-)

    20. Re:How do you really feel? by Anonymous Coward · · Score: 0

      I for one welcome our gorgeous fembot overlords with a penchant for evil!

    21. Re:How do you really feel? by duckInferno · · Score: 1

      The issue is that it's consuming tons of bandwidth, not that it's trying to pass itself off as human.

      --
      Fool me once, shame on you. Fool me twice, watch it -- I'm huge!
  4. I discovered this the hard way by brunascle · · Score: 5, Interesting

    A couple months ago, a random article on my company's site got around 20 times the number of hits that the top story of the day should be getting. I checked the logs, and saw legit-looking IE user agents, but they didnt look normal. None of them had any cookies, and none of them were downloading the CSS or image files that they should have been. The IP addresses were from all around the world. WTF?

    I found out that Google was doing one of its things where it changes the google logo for some special occasion, and it links to a search. That article was on the first page of the results.

    I did a search for the exact user agent and discovered it was AVG. When you go to a Google search, AVG downloads each result looking for malware. Hooray for falsified user agents.

    Though, I suspect the reason they use a legit-looking IE user agent is because malware sites could sniff the AVG user agent and serve up an innocent page for them, and malware for everyone else.

    1. Re:I discovered this the hard way by jsailor · · Score: 4, Insightful

      I did the same and for the same reasons.
      Not sure how this practice justified the poster calling them slimey.
      I've been relatively happy with AVG. Perhaps, someone could elaborate on how they are slimey. This appears to be an attempt to protect people.

    2. Re:I discovered this the hard way by Darkness404 · · Score: 5, Insightful

      Perhaps, someone could elaborate on how they are slimey. This appears to be an attempt to protect people.

      Ok, think of the /. effect. Now take that on almost any website who's servers aren't as strong. This is basically a huge DDoS attack on many websites by AVG that has a reason behind it. But it is still a DDoS attack.

      --
      Taxation is legalized theft, no more, no less.
    3. Re:I discovered this the hard way by Clover_Kicker · · Score: 4, Insightful

      They might be dumb instead of slimy...

    4. Re:I discovered this the hard way by whencanistop · · Score: 2, Funny

      and none of them were downloading the CSS or image files that they should have been.

      So they don't load anything that could possibly install a virus on your computer when doing these checks?

      Sounds to me like this is a bit of really useless functionality that will just eat up your bandwidth.

      Thanks AVG. You've just confirmed to me that all antivirus software is pants.

    5. Re:I discovered this the hard way by jeiler · · Score: 2, Insightful

      I could agree with it being called a DDoS attack if the intent was to actually deny service. It's not--the intent is to index pages for malware as part of their version of McAffey's SiteAdvisor.

      If one wants to call such a thing a DDoS attack, then one must also condemn Google every time they index the website.

      --

      If you haven't been down-modded lately, you aren't trying.

      Sacred cows make the best hamburger.

    6. Re:I discovered this the hard way by initdeep · · Score: 2, Insightful

      not really.

      in order to "cause" the "attack" the website must come up in a search.

      all this does is "pre-crawl" the pages in a search result to look for malware.

      so unless everyone is searching google for the same thing, it really doesn't do a ton.

      unless of course you run some pos server and have somehow gotten your result for whatever to be top ranked and of course it's a popular search string.

      but then, i would blame the company, not avg, since they've gone to the trouble to probably cause this themselves.

    7. Re:I discovered this the hard way by MillionthMonkey · · Score: 1, Insightful

      Perhaps, someone could elaborate on how they are slimey. This appears to be an attempt to protect people.

      Yes, it's a very well-intentioned DDoS attack.

    8. Re:I discovered this the hard way by Darkness404 · · Score: 4, Insightful

      But how many times does Google go to the site? About once a day, if even that. This is obviously going there much more then once a day. So taking the 5 major search engines (Google, Ask, Live, Yahoo!, and MSN) that equals to about 5 visitors per day, again, it could be a bit less or a bit more but around 5 visitors per day, not downloading images or anything else, it wouldn't stress your bandwidth much, but say you had 1,000, 10,000 per day, that might start to create problems when your site is used to getting say about 500-5,000 human hits per day.

      --
      Taxation is legalized theft, no more, no less.
    9. Re:I discovered this the hard way by Darkness404 · · Score: 1

      Think of it this way, say you were a company that had a name that was a misspelling of a site, they typed it in, and clicked on the "Did you mean *insert real site here*" link, now the AVG bot just visited your site. And most company web pages are on low-bandwidth plans anyways so this could seriously cost you tons of money.

      --
      Taxation is legalized theft, no more, no less.
    10. Re:I discovered this the hard way by UltraAyla · · Score: 2, Insightful

      If one wants to call such a thing a DDoS attack, then one must also condemn Google every time they index the website.

      I think most of the rest of your point stands, but this doesn't. The difference between google and AVG is that Google's servers coordinate so you don't end up with thousands or millions of requests from them in a short span of time (as many sites are reporting) and they obey robots.txt so you can opt out. If AVG had servers that kept track of the results of these scans so that every client didn't need to download a page but instead communicated with AVG for results, then the comparison would stand.

    11. Re:I discovered this the hard way by InlawBiker · · Score: 4, Informative

      They are attempting to help their customers at the expense of everybody else on the Internet. If I understand the article, they're pre-scanning every possible URL on a page. In essense they're clicking every possible link before you do.

      For instance I searched for "avg" on google and counted the number of "href=" appearances on the resulting page. It happened to be an even 100. AVG is visiting ALL of of those HREFs in the background. A user will click on only one.

      I would assume their scanner is smart enough to remove duplicates HREFs and do some other smart things. But still, this is a terrible idea. I guess we all have to go buy more servers and bandwidth so the anti-virus people can make a living now?

    12. Re:I discovered this the hard way by Anonymous Coward · · Score: 0

      I run a webserver on my DSL link, which has a cap of 20Gb/month. Normally I'm using around 5Gb/month, but if one of my pages started coming up on a common websearch, it could easily be pushed over the allowance by AVG's aggressive preloading.

    13. Re:I discovered this the hard way by jamie · · Score: 5, Insightful

      Prefetching your search results doesn't protect you from viruses any more than just checking the pages you try to load at the time of loading.

      What it does, is basically scanning the entire internet, weighted toward the pages its users search for, and I assume reporting back to AVG which websites have malware or suspected malware on them.

      The problem with this theory is that malware sites can move around quickly, so learning that domain xzclqqkxzz.com tried to upload a virus to someone's computer 48 hours ago is not especially valuable information.

      That's in addition to AV software being essentially impossible to keep up-to-date anyway, you can look up studies but most AV software lets a lot of malware through.

      And the increased traffic annoys webmasters because the prefetches are (attempted to be) disguised as actual page fetches, and they come from all over the internet, so we think they're real clicks from real users but they're not. Plus, for some sites the increased load/bandwidth may be a problem.

    14. Re:I discovered this the hard way by Anonymous Coward · · Score: 0

      You're wrong. This is almost exactly the opposite of indexing. If AVG occasionally crawled sites centrally, then had their toolbar url-match search results with *them* OR did a preload of the url when the user clicked on a search result and presented them with a warning dialogue before moving them to the page that'd be one thing, but they've instead opted to force the user to preload every search result.

      For sites with high search result ranking this results in an effective ddos. They've essentially created a huge blind zombie net that mechanically beats up search results whether the user wants to view the site or not.

    15. Re:I discovered this the hard way by Anonymous Coward · · Score: 0

      Yes, in the same way the space robots protect you from the terrible secret of space. Well close anyway. By fucking over webmasters/webhosts with thousands of nonsensical requests for pages the user won't even view (and thus are no threat to him).

    16. Re:I discovered this the hard way by DustoneGT · · Score: 1, Interesting

      You, my friend, are caught in the AVG reality distortion field.

      A former employer of mine would put AVG on everything. They almost learned their lesson when a bunch of machines with AVG installed went to hell at the same time. The computers would get caught in an endless reboot cycle.

      First came denial. They wouldn't admit that it was AVG's fault, even though that was the common thing on all machines. Then they contacted AVG and got a patch that would fix the problem, but we had to go all over town putting it on all kinds of machines

      In the end we figured out that an AVG update would mess up machines that used to have Norton AV installed.

    17. Re:I discovered this the hard way by Al+Al+Cool+J · · Score: 2

      Google respects robots.txt, including the crawl-delay directive. AVG doesn't even try to access robots.txt.

      This thing has taken my servers offline several times in the past month, something Google has never done. It is a hostile bot in my view, and is causing me more trouble than all the Russian and Chinese spam crawlers combined.

    18. Re:I discovered this the hard way by karot · · Score: 5, Insightful

      Dumb is what they were BEFORE they were told about the problem. Slimy is what they are now that they are refusing to rectify the situation and behave.

      I think they deserve everything they will inevitably get as a result of this.

      --
      Enjoy Y2K? Roll-on Year 2037!
    19. Re:I discovered this the hard way by sm62704 · · Score: 2, Insightful

      They might be dumb instead of slimy

      Hanlon's Razor is often cited, but I don't think it applies. I rather believe in most cases the truth is the exact opposite; you can call it "mcgrew's razor" if you like.

      "Never attribute to stupidity that which can be adequately explained by greedy self-interest unless proven otherwise."

      I'll believe "slimy" until "stupid" is proven.

      --
      mcgrew's razor: Never attribute to stupidity that which can be explained by greedy self-interest
    20. Re:I discovered this the hard way by Anonymous Coward · · Score: 0

      I don't see who would think checking pages for malware is a bad thing. It is indeed there to protect us (or at least you).
      But what AVG does is actually kind of useless because it doesn't only check pages you are visiting (blocking them for virus check before delivering them to you, as most antivirus usually do), it also check for pages you MIGHT visit.

      Now this may seem cool, I mean, it looks like you might actually save time because when you click on a link, it has already been check. What they obviously didn't think about is that although being more time-efficient, this solution uses far more resources: Web traffic, which can be bad for servers, and for you, but also CPU and HDD time as you check the pages.
      If you don't spend much time on each page, this could actually end up slowing you down.

    21. Re:I discovered this the hard way by jeiler · · Score: 1

      But how many times does Google go to the site? About once a day, if even that.

      That's not what I've seen at the sites I've administrated, but those were webforums where the content is added to daily, and I have no idea how Google sets up spidering (frequency, number of agents at one time, etc). I do know that when we get spidered, even if it's just by one search engine, we can have 20+ "guests" all from the domain doing the searching. And yes, they spider every frikkin page.

      Being spidered is all part of being on the internet. Google at least is honest enough to do so openly from their domain (though, IIRC, they also disguise their UA). The important questions here are "Does the AVG spider follow the robots.txt rules?" and "Do they try to hide/distribute their IP addresses?" If the answer to either of these questions is "Yes," then we have a problem--if not, however, we have only umbrage.

      --

      If you haven't been down-modded lately, you aren't trying.

      Sacred cows make the best hamburger.

    22. Re:I discovered this the hard way by brunascle · · Score: 2, Insightful

      AVG doesn't even try to access robots.txt.

      Even if it did, it wouldnt really change anything, since it's not just 1 server doing it, it's everyones' PCs. They couldnt be expected to all communicate and coordinate how often then hit servers. If they're going to coordinate, it would make more sense to just share the info about which sites were malware and which werent, which would actually be better than what they're doing now.

    23. Re:I discovered this the hard way by sm62704 · · Score: 3, Insightful

      All AV software compaies are slimey, because AV software gives you a false sense of security. It can't detect any malware that isn't in its database, and it can't stop a luser from running a trojan. But the luser doesn't know this, and thinks it's safe to click on any damned thing.

      If your OS "needs" AV, your OS, IMO, sucks badly.

      --
      mcgrew's razor: Never attribute to stupidity that which can be explained by greedy self-interest
    24. Re:I discovered this the hard way by thePowerOfGrayskull · · Score: 1

      Erm... CSS and image files can install a virus?

    25. Re:I discovered this the hard way by Bert64 · · Score: 1

      They spoof as IE, because seeing an IE user agent, especially a non current one, signifies to the malware server that the user is not likely to be very security conscious and therefore are a good target for malware attacks...
      A user agent saying firefox on linux is much less likely to be an attractive target for a malware spreader.

      --
      http://spamdecoy.net - free throwaway anonymous email - avoid spam!
    26. Re:I discovered this the hard way by jeiler · · Score: 2, Insightful

      Correction: "The important questions here are "Does the AVG spider ignore the robots.txt rules?" and "Do they try to hide/distribute their IP addresses?" If the answer to either of these questions is "Yes," then we have a problem--if not, however, we have only umbrage."

      Sorry. Momentary braino.

      --

      If you haven't been down-modded lately, you aren't trying.

      Sacred cows make the best hamburger.

    27. Re:I discovered this the hard way by Bert64 · · Score: 3, Informative

      Google, as other search engines, not only obey robots.txt but also quite clearly identify themselves a GoogleBot and connect from an IP address registered to Google.

      Another company that's particularly bad is Cyveillance, they also regularly spider sites very aggressively (redownloading the same content repeatedly even tho it hasn't changed), and they try to spoof their user agent.
      If you mail them to complain, they will claim to remove your sites from their spider if you give them the IPs, but they lie... They will continue spidering your sites, but from a different IP range which is still traceable to them.

      --
      http://spamdecoy.net - free throwaway anonymous email - avoid spam!
    28. Re:I discovered this the hard way by Al+Al+Cool+J · · Score: 1

      Not all hits are equal, and if necessary robots.txt can be used to tell bots to stay away from processor-intensive dynamic pages. When my server load starts to shoot through the roof, it automatically switches to a more restictive robots.txt for a few minutes.

    29. Re:I discovered this the hard way by whencanistop · · Score: 1

      Ok, he didn't mention javascript files as well, but I am sure that was just a mild oversight.

    30. Re:I discovered this the hard way by QuantumRiff · · Score: 2, Insightful

      Don't most antivirus software companies scan emails by acting as a "proxy" to the imap/pop server, downloading the message, then relaying it to the mail client? Seems it would be much smarter to have the anti-virus just load a small proxy server on the machine, and configure the browser to use that proxy. Then it could scan the traffic, and then pass it on to the browser, and intercept bad stuff before it hits the browser..

      --

      What are we going to do tonight Brain?
    31. Re:I discovered this the hard way by Anonymous Coward · · Score: 0

      The feature would be no good if it *didn't* ignore robots.txt.

      So that's an invalid claim.

    32. Re:I discovered this the hard way by ballwall · · Score: 1

      It's worse than that. The bot crawls the adwords links as well, but it does so poorly. There are two issues.

      1. They may be actually charging advertisers money for the fake clicks.

      2. Adwords can use url parameters to send data about the search (for example, instead of linking to http://mysite/ it links to http://mysite/?query=my+search+params

      AVG doesn't handle this properly and requests the URL http://mysite/%3Fquery%3Dmy+search+params which instead of even returning the page it's purportedly scanning returns a 404.

      They may not be malicious but they are definitely completely incompetent.

    33. Re:I discovered this the hard way by Vu1turEMaN · · Score: 1

      An anonymous lolcat told me that this might be the reason that icanhascheeseburger.com was slowed to a crawl yesterday.

    34. Re:I discovered this the hard way by Eli_Courtwright · · Score: 1

      Sibling posts are quoting Hanlon's Razor, but I prefer Grey's Law: "Any sufficiently advanced incompetence is indistinguishable from malice."

    35. Re:I discovered this the hard way by The+Angry+Mick · · Score: 1

      Ok, think of the /. effect. Now take that on almost any website who's servers aren't as strong.

      It's not just server strength or robustness that's affected, it's bandwidth consumption, which is especially disturbing for smaller sites that pay per traffic. AVG is eating bandwidth, and site owners are eating charges.

      --

      I'm not tense. I'm just terribly, terribly, alert.

    36. Re:I discovered this the hard way by Victor_0x53h · · Score: 1

      I always believed sufficient stupidity was indistinguishable from malice.. In their defense, I've been pretty happy with AVG myself when compared to Norton or McAfee on my Windows machines. That being said, I'd hold off on calling them slimy since there's no motive for them to have done this to be malicious. I was surprised by the article brief.

    37. Re:I discovered this the hard way by jonbryce · · Score: 1

      When you go to google, you get 10 links, and you might visit one of them if the summary info suggests it is what you want. With AVG you visit all 10, so the traffic is going to be at least 10 times higher.

      I don't know what happens if you go back to the same google page and choose a different link. Does it visit all 10 again?

    38. Re:I discovered this the hard way by osu-neko · · Score: 1

      This is Windows. It wouldn't surprise me if you can infect your computer by opening the wrong text file in Notepad...

      As for image files, yes, certain versions of certain operating systems have been able to be infected by a maliciously constructed GIF file, and I believe IE allows some interesting funkiness inside CSS vis a vie Javascript, so that's probably possible too.

      --
      "Convictions are more dangerous enemies of truth than lies."
    39. Re:I discovered this the hard way by wbean · · Score: 2, Interesting

      Not only that but it doesn't really work, either. I was tracking down a site that was being pointed to by a really unfriendly link. The site was full of malware but AVG showed the friendly green checkmark when it pre-scanned the site!

    40. Re:I discovered this the hard way by jonbryce · · Score: 1

      Does the virus care what browser you are using?

      Unless it morphs depending on what browser you are using, isn't it going to just try to infect everyone?

    41. Re:I discovered this the hard way by Lars+T. · · Score: 1

      Ok, think of the /. effect. Now take that on almost any website who's servers aren't as strong. This is basically a huge DDoS attack on many websites by AVG that has a reason behind it. But it is still a DDoS attack.

      If your server isn't that strong, you shouldn't SEO for a term that gets searched a lot.

      --

      Lars T.

      To the guy who modded me down from perfect to terrible Karma - Apple haters still suck

    42. Re:I discovered this the hard way by Anonymous Coward · · Score: 0

      Never attribute to malice what can be explained by stupidity.

    43. Re:I discovered this the hard way by jeiler · · Score: 1

      Not quite invalid (though I quite agree that abiding by robots.txt would impair functionality). "Cannot access page to scan for malicious content" is also a valid response--one that leaves to the user whether or not they access the page.

      --

      If you haven't been down-modded lately, you aren't trying.

      Sacred cows make the best hamburger.

    44. Re:I discovered this the hard way by kalirion · · Score: 1

      I think they deserve everything they will inevitably get as a result of this.

      What could they possibly get as a result of this when all they're doing is protecting your children from malware?

    45. Re:I discovered this the hard way by Anonymous Coward · · Score: 0

      What happens when someone designs an account management page, or a shopping cart, etc. where the "delete" is a link? ....

    46. Re:I discovered this the hard way by MMInterface · · Score: 1

      Yes. This might depend on whether you trust their expertise or their intentions. Either way I wouldn't be happy with them if I was a user.

    47. Re:I discovered this the hard way by DavidTC · · Score: 1

      And, more to the point, as this sort of behavior is obviously a spider anyway, the obvious thing to do is simply only present the malware when an actual web browser is visiting.

      I get real pissed as 'pre-computer' scanning. Antivirus email proxy scanning is the cause of approximately 75% of the 'my email is not working' problems I have to deal with, and now I'm just imagining what sort of stupid shit prefetchers are going to cause.

      Look, if your product cannot stop malware from executing, it's not an antivirus. There are dozens of ways to get malware onto a system. Heck, there are even HTTP methods that are 'unprefetchable'. For example, an auto-POSTing form when you reach the page, or a javascript redirect that's pieced together.

      If your product can stop malware from executing, then stop fucking around with incoming data streams and wait for it to actually try to execute.

      --
      If corporations are people, aren't stockholders guilty of slavery?
    48. Re:I discovered this the hard way by Xtifr · · Score: 2, Interesting

      They are attempting to help their customers

      Attempting is the operative word here. Someone with limited bandwidth may consider the fact that their browser is attempting to download several dozen web pages simultaneously to be somewhat less than helpful. Not to mention, someone who is at or near their ISP's (stated or unstated) bandwidth caps may find this to be pretty obnoxious too.

      A user will click on only one.

      At most one. It's highly possible that a user will click on none.

      My sympathies for Windows users and the contortions they have to go through to avoid being infected/invaded/p0wned is generally pretty minimal, but this is just over the top. Talk about a cure that's worse than the disease!

    49. Re:I discovered this the hard way by brunascle · · Score: 1

      it just occured to me that you were talking about disallow. i was thinking of crawl-delay :)

    50. Re:I discovered this the hard way by znerk · · Score: 1

      Erm... CSS and image files can install a virus?

      As a matter of fact, yes.

      JPG has been a vulnerability in many pieces of software, there's stuff all over the net about it. Not that I've ever actually seen it "in the wild", mind you, but it is apparently an attack vector. It appears to be yet another buffer exploit.

      CSS can load Javascript, yes? Nuf sed.

      --
      This work is licensed under a Creative Commons Attribution 3.0 Unported License.
    51. Re:I discovered this the hard way by arcade · · Score: 1

      I'm not at all sure what SEO means, but why shouldn't you? Why should you expect some idiots to do malicious stuff like this (or maybe just 'so plain stupid that's it's malicious anyways) ? And, say, what if you've been on the internet for quite a while, having some very nice old and often accessed webpages - who loads of people link to (thus higher pagerank) ? Should you have to suffer the cost? Even though it's just your personal playpen - that just got way more expensive due to the AVG idiots?

      The internet isn't just major corporations. It shouldn't be. It's also loads of individuals who rent servers and put up their playthings. Why should these be suffering just because of some *idiots* like AVG?

      What AVG is doing is morally - and hopefully criminaly - wrong. There is nobody else to blame than them.

      --
      "Rune Kristian Viken" - http://www.nwo.no - arca
    52. Re:I discovered this the hard way by Joeyspecial · · Score: 1

      Are we still talking about AVG, or have we moved on to the Bush administration?

    53. Re:I discovered this the hard way by Anonymous Coward · · Score: 0

      "Perhaps, someone could elaborate on how they are slimey"

      When website operators pay per unit of bandwidth to host their site, releasing a "tool" which is essentially a DoS attack on every website your customer visits is definitely slimey

      Those of us who run unpaid websites are doing it for the benefit of humans, not for some download script that uses bandwidth we paid for and discards the result

    54. Re:I discovered this the hard way by geekoid · · Score: 1

      I like what they are doing.
      So screw you.

      --
      The Kruger Dunning explains most post on /. http://en.wikipedia.org/wiki/Dunning%E2%80%93Kruger_effect
    55. Re:I discovered this the hard way by slashdot.org · · Score: 1

      Prefetching your search results doesn't protect you from viruses any more than just checking the pages you try to load at the time of loading.

      I'd guess the reason they do this is because when they check a page, they interact with their own server. That would make loading a web-site slower, and so they decided to prefetch so they can do the work upfront and when the user actually clicks they're already done. (of course there are many, much more productive, ways to get around that problem).

      At least one problem with their implementation is that they don't send cookies. So they aren't always going to get the same html as the browser is getting. And of course given the rules posted elsewhere on /. it's entirely ineffective if the 'bad guys' want to make it so.

      All in all it sounds like a poorly designed product (that could have actually been fairly useful/effective).

    56. Re:I discovered this the hard way by sexconker · · Score: 1

      It's not DDoS, but it is DoS.

      It's certainly not an attack though.

      I've got the AVG link scanner running.
      It runs whenever I do a google search and displays a handy little icon next to the results. Fun.

      I always assumed that AVG was keeping a db somewhere and checking against that. I had no idea it was trawling through the sites every time you ran a search.

      (I initially set this option to diabled, but then there was no way to turn off the damned alert about it, so I enabled it. No skin of MY back...)

    57. Re:I discovered this the hard way by tokul · · Score: 1

      MSNBot - 467 hits on robots.txt - 846.15 KB of traffic
      Yahoo Slurp - 160 hits and 5.15 MB
      GoogleBot - 28 hits and 1.88 MB
      AskJeeves - 16 hits and 124.22 KB
      BaiDuSpider - 34 hits and 3.78 KB
      MJ12bot - 2 hits and 80.83 KB
      others - 98 hits and 150 KB

      thats a lot for a personal website with total 26.7 MB traffic.

    58. Re:I discovered this the hard way by Rev_Frozt · · Score: 1

      not really.

      ya really

      in order to "cause" the "attack" the website must come up in a search.

      No they have to come up as a potential link on any page the person visits. The connectivity of the internet is high enough that this is a very high ratio to the actual number of site visits, if you have a site that is highly connected to other sites, it has a particularly high cost (e.g. the "digg this" link on so many news sites). Assuming google uses the refcount as its sole ranking, this means that the highest google hits get mashed up when any of the sites that reference them are viewed.

      all this does is "pre-crawl" the pages in a search result to look for malware.

      "All this does" is follow every link on every page you view on the off-chance that you view it, and then fail to database the results. The reason people say this is skeevy is that they don't collect the results that each client generates and perform simple DB queries instead of hammering servers. Of course, this would be an "invasion of privacy" since they would be sending browse information across to a remote host to check or update the database for a specific site... The net cost of this rudimentary solution is borne by the customer in performance costs and by the most interconnected sites on the internet in the form of traffic and the resulting load.

      so unless everyone is searching google for the same thing, it really doesn't do a ton.

      No, you don't know what you are talking about.

      unless of course you run some pos server and have somehow gotten your result for whatever to be top ranked and of course it's a popular search string.

      Now you are just sounding stupid, did you write this thing? I bet you don't even think it's a big deal to use BUBBLE SORT for large data sets with very short keys!

      but then, i would blame the company, not avg, since they've gone to the trouble to probably cause this themselves.

      The cost of running servers to handle even 25% more traffic than required is not a one-time payout, it comes in the form of maintenance and facilities bills every month. There is no reasonable justification for this cost, and it is the result of a faulty design. If they are going to prescan, they should prescan when a new page would be loaded instead of scanning the links of the current page without user action. Let the user/app take the brunt of the cost, not the internet.

    59. Re:I discovered this the hard way by Anonymous Coward · · Score: 0

      This isn't a problem of GOOGLE going to the site, it is a problem that when YOU, Joe User, do a Google search, that YOUR copy of AVG on YOUR PC downloads all ten sites that are listed in your Google search.

      You then decide to visit one of those sites, and when you have finished, you go back to your Google search and YOUR copy of AVG downloads all ten sites in the list *AGAIN*.

      Multiply for millions of users now downloading ten times as much data as before, and many websites are now seeing a huge increase in fake traffic to their sites, etc.

      Additionally, YOU are recorded by your ISP as having visited all ten of those sites. On a search with a "dodgy" website listed in the results, to your ISP it looks like YOU actually visited that site. Think about the sort of sites that you might not want to appear in court for having "viewed", and then think about how you might try to explain that you hadn't "viewed" them. Your ISP's logs tell a different story.

      Do you have an internet plan with a usage cap? AVG is now multiplying your bandwidth usage behind the scenes.

      AVG LinkScanner is easily detected by websites, so the nasty sites are already sending GOOD content to the Scanner, and then sending the garbage only when the real visitor arrives. So, the technology is totally FLAWED. Bad move by AVG.

      When installing AVG 8, make sure that you select the option to NOT install this add-on component. It does NOT protect you from harm, and it pushes up your bandwidth usage, while revealing you as an AVG user to every site you access. You are also being recorded as having visited various "dodgy" sites that you may not have actually planned on visiting.

    60. Re:I discovered this the hard way by Evil+Poot+Cat · · Score: 1

      Stop obfuscating the issue (same goes to whatever shills/idiots gave +3 to parent).

      AVG client prefetches every URL on a given page, as served up by whatever site.

    61. Re:I discovered this the hard way by Anonymous Coward · · Score: 0

      This isn't a problem of GOOGLE going to the site, it is a problem that when YOU, Joe User, do a Google search, that YOUR copy of AVG on YOUR PC downloads all ten sites that are listed in your Google search.

      You then decide to visit one of those sites, and when you have finished, you go back to your Google search and YOUR copy of AVG downloads all ten sites in the list *AGAIN*, and again and again.

      Multiply that for millions of users now downloading ten times as much data as before, and you will see that many websites are now seeing a huge increase in fake traffic to their sites, etc.

      Additionally, YOU are recorded by your ISP as having visited all ten of those sites. On a search with a "dodgy" website listed in the results, to your ISP it looks like YOU actually visited that site. Think about the sort of sites that you might not want to appear in court for having "viewed", and then think about how you might try to explain that you hadn't "viewed" them. Your ISP's logs tell a different story.

      Do you have an internet plan with a usage cap? AVG is now multiplying your bandwidth usage behind the scenes.

      AVG LinkScanner is easily detected by websites, so the nasty sites are already sending GOOD content to the Scanner, and then sending the garbage only when the real visitor arrives. So, the technology is totally FLAWED. Bad move by AVG.

      When installing AVG 8, make sure that you select the option to NOT install this add-on component. It does NOT protect you from harm, and it pushes up your bandwidth usage, while revealing you as an AVG user to every site you access. You are also being recorded as having visited various "dodgy" sites that you may not have actually planned on visiting.

    62. Re:I discovered this the hard way by Bert64 · · Score: 1

      I know this, i was replying to someone.. Pointing out other issues (ie the fake user agent) and describing another company that sends unwelcome hits to sites i run.

      --
      http://spamdecoy.net - free throwaway anonymous email - avoid spam!
    63. Re:I discovered this the hard way by mdmkolbe · · Score: 1

      If your OS "needs" AV, your OS, IMO, sucks badly.

      All viruses get in through security holes, but now days in my experience most of them use the one between the chair and the keyboard that's not the OS's fault. On Linux, it wouldn't be very hard to write a shell script that serves as an e-mail virus.

    64. Re:I discovered this the hard way by bmcage · · Score: 1
      Dude, the poster is CmdrTaco, the founder of slashdot, the one with a userid 255867 below yours. Where have you been hiding?

      As to why this is slimey:
      1/one page generates traffic to 10+ other sites
      2/bandwidth usage on those sites is used up. Slashdot sees 6% of it!
      3/Your address is now registered on all those sites as visiting (fortunately not in the cooking), also if those are sites with porn, malware, copy-infringing material, ...
      4/Suppose Google starts to offer this on their search results, or all other virus checkers do it too. Can you image that? 99% of the internet would be used up by stupid checks on trustworthy sites
      5/If AVG wants to protect it's users, they should pay for it themselves: crawl the net like google (with rotating fake user agents), construct a black-list, mirror that list on server farms around the world, and have each link checked with those servers when loading a page. Ahh, what? Too costly? Off course, but now they use the money of the user, the provider and the ISP to offer this 'protection'. That is slimey!

    65. Re:I discovered this the hard way by Anonymous Coward · · Score: 0

      Hooray for falsified user agents.

      I know you were being sarcastic, but I agree with this statement anyway. User agents were a horrible idea in the first place.

    66. Re:I discovered this the hard way by Anonymous Coward · · Score: 0

      They might be dumb instead of slimy...

      Never attribute to ignorance that which can be attributed to a profit motive.

    67. Re:I discovered this the hard way by Anonymous Coward · · Score: 0

      Oh for god sake, what a load of superior non-sense from a "l33t" sysadmin!

      Sure, what you say is a *limitation* but it's better than not being able to scan the file AT ALL!

      ALL OSs have potential (and real) viruses/hacks/bugs/security flaws, the failing of the majority of the internet computer science populace is to realise Windows is the target of most because they have such a large user base, and to compound that problem, most of the users don't want to know the first thing about computer care.

    68. Re:I discovered this the hard way by Anonymous Coward · · Score: 0

      I've been relatively happy with AVG. Perhaps, someone could elaborate on how they are slimey. This appears to be an attempt to protect people.

      Perhaps because this functionality is enabled by default with no option in the installer to disable it (barring hidden commandline parameters you have to Google for to discover).

    69. Re:I discovered this the hard way by Anonymous Coward · · Score: 0

      Without promoting any company or anything, there is one (free) product available that doesn't work like that. Just search around for A-VSMART, but please don't do it with AVG installed, you'll bring down their website :)

    70. Re:I discovered this the hard way by dbIII · · Score: 1

      Pretty nasty for those on dial up or using 3G wireless modems charged at dollars per megabyte.

    71. Re:I discovered this the hard way by 1u3hr · · Score: 1
      Attempting is the operative word here. Someone with limited bandwidth may consider the fact that their browser is attempting to download several dozen web pages simultaneously to be somewhat less than helpful. Not to mention, someone who is at or near their ISP's (stated or unstated) bandwidth caps may find this to be pretty obnoxious too.

      Good God! Australian ISP Telstra has have a bandwidth cap of 2GB/month -- that's with DSL. And if you were stuck on dial-up, you'd probably freeze trying to use Google unless you worked out what was going on and turned it off.

    72. Re:I discovered this the hard way by Anonymous Coward · · Score: 0

      never attribute to malice....and all that jazz

    73. Re:I discovered this the hard way by Spacezilla · · Score: 1

      Perhaps the malware site checks the headers as well and serves up a different page for detected AVG scanners, making the entire thing even more pointless.

    74. Re:I discovered this the hard way by Tazor · · Score: 1

      I had no idea that the "feature" in AVG had such an impact on websites. I will disable the "feature" as soon as possible and tell all my friends to do the same. AVG is in many ways a good product, but this time i think they tried to help the user just a little too much.

      --
      "I find your lack of faith disturbing"
    75. Re:I discovered this the hard way by Kalriath · · Score: 1

      They already did. The W3C tells people to cut that shit right out - all GET requests should be... what's that word that means "doesn't do anything"?

      --
      For a site about things like basic rights, Slashdot users sure do like to censor "dissent".
    76. Re:I discovered this the hard way by martyros · · Score: 1

      That's the thing -- there's no need to have 10 million people each checking the same web page independently. They could have a centralized server keep cached results; they could probably even set up a peer-to-peer system to share results without having to spam web pages.

      --

      TCP: Why the Internet is full of SYN.

    77. Re:I discovered this the hard way by Tim+C · · Score: 1

      Well I don't think that Link Scanner is slimy (just that it has unintended consequences that make it a bad idea), but towards the end of last year I had AVG 7 free version installed on my machine. For a while, on booting the machine and logging on, Firefox would be launched and directed to a page advertising a limited-time money off offer for AVG Professional.

      I run AV software to help keep adware and other malware off my machine, not to act as adware itself.

    78. Re:I discovered this the hard way by Tim+C · · Score: 1

      "Does the AVG spider follow the robots.txt rules?" and "Do they try to hide/distribute their IP addresses?" If the answer to either of these questions is "Yes," then we have a problem--if not, however, we have only umbrage.

      This isn't a spider though. Link Scanner plugs in to the user's browser and automatically follows every link on the first page of any search results they get.

      There are no IP addresses to hide, the request comes from the user's PC. And no, of course they don't honour robots.txt - for this to be of any use at all it has to be indistinguishable from a real browser. If it isn't, then malicious sites can return a fake benign page to fool it.

    79. Re:I discovered this the hard way by karot · · Score: 1

      What AVG are doing protects my child from the Internet no more than scanning the link at the point it is clicked, rather than scanning a page full of links that will never be clicked.

      AFAIK Every other AV manufacturer stores a pre-scanned list of good/bad URLS at a central location. Why can't AVG do the same rather than piss off web-admins un-necessarily?

      Just my 2p.

      --
      Enjoy Y2K? Roll-on Year 2037!
    80. Re:I discovered this the hard way by karot · · Score: 1

      How insightfully put :)

      You are entirely entitled to like what they are doing. At the same time, thousands of web admins are entirely entitled to complain about the un-needed extra cost that they are landed with for bandwidth.

      What they are doing provides no benefit to the end user - it just slows down the PC by AV scanning links that you will never even think of clicking.

      Sounds pretty dumb to me.

      --
      Enjoy Y2K? Roll-on Year 2037!
    81. Re:I discovered this the hard way by Anonymous Coward · · Score: 0

      Even worse is the fact that they don't even know how to obey W3C standards and they did not implemented the HEAD BASE tag!!!

      They are dumb and bad programmers!!!!

    82. Re:I discovered this the hard way by Anonymous Coward · · Score: 0

      Yes, many do. This security feature does not work.

      It gives a false sense of security to users.

    83. Re:I discovered this the hard way by mangastudent · · Score: 1

      What happens when someone designs an account management page, or a shopping cart, etc. where the "delete" is a link? ....

      They already did. The W3C tells people to cut that shit right out - all GET requests should be... what's that word that means "doesn't do anything"?

      idempotent, I think.

      In this context, it means the operation doesn't change state. Might not be strictly true for a web site (i.e. a log file is modified), but nothing significant is changed. Particularly, doing it multiple times will result in no noticeable change.

    84. Re:I discovered this the hard way by sm62704 · · Score: 1

      All viruses get in through security holes, but now days in my experience most of them use the one between the chair and the keyboard

      That was part of the point I was making. You can't expect your average user to be as knowledgable as your average slashdot reader, and it's not a good thing that he thinks he's safe because he's running AV.

      --
      mcgrew's razor: Never attribute to stupidity that which can be explained by greedy self-interest
    85. Re:I discovered this the hard way by sm62704 · · Score: 1

      Windows is the target of most because they have such a large user base

      Apple shipped 1,764,000 Macintosh® computers in a single three month period. That's a pretty big potential botnet.

      The "large user base" excuse doesn't hold up.

      What would make a Mac user more knowlegeable than a Windows user? There seems to me to only be one reason why there are no Mac viruses in the wild, and it isn't popularity or "windows user cluelessness".

      --
      mcgrew's razor: Never attribute to stupidity that which can be explained by greedy self-interest
    86. Re:I discovered this the hard way by Anonymous Coward · · Score: 0

      Oh boo fucking hoo. Let's see Slashdot is whining because they are getting a bullshit traffic glut? Pot meet kettle. I guess karma really does come around.

      The greater burden should be on ISP's, webmasters and the ad services they support to police themselves. If anything the end users taking this sort of action are acting in a more responsible fashion by making an attempt at dealing with potentially malicious areas. Isn't the bitch here that end users are always stupid and letting themselves get infected? Now a software company is providing a tool to help at the expense of inconveniencing webmasters. Too bad. I'll run it and you'll have to deal with the heavier bandwidth and bad click count just like I have to deal with blocking your ads, scripts, and stupid click counters.

  5. Slashdot Justice by mrbcs · · Score: 1
    Can we not link this from here, Fark and Digg and maybe give them some of their own medicine?

    This is sleazy, too bad they have a good free antivirus.

    --
    I'm not anti-social, I'm anti-idiot.
    1. Re:Slashdot Justice by Billhead · · Score: 2, Interesting

      Except that it's not good.
      That is, of course, unless you consider it deleting legitimate programs for being "Generic Trojans" a good thing.

    2. Re:Slashdot Justice by initdeep · · Score: 1

      i find it to be very good.

      and it has far fewer false positives in testing than some of the "top end" programs you pay for.

    3. Re:Slashdot Justice by Anonymous Coward · · Score: 0

      Load AVG on your computer. Then do a buncha searches that return results from AVG's sites.

  6. I turned it off by stoolpigeon · · Score: 5, Informative

    I use AVG on a couple machines. I didn't really think about the traffic tracking piece of this when I saw it working, I just thought about it slowing me down, increasing bandwidth use, etc. and I turned it off.

    I know most people don't mess with defaults - and I'm not defending them as far as the agent thing and all that - but it was easy to do.

    On the negative side my avg icon in the systray has a big exclamation over it like something is really wrong - when I know it's just because I turned off a piece of functionality I don't want to use.

    --
    It's hard to believe that's how Micronians are made. Why don't we see it right now by having you both kiss one another?
    1. Re:I turned it off by funfail · · Score: 5, Informative

      If you are using Firefox, just disable the AVG addon within Firefox addon manager. You won't get the big exclamation mark.

    2. Re:I turned it off by maxume · · Score: 5, Informative

      There is a solution to the exclamation:

      http://grandstreamdreams.blogspot.com/2008/04/taming-avg-free-version-8.html

      In short, run "avg_free_stf_*.exe /REMOVE_FEATURE fea_AVG_SafeSurf /REMOVE_FEATURE fea_AVG_SafeSearch" from a cmd box or the run box.

      Sort of a ridiculous contortion to get to an option that should be more available, but it works.

      --
      Nerd rage is the funniest rage.
    3. Re:I turned it off by hansonc · · Score: 1

      I turned it off too but the stupid exclamation point annoyed me more than the stupid check marks on Google searches.

      Now that I know what they're doing though I'll shut it off again.

    4. Re:I turned it off by initdeep · · Score: 1, Insightful

      if you google it, you can install with command line switches to not even install this part of the program.

      and thus you dont need to disable it, and thus you dont get the "somethings wrong" icon (which i just autohide anyway).

      and as to AVG being slimey, get real.

      The SLIMEY bastards in the anti-malware, anti-virus world are symantec and macafee.

      both install horribly bloated piles of horse dung which attempt to hijack everything a user does, and prevents themselves from being disabled easily for testing purposes.

      AVG provides a product that for the most part is ABSOLUTELY FREE.

      thus if you dont like it, dont use it.

      and as for the user agent strings, i'd be willing to agree with the poster above about them being legit looking IE strings to prevent possible redirection based on them if they used their own, by malware laden and virus laden sites.

    5. Re:I turned it off by sbeacom · · Score: 2, Informative

      You can choose when installing AVG under the custom install not to install the search protection at all. Your AVG icon won't show that there's an error and you don't get the ridiculous slow down while searching.

    6. Re:I turned it off by thundercleese · · Score: 5, Informative

      You can install AVG 8 without LinkScanner which returns AVG to it's previous functionality(just anti-virus).

      From the FAQ:

      If you wish to install AVG 8.0 Free Edition without the LinkScanner component, or uninstall this component from your program, please proceed as follows:

              * Download the AVG 8.0 Free Edition installation package from our website.
              * Run the installation with the parameters /REMOVE_FEATURE fea_AVG_SafeSurf /REMOVE_FEATURE fea_AVG_SafeSearch. One way to achieve this is to:
                          o save the AVG Free installation file directly to disk C:\
                          o open menu Start -> Run
                          o type
                              c:\avg_free_stf_*.exe /REMOVE_FEATURE fea_AVG_SafeSurf /REMOVE_FEATURE fea_AVG_SafeSearch
              * The installation will be started, and AVG will be installed without the LinkScanner component.

    7. Re:I turned it off by The+Gaytriot · · Score: 1

      I remember those AVG check marks showing up on my google searches as well. However, when I upgraded to Firefox 3 the plugin was not compatible and I didn't bother updating it.

      --
      Srsly u guys. U guys, srsly.
    8. Re:I turned it off by clang_jangle · · Score: 1, Insightful

      AVG provides a product that for the most part is ABSOLUTELY FREE.

      They're not a non-profit; they give away the base version because they sell more paid versions that way. Considering that "anti virus" software is all snake oil by definition, I think slimy fits. But then, some people still buy rabbit's feet, toss salt over their shoulder, refuse to break a chain letter, flip out if someone opens an umbrella indoors...

      --
      Caveat Utilitor
    9. re:i turned it off by ed.han · · Score: 1

      that change in the systray icon is b/c AVG didn't get its virus definitions updated: by default, the free version updates once/24 hrs.

      ed

    10. Re:I turned it off by Myen · · Score: 1

      Have you read their EULA? I wanted to upgrade from AVG 7, but read the EULA (which involved randomly looking around their website, because the installer just said it's on there somewhere!) and it's basically a WTFPL license, except it's licensing any and all of your data, to them.

    11. Re:I turned it off by Anonymous Coward · · Score: 2, Insightful

      The issue is not with "if you want you can disable it" - because 99.9999% of users are not aware what is happening and would not care to Google this to re-install with a feature disabled.

      The issue is that our servers are receiving 50% more hits than "necessary". This translates into money. Yes, bandwidth costs money and if we go over our allotment this month and are charged per gigabyte I will fully blame AVG for it.

      We are a legitimate site and have taken great care to ensure our code is secure. Scanning our pages hundreds of times per day is simply a waste of resources, especially when done for users who are not even visiting the site but are only seeing links to us in search results elsewhere.

    12. Re:I turned it off by Anonymous Coward · · Score: 0

      On the negative side my avg icon in the systray has a big exclamation over it like something is really wrong - when I know it's just because I turned off a piece of functionality I don't want to use.

      You can disable that component's status form being reported in the "Advance Options"

    13. Re:I turned it off by Anonymous Coward · · Score: 0

      thus if you dont like it, dont use it.

      I'm trying. Please tell me the steps needed to uninstall it from every host crawling my site.

    14. Re:I turned it off by clang_jangle · · Score: 1

      ...or even mod you troll for pointing out their superstition. ;)

      --
      Caveat Utilitor
    15. Re:I turned it off by Anonymous Coward · · Score: 1, Informative

      On the negative side my avg icon in the systray has a big exclamation over it like something is really wrong - when I know it's just because I turned off a piece of functionality I don't want to use.

      Open the AVG user interface, click Tools, Advanced Settings, Ignore Faulty Conditions. Then check Link Scanner and Web Shield. No more red exclamation point.

    16. Re:I turned it off by Hatta · · Score: 2, Informative

      AVG provides a product that for the most part is ABSOLUTELY FREE.

      AVG free is licensed for home use only, on no more than 1 PC, and reverse engineering is prohibited. That's a long, long way from ABSOLUTELY FREE.

      --
      Give me Classic Slashdot or give me death!
    17. Re:I turned it off by sumdumass · · Score: 1

      why not just disable the link scanning thing in AVG. It is as simple as opening the avg, selecting tools then advanced options, then unchecking the link scanner option. It isn't that hard.

    18. Re:I turned it off by bigstrat2003 · · Score: 1, Insightful

      Since the open-source community (in a moment of grand idiocy...) decided to adopt an already-common word, "free", it has a double meaning. Since I get AVG for $0, it is, indeed, ABSOLUTELY FREE in the most common sense of the word.

      --
      "16MB (fuck off, MiB fascists)" - The Mighty Buzzard
    19. Re:I turned it off by barakn · · Score: 2, Informative

      I upgraded to FireFox 3 and it broke the AVG addon (I have the free version, not sure if the pay version would break or not). Considering the behavior of the AVG addon, I'm glad its broken, and am thinking of migrating to a different AV product.

      --
      "I'm so moist I'm sticking to the leather." -Kermit the Frog on The Late Late Show
    20. Re:I turned it off by ciscoguy01 · · Score: 2, Interesting

      It's more than decent of them to provide a free version.
      Do you realize how many people have no ability to order any expensive worthless AV software from Mcafee or Symantec? Like nobody has a credit card?
      AVG 7.5 worked great for a free program for lots of these people. They have nowhere else to go.
      AVG7 was fairly lightweight and caused me no problems, unlike the PCTOOLS antivirus one guy kept installing at his office. It caused so many problems he had to uninstall it, but when uninstalled took the XP LSP (layered service providers) stack with it. After that he would have to call me.
      It took me 4+ hours to find that problem. There was a free thing called LSPFIX that took care of it if anyone has a computer that seems to be perfectly working but won't talk on the network.
      As to the new AVG8, I have been re-installing it with those command line switches to get rid of the link scanner. Link scanners are always a bad idea, it makes no sense to preload links from someone's yahoo page with hundreds of links they will never click on, what does anyone care if malware is behind them?
      AVG came up with a silly idea with that whole link scanner idea. Hopefully they are fixing the problem by turning that thing off right now.

      --
      .
    21. Re:I turned it off by Anonymous Coward · · Score: 0

      I came in to say this exact thing. I installed AVG with the defaults, saw that SafeSearch is a silly feature, and found this to keep that part fo AVG from installing.

      Happy AVG user for years, don't find it slimy at all.

    22. Re:i turned it off by maxume · · Score: 1

      That's the most common reason. Disabling the link scanner component is another.

      --
      Nerd rage is the funniest rage.
    23. Re:I turned it off by The+Gaytriot · · Score: 1

      Because I wanted link scanning, that's why I installed it when I went to AVG 8.0.

      --
      Srsly u guys. U guys, srsly.
    24. Re:I turned it off by clang_jangle · · Score: 1, Informative

      Do you realize how many people have no ability to order any expensive worthless AV software from Mcafee or Symantec? Like nobody has a credit card? AVG 7.5 worked great for a free program for lots of these people. They have nowhere else to go.

      Yeah, must be like shooting fish in a barrel for AVG. Seriously, "anti-virus" software is pointless, even for windows victi^H^H^H^H^H users. 98% of the time PEBKAC, and for the remaining 2% antivirus still won't help. It is literally superstition to believe otherwise.

      --
      Caveat Utilitor
    25. Re:I turned it off by CDarklock · · Score: 1

      I've been less than impressed by this feature. In general, I don't do porn, warez, or bittorrent - so the chances of ending up on a malicious site are miniscule. I haven't had any of my scanners report anything at all for years.

      My wife loves to steal her some unlicensed fan-subbed anime, though, so she frequently finds herself with malware out the yin-yang.

      I've disabled this feature on my AVG install. Drop in the bucket, but I always thought it was probably a Bad Idea anyway.

      --
      Microsoft cheerleader, blue flag waving, you got a problem with that?
    26. Re:I turned it off by Anonymous Coward · · Score: 0

      If you right click on the link scanner component in the main AVG menu you can "Ignore component state".

    27. Re:I turned it off by Molochi · · Score: 1

      I tried that first for the same reason, but I also found that this latest version is such a CPU hog that, on battery power, my notebook would slow to a crawl. Even unthrottled one of AVG8free's agents will usually be maxing out one of the processors, which means the battery dies after 1 hour of use (down from 3+ hours with normal use).

      I've had to go around and remove it from dozens of systems that did the forced update and have been rendered useless because of it.

      On the plus side it has encouraged me to do the wubi http://wubi-installer.org/ or set up a linuxVM on every system I own that didn't already have a Linux distro on it.

      --
      "The Adobe Updater must update itself before it can check for updates. Would you like to update the Adobe Updater now?"
    28. Re:I turned it off by clang_jangle · · Score: 1, Troll

      No, idiots, this is trolling:
      You windows lusers are so stupid you will squander points modding me down just for telling the truth you can't stand to hear!!!

      --
      Caveat Utilitor
    29. Re:I turned it off by sumdumass · · Score: 1

      my bad. I thought I was replying to another post complaining about how hard it is to disable. I don't know what went wrong but obviously, I didn't achieve my goal.

    30. Re:I turned it off by darrylo · · Score: 1

      Firefox users can alternatively use the WOT extension (https://addons.mozilla.org/en-US/firefox/addon/3456), which rates links from google, yahoo, msn, and other search page results. Note that the link rating is typically done only for selected pages (usually search results), and not all pages, but there's also an icon/button that displays the rating of the current website. The link ratings appear to be done by querying mywot.com's servers, and so there shouldn't be any unnecessary spamming (but see the privacy notice attached to the extension).

      Site ratings are done (partially) via a community voting system, and so it is open to abuse. However, I've generally found them to be useful.

      No registration is required, unless you want to rate sites.

    31. Re:I turned it off by ak3ldama · · Score: 0

      There is a solution to the exclamation:

      I took the easy route and just started using Ubuntu on my main machine. Problem solved.

      --
      "but money is the God of Algiers & Mahomet their prophet." - Rich. O'Bryen June 8th 1786
    32. Re:I turned it off by maxume · · Score: 1

      How nice for you.

      --
      Nerd rage is the funniest rage.
    33. Re:I turned it off by grahamd0 · · Score: 1

      ...it is, indeed, ABSOLUTELY FREE in the most common sense of the word.

      The terrorists hate us for our gratis.

    34. Re:I turned it off by Anonymous Coward · · Score: 0

      If you go into the advanced settings, you can tell it to ignore the "fault" state of having the scanner turned off so it goes back to the normal icon.

    35. Re:I turned it off by CmdrPorno · · Score: 1

      Seems extremely convoluted. It should be a checkbox option on the custom install. And it shouldn't be turned on by default.

      --
      Sent from my iPhone
    36. Re:I turned it off by jayemcee · · Score: 1

      Just right click the link scanner component and choose to ignore the component state...

    37. Re:I turned it off by Macthorpe · · Score: 1

      Repeat after me:

      Slashdot karma is not worth getting angry over.

      Again:

      Slashdot karma is not worth getting angry over.

      --
      "It does not do to leave a live dragon out of your calculations, if you live near him." - Tolkien
    38. Re:I turned it off by mdielmann · · Score: 4, Informative

      Or...
      You could install as normal, go into the LinkScanner options, disable it, go back to the main window, right-click on the LinkScanner icon, and select "Ignore Component State". Sounds a lot easier.
      On that note, I've already done this on mine.

      --
      Sure I'm paranoid, but am I paranoid enough?
    39. Re:I turned it off by Bryansix · · Score: 1

      Actually you can do this from the add/remove panel for the software. Just uncheck "Safe Search" and keep the rest of AVG.

    40. Re:I turned it off by Bryansix · · Score: 1

      It IS a checkbox option. You just have to UN-check it.

    41. Re:I turned it off by Anonymous Coward · · Score: 0

      On the negative side my avg icon in the systray has a big exclamation over it like something is really wrong - when I know it's just because I turned off a piece of functionality I don't want to use.

      Right click the disabled component in the AVG control app and select "Ignore component state". No more exclamation.

    42. Re:I turned it off by rsmith-mac · · Score: 1

      Yeah, except that said option doesn't exist, at least not for free users. The only way to remove the damn warning is to follow the GP's instructions.

    43. Re:I turned it off by CmdrPorno · · Score: 1

      You're right. But when you turn it off, AVG comes up with the big red exclamation mark in the system tray, alerting the user that something is horribly wrong, when in fact, a stupid and useless feature is disabled. I think when I simply manually turned off the plugin in Firefox, the AVG monitor didn't go apeshit like that.

      --
      Sent from my iPhone
    44. Re:I turned it off by mdielmann · · Score: 1

      Given that I'm a free user, I would disagree. In fact, I still get the nag message to upgrade to the paid-for version.

      --
      Sure I'm paranoid, but am I paranoid enough?
    45. Re:I turned it off by Anonymous Coward · · Score: 0

      The help file states it as you said, but there is no such option in the interface.

    46. Re:I turned it off by tehcyder · · Score: 1

      AVG free is licensed for home use only, on no more than 1 PC, and reverse engineering is prohibited. That's a long, long way from ABSOLUTELY FREE

      It's free like free beer, but unlike free beer it doesn't give you a headache. Oh, wait...

      --
      To have a right to do a thing is not at all the same as to be right in doing it
    47. Re:I turned it off by Tim+C · · Score: 1

      Or simply run the installer, select "Advanced" (it may be "Custom", I forget the exact wording) and uncheck the box next to LinkScanner.

      Lord only knows why their FAQ makes it seem so hard to do - it's almost as though they're trying to scam people into installing it even if they don't want it...

    48. Re:I turned it off by Anonymous Coward · · Score: 0

      I use AVG on a couple machines. I didn't really think about the traffic tracking piece of this when I saw it working, I just thought about it slowing me down, increasing bandwidth use, etc. and I turned it off.

      I know most people don't mess with defaults - and I'm not defending them as far as the agent thing and all that - but it was easy to do.

      On the negative side my avg icon in the systray has a big exclamation over it like something is really wrong - when I know it's just because I turned off a piece of functionality I don't want to use.

      You can right-click on the LinkScanner module in the AVG Control Center and select "Ignore Component State". That turns off the warning on the taskbar icons... noobs. Does anybody else think that this is blown way out of proportion?

    49. Re:I turned it off by Anonymous Coward · · Score: 0

      Go to advanced options in AVG then to ignore faulty conditions, tick the box for Link Scanner. Fixed :)

    50. Re:I turned it off by Anonymous Coward · · Score: 0

      On the negative side my avg icon in the systray has a big exclamation over it like something is really wrong - when I know it's just because I turned off a piece of functionality I don't want to use.

      I'm using the latest paid for version 8 of AVG and it is possible to turn off the link scanner without the big exclamation mark appearing. Open the AVG console and right-click the Link Scanner icon, you can select 'Ignore component state'.

  7. Hooray by genner · · Score: 5, Funny

    Hooray look at all the hits I'm getting.

    1. Re:Hooray by orielbean · · Score: 0

      Pretty soon you will be awarded with your one million internet dollars!!

    2. Re:Hooray by sm62704 · · Score: 5, Insightful

      Hooray! Look at all the OH SHIT my server's on fire!

      --
      mcgrew's razor: Never attribute to stupidity that which can be explained by greedy self-interest
    3. Re:Hooray by martin_henry · · Score: 1

      Look on the bright side - neither of us have a virus!

      --
      www.purevolume.com/martyd
    4. Re:Hooray by Artuir · · Score: 1

      See what happens when you try to install Vista??

    5. Re:Hooray by ZerdZerd · · Score: 1

      Too bad they only visit the first page. Think if they could download the ads and maybe check them out too...

      --
      I'm not insane! My mother had me tested.
  8. ACID by Anonymous Coward · · Score: 5, Funny

    I bet AVG would score higher on ACID than IE...

  9. Oh Boo Hoo by JamieKitson · · Score: 0, Offtopic

    Everybody knows that web stats are worthless. And if people want to keep their bandwidth low they should clean up their sites. I for one welcome our... etc.

  10. Slimey ? by Anonymous Coward · · Score: 5, Insightful
    please, providing millions of people with an anti-virus for free is not exactly "slimey"
    if you want the definition of Slimey see Symantec/Mcafee/MicrosoftOneCare

    while this doesnt excuse their behaviour, trying to protect people (a lot of them for free) is not Slimey but insulting them on the front page of Slashdot is

    pathetic
    1. Re:Slimey ? by PoitNarf · · Score: 1, Insightful

      The more hits Slashdot gets, the more bandwidth they're using and the more money they're spending for that bandwidth. Increased bandwidth by bots that will never click on the adverts on the page means lots of resources wasted for absolutely no gain. It is indeed slimey and the guys running Slashdot have every right to be upset with AVG because of this.

      --

      "0101100101? It's just jibberish. *looks in mirror, gasps* 1010011010@!? AHHHHHH!!"
    2. Re:Slimey ? by Anonymous Coward · · Score: 0

      If I give someone a lollipop and then turned around and smacked him over the head - would I be excused because I gave the guy something for free first?

    3. Re:Slimey ? by Anonymous Coward · · Score: 0

      Well sure if you compare AVG to that load of crap it looks amazing (and I admit it's very good btw)

      But now look at it from a webmaster's point of view. I'd get pretty mad at an antivirus that's responsible for 10% of my traffic, downloading pages people don't even open. 6% of /.'s web-traffic is a lot of trashed bandwidth

    4. Re:Slimey ? by Anonymous Coward · · Score: 0

      iawtc.

      If you have a problem with Grisoft, why not contact them directly?

    5. Re:Slimey ? by Anonymous Coward · · Score: 0

      It ain't free no more.

    6. Re:Slimey ? by Anonymous Coward · · Score: 0

      Aw, cut him some slack. He must be new around here.

    7. Re:Slimey ? by daveywest · · Score: 1

      I personally like the companies that charge $50 for anti-virus protection on a Mac.

    8. Re:Slimey ? by troutsoup · · Score: 1

      they also charge for some of their products.

      not the point whether they give away their product or charge. they are costing people money in bandwidth charges to prescan web sites.

      TFA isn't really clear on what AVG is looking at, so don't know exactly what they are scanning for in the pages.... i hope its the HTML and links in it. here's an idea. grisoft/AVG can have this one from me for free: how about they scan the users page and files as they are loaded into the computer. you know, WHEN THEY CLICK ON A PAGE OR DOWNLOAD A FILE, maybe scan the file in _realtime_ as it loads. that way they aren't generating fake traffic and costing people who don't use AVG extra bandwidth costs. maybe i should patent that idea so no other AV company can use it?

      also as ISPs start charging per megabyte/gigabyte, this 'feature' won't be all that interesting.

      --
      -- troutsoup.com
    9. Re:Slimey ? by Xtifr · · Score: 1
      please, providing millions of people with an anti-virus for free is not exactly "slimey"

      No, but spamming the web in a way that costs thousands or millions of dollars to hapless site owners is. Doing one nice thing doesn't magically make all your other activities nice. Each action you take has to be judged on its own merits.

      if you want the definition of Slimey see Symantec/Mcafee/MicrosoftOneCare

      Those would be a different kind of slimey. Those companies may even be more slimey (a highly debatable point which I'll ignore for the nonce, since I don't use Windows and am not qualified to judge the relative slimeyness of vendors whose products I don't use or need), but even if AVG is "less slimey", that's still different from being not-slimey.

      It's possible (even probable) that this all came about because the makers of AVG are simply ignorant or stupid. But is that really a recommendation for their product?

    10. Re:Slimey ? by Anonymous Coward · · Score: 0

      Yeah, I am curious as to why it's considered slimy. It's free and it's an alternative to a lot of more bloated AV software, which is why I use it.

      But, if there's a good reason to call it "slimy," I'm ready to uninstall it.

    11. Re:Slimey ? by Lehk228 · · Score: 1

      actually the bots are probably clicking EVERY ad

      --
      Snowden and Manning are heroes.
    12. Re:Slimey ? by Anonymous Coward · · Score: 0

      Fucking astroturfer.

      You know what? There's no such thing as a free lunch, and claiming that AVG is providing "an anti-virus" for free to millions is absolute rubbish. They're a company, out to make money, and while that's not bad in itself, you shouldn't forget that.

      That being said, I've also used AVG for quite a while, and it really *is* shite, and the company really *is* slimy. Yeah, Symantec and McAfee and so on are, too; there's other companies that aren't, though, and I prefer paying a modest amount for a good solution instead of using the crap that is AVG.

    13. Re:Slimey ? by Kalriath · · Score: 1

      Because Grisoft's response is "if you want to make an omelette, you have to break some eggs", which roughly equates to "try talking to someone who gives a shit, because we sure don't. Now fuck off".

      --
      For a site about things like basic rights, Slashdot users sure do like to censor "dissent".
    14. Re:Slimey ? by Ornedan · · Score: 1

      Which in turn probably means the advertiser gets to wiggle out of paying for any clicks in the period the bots have been active.

  11. "as like" by DaHat · · Score: 5, Funny

    > on Slashdot, we're seeing them as like 6% of our page traffic now

    Come on Taco... proper English (or at least something seemingly like it) isn't that hard... is 6% exactly, around 6% or really just 'like 6%'

    I honestly like, do not recall like the last time I like, saw someone use 'like' in that long standing improper way in like text, it's always like, been for me, like only something a person like, verbalizes.

    1. Re:"as like" by Anonymous Coward · · Score: 0

      I do

    2. Re:"as like" by xtracto · · Score: 1

      the typo was just an S that got dropped from "as"

      --
      Ubuntu is an African word meaning 'I can't configure Debian'
    3. Re:"as like" by Anonymous Coward · · Score: 0

      Like:
      adv. Nearly; approximately. The price is more like 1,000 dollars.

    4. Re:"as like" by Anonymous Coward · · Score: 0

      But who are you? See. No one.

      (Just like this post. No one is posting it. It's not really here. Stop getting angry over nothing, Mr. Nobody.)

    5. Re:"as like" by ObsessiveMathsFreak · · Score: 1

      Come on Taco... proper English (or at least something seemingly like it) isn't that hard...

      Taco's use of "like" was proper and correct.

      Despite "like's" notoriety in the hands, or mouths, of US teenagers, it is an effective and useful phrase and can enhance communication in both the written and spoken word. Specifically, it serves as a short pause in the sentence which adds emphasis to the words that come directly after it. It's practically a form of punctuation. Watch this.

      "I am really hungry!"
      "I am like, really hungry."

      Which sentence better communicates that the speaker or writer is very hungry? The overloading of the exclamation mark in written english leaves the first sentence ambiguous. We don't really know if the speaker is hungry, or just excited about being hungry, or just excited. The second sentence makes the speakers meaning clear without the use of any exclamation mark.

      Slang is usually derided and frowned upon by supposedly superior english speakers and writers, the kind of people who pronounce "hyperbole" as "hyperbowlly". These people would have us remove critical phrases like "OK" from our vocabulary, despite the fact that cannot come up with any adequate replacement.

      English is evolving. Learn to live with it.

      --
      May the Maths Be with you!
    6. Re:"as like" by value_added · · Score: 1

      Despite "like's" notoriety in the hands, or mouths, of US teenagers, it is an effective and useful phrase and can enhance communication in both the written and spoken word.

      You are so like totally not correct.

      English is evolving. Learn to live with it.

      What you're describing (advocating) is not evolution, but unfortunate mutations in the gene pool. Mother Nature, however, has other plans. If the process of natural selection doesn't take care of the problem, then my guess is that selective breeding (refusing to date retards, morons, and pathological illiterates) will.

    7. Re:"as like" by Planx_Constant · · Score: 1

      Before you get all snippy about usage, make sure you know what you're talking about: The first adverb definition of 'like' is "nearly; closely; approximately". It's standard English.

      --
      Heisenberg might have been here.
    8. Re:"as like" by Anonymous Coward · · Score: 0

      Funny coming from someone named "DaHat"

    9. Re:"as like" by Veggiesama · · Score: 1

      What you're describing (advocating) is not evolution, but unfortunate mutations in the gene pool. Mother Nature, however, has other plans. If the process of natural selection doesn't take care of the problem, then my guess is that selective breeding (refusing to date retards, morons, and pathological illiterates) will.

      I think somebody is kinda irked about losing, like, a spelling bee or something. I dunno.

    10. Re:"as like" by grahamd0 · · Score: 1

      I thought that was really funny until I got the sneaking suspicion that you might have meant that. Now I have to laugh awkwardly, not enough to offend you if you were serious, but enough to let you know I got the joke if you weren't.

      This party sucks, I'm going home.

    11. Re:"as like" by Anonymous Coward · · Score: 0

      "I am really hungry!"
      "I am like, really hungry."

      Which sentence better communicates that the speaker or writer is very hungry?

      Erm, how about "I am very hungry."?

      You could argue being hungry is like being thirsty, so being "like hungry" could mean you are thirsty, using the word like where it isn't needed adds ambiguity which is generally bad unless that is your intent.

    12. Re:"as like" by Anonymous Coward · · Score: 0

      I honestly like, do not recall like the last time I like, saw someone use 'like' in that long standing improper way in like text, it's always like, been for me, like only something a person like, verbalizes.

      Because spoken language is somehow a debased and corrupted version of the purity that is written text. But seriously, slashdot postings are much closer to standard spoken English than standard formal written English, and discourse hedging "like" is apparently a part of our good CmdrTaco's dialect. Sorry if it's not a part of your dialect (or not a part of your be-pedestal'd orthographic dialect), but that's no reason to hate on someone for using "like" this way.

      Check out this posting on Language Log to learn a little about the various innovative uses of "like", some of which are over 50 years old. Is 50 years some kind of threshold? Both "online" and "ergonomics" are first attested from about that long ago, and I'd guess you don't have any huge objections to them.

      A more complete listing of Language Log's postings on "like" can be found here, if you're interested.

      Other note: you called out "as like", not just "like" itself. Putting both unintended specificity and "like" aside, would you have had any objections if the statement had been "on Slashdot, we're seeing them as 6% of our page traffic now"?

    13. Re:"as like" by Anonymous Coward · · Score: 0

      I must honestly say i too often read posts by those such as dahat. Obviously educated in our public school system who have little understanding of the English language. And all too ready to ridicule someone who uses it correctly but in a way which is beyond their own understanding.

      The word like has been used at least for like 700 years and it was used properly by cmdrtaco. The problem is when someone repeatedly uses it making a sentence difficult to parse. Or uses it in improper comparisons. Such as "dahat is like in understanding as cmdrtaco".

      Perhaps dahat should consult a dictionary before complaining about proper usage of English words. Instead of just mimicking his teachers who were not properly educated.

    14. Re:"as like" by Anonymous Coward · · Score: 0

      I don't post often (note my cowardlyness), but for a linguist, this is flame bait. There are descriptivists and there are prescriptivists in linguistics and the prescriptivist attitude--your attitude--was discredited long ago as a tool of class warfare.

      Language is what is spoken and it is not the place of one native speaker to tell another native speaker that their dialect is wrong. If you've heard the construction "... as like ..." spoken by native speakers, that makes it proper English.

      Please take a second look at your post and see the symbolic violence behind the prescriptivist attitude. Then deal with the fact that English is bigger than the lexicon and structures you personally use.

  12. This is not AVG itself by brunes69 · · Score: 2, Informative

    This is not AVG doing this, it is the AVG IE toolbar. And since this is running in the IE context it is debatable if it should not use the IE user agent.

    If you use Firefox or disable the toolbar it is a non issue. The issue to me is I can't figure out how to install AVG without this toolbar, or how to remove it.

    1. Re:This is not AVG itself by Anonymous Coward · · Score: 0

      Why would an antivirus program have an IE toolbar? I'm confused enough about the need for a yahoo toolbar and a google toolbar (turn that crap off whenever something installs it, I can search well enough from the adress bar, don't need a search box for every individual search engine), but an AVG toolbar?

    2. Re:This is not AVG itself by hansonc · · Score: 1

      It does it in Firefox too.

    3. Re:This is not AVG itself by ljgshkg · · Score: 1

      In my memory, there is a checkbox during installation process that asks you if you want to have IE bar or not. Unfortunately, they enabled it by default. So, read before you click next. (Note: I'm using AVG free edition)

    4. Re:This is not AVG itself by j79zlr · · Score: 2, Informative

      You are prompted if you want the toolbar during installation. That is not the problem. It is the LinkScanner for AVG Safe Search that is causing this. You can also install AVG without it: Instructions. You can also disable the add-on in both Firefox and IE7, I do not know how to disable it in IE6.

      --
      I'm not not licking toads.
    5. Re:This is not AVG itself by Anonymous Coward · · Score: 0

      To install AVG without LinkScanner or remove it afterwards, run the setup file with the following switches:

      avg_free*.exe /REMOVE_FEATURE fea_AVG_SafeSurf /REMOVE_FEATURE fea_AVG_SafeSearch

    6. Re:This is not AVG itself by Anonymous Coward · · Score: 0

      Just use advance settings and there's a complete step in the install with an option to disable the toolbar. I installed AVG in every PC of my bussiness and I don't have the toolbar in any of them. We also use Firefox... so...

    7. Re:This is not AVG itself by Hal_Porter · · Score: 2, Interesting

      It's the same in IE6 if you have SP2 installed

      http://www.spywareinfoforum.com/lofiversion/index.php/t91168.html

      --
      echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;
    8. Re:This is not AVG itself by Stan+Vassilev · · Score: 2, Insightful

      This is not AVG doing this, it is the AVG IE toolbar. And since this is running in the IE context it is debatable if it should not use the IE user agent.

      What is debatable, is why the toolbar must scan all results for each user. A site is either malicious or it's not, such site probes must be done centrally and kept in a shared database.

      AVG instead decided to save themselves some effort and cost of doing this centrally, and incur the cost on their clients, and on the site owners who are unfortunate (heh...) to be present in Google's search results.

      If you use Firefox or disable the toolbar it is a non issue. The issue to me is I can't figure out how to install AVG without this toolbar, or how to remove it.

      So I guess CmdrTaco should just disable his toolbar and it's a non issue.. Oh, right. The issue is with the site owners as much as, if not more, than AVG's users.

    9. Re:This is not AVG itself by NobodyElse · · Score: 1

      Regarding installing AVG withOUT certain elements, I strongly suggest the "The TweakGuides Tweaking Companion." It explains exactly how to do that very thing (pg. 106-107, I think). It's a terrific source of information, and is available for free at: http://www.tweakguides.com/TGTC.html

    10. Re:This is not AVG itself by j79zlr · · Score: 1

      Ah that makes sense. The only PC's I use that have AVG & IE6 on them are Windows 2000 and no SP2 for that. I don't think there is a way to disable it other than running the command line switches upon installation to not install LinkScanner.

      --
      I'm not not licking toads.
    11. Re:This is not AVG itself by sumdumass · · Score: 1

      Why not just turn the function off in AVG? It's right there on the link scanner options in the advanced settings. No need to be messing with all the browsers or attempting to force some install.

    12. Re:This is not AVG itself by Anonymous Coward · · Score: 0

      IE7: Tools -> Manage Add-ons -> Enable or Disable Add-ons.

      This dialog allows you to enable/disable browser add-ons. You can see all add-ons (whether or not they are currently loaded,) and list add-ons which are actually loaded. You may delete ActiveX controls (toolbars.) Standard functionality in IE7.

    13. Re:This is not AVG itself by j79zlr · · Score: 1

      If you disable the LinkScanner then the icon turns gray and shows a red exclamation point complaining that it is not functionning properly. That is a problem because then if there actually is something wrong with it, you wouldn't know because the icon is always saying there is one.

      --
      I'm not not licking toads.
    14. Re:This is not AVG itself by sumdumass · · Score: 1

      Lol.. All you have to do then is check mark the link scanner under the section called "ignore faulty conditions" on the same preferences page that link scanning was accessed.

      I'm sorry I didn't spell that out earlier, I though it was obvious but evidently I thought wrong. In fact, maybe it was obvious if your familiar with the AVG 8.x setup and you (and most otherS) just need to spend a little time looking around the configuration pages just to get familiar with it. You might want to avoid changing things unless your confident about what your doing but at least knowing where the settings are and what they might do will go a long way.

    15. Re:This is not AVG itself by dave420 · · Score: 1

      Tools > Manage Add-ons > Enable or Disable Add-ons > AVG Safe Search > Disable

    16. Re:This is not AVG itself by Anonymous Coward · · Score: 0

      It's easy to NOT install it, just don't click the checkbox during the install.

  13. Alternative Anti-Virus Software? by sjbe · · Score: 4, Interesting

    So if AVG has turned to the dark side, what free/cheap non-bloatware options are out there worth trusting? I know of a few but it's a little hard to know who to trust.

    Seems like every anti-malware software maker these days bloats their software into a 50+MB beast of a package that accomplishes little more than to slow your computer down. I have more trouble with their software than I do with actual mal-ware.

    1. Re:Alternative Anti-Virus Software? by LMacG · · Score: 5, Informative

      Avast.

      It's not just for Talk-Like-A-Pirate Day any more!

      --
      Slightly disreputable, albeit gregarious
    2. Re:Alternative Anti-Virus Software? by jonnythan · · Score: 1

      BitDefender is my AV of choice.

      Spybot is my anti-malware of choice.

    3. Re:Alternative Anti-Virus Software? by Anonymous Coward · · Score: 0

      avast! is the best AV in my opinion too. I've been using it for years and it works great.

    4. Re:Alternative Anti-Virus Software? by Anonymous Coward · · Score: 0

      Yarr! I be agreein' with ye.

    5. Re:Alternative Anti-Virus Software? by mapsjanhere · · Score: 3, Informative

      I second Avast, it's free for home use, and has very reasonable commercial license terms. Plus it gives you one code for all machines, no need to chase 20 different keys like you do with Norton etc. And the key is good for the whole license period; before I used to loose at least 10 % of licenses to crashes or borked installs, and getting new ones from Norton was like pulling wisdom teeth on a grouchy alligator.

      --
      I'm aging rapidly, I bought a new game and had no idea if my machine was good for it.
    6. Re:Alternative Anti-Virus Software? by Mr.+Sketch · · Score: 1

      If you don't mind paying a little bit for your anti-virus software, NOD32 is a good choice.

    7. Re:Alternative Anti-Virus Software? by jeffmeden · · Score: 1

      Is it me or is avast just slow as snot compared to other scanners? I don't have an objective way to compare scanners (since i don't have multiple computers loaded with malware and viruses) but in my experience with relatively similar hardware and workloads, avast moved very very VERY slowly when disk scanning or processing realtime object requests.

    8. Re:Alternative Anti-Virus Software? by Anonymous Coward · · Score: 0

      Just to be fair, ClamWin deserves a mention too. It's free as in speech as well as beer.

    9. Re:Alternative Anti-Virus Software? by STrinity · · Score: 1

      ClamWin is very light and open source.

      --
      Les Miserables Volume 1 now up with my reading of
    10. Re:Alternative Anti-Virus Software? by Anonymous Coward · · Score: 0

      I would agree as I don't like the idea of AVG making my pc into a bot, but Avast sucks. I mean it really sucks. Hard.

    11. Re:Alternative Anti-Virus Software? by Beat+The+Odds · · Score: 1

      and getting new ones from Norton was like pulling wisdom teeth on a grouchy alligator.

      That ain't so bad......

    12. Re:Alternative Anti-Virus Software? by Anonymous Coward · · Score: 0

      Avast.

      It's not just for Talk-Like-A-Pirate Day any more!

      Nor is it free. I do not consider mandatory registration free. ...


      Slow Down Cowboy!

      Slashdot requires you to wait between each successful posting of a comment to allow everyone a fair chance at posting a comment.

      It's been 6 minutes since you last successfully posted a comment

    13. Re:Alternative Anti-Virus Software? by tpholland · · Score: 1

      This looks like a good option?

    14. Re:Alternative Anti-Virus Software? by cavebison · · Score: 1

      My 2c goes to Avast Home free version. Been using it for years, no problems at all.

    15. Re:Alternative Anti-Virus Software? by HeadlessNotAHorseman · · Score: 1

      Alligators don't have wisdom teeth, you insensitive clod!

      --
      I like my coffee the way I like my women - roasted and ground up into little tiny pieces.
    16. Re:Alternative Anti-Virus Software? by Anonymous Coward · · Score: 0

      Avira AntiVir

      It has a good detection rate, but the free version keep nagging you to update to the paid version every time it updates...

  14. This won't last by Anonymous Coward · · Score: 0

    With the trend of consumer broadband lines becoming metered (people paying per gb), this sort of stupidity will go the way of the dodo in a hurry

  15. Apache Rewrite Rules! by Anonymous Coward · · Score: 5, Interesting

    Try this on Apache servers:

    #Here we assume certain MSIE 6.0 agents are from linkscanner
    #redirect these requests back to avg in the hope they'll see their silliness
    Rewritecond %{HTTP_USER_AGENT} ".*MSIE 6.0; Windows NT 5.1; SV1.$" [OR]
    Rewritecond %{HTTP_USER_AGENT} ".*MSIE 6.0; Windows NT 5.1;1813.$"
    RewriteCond %{HTTP_REFERER} ^$
    RewriteCond %{HTTP:Accept-Encoding} ^$
    RewriteRule ^.* http://www.avg.com/?LinkScannerSucks [R=307,L]

    Brought to you by These guys.

    1. Re:Apache Rewrite Rules! by Anonymous Coward · · Score: 0

      8200 matches since I installed these rules yesterday.

    2. Re:Apache Rewrite Rules! by Anonymous Coward · · Score: 0

      All these rules will do is make it so that the free versions get the same UA string and the pay for strings and you know what. You will no longer be able to redirect or filter. GG

    3. Re:Apache Rewrite Rules! by pixelbeat · · Score: 3, Interesting

      Just to comment that this has been working flawlessly for me and others for days.
      In addition to much reduced load, AVG will be getting the combined load with an appropriate message in their logs.

      Note it's quite safe for valid IE 6.0 users as it checks for very specific user agent strings that most IE 6.0 users don't in fact have.
      In addition the referrer must be blank and the Accept-encoding header must be missing.

      Also I'm using a 307 redirect so so that potentially non linkscanner clients will keep checking the latest rules.
      This also allows you to change the redirect destination without worrying about cached old redirects.

    4. Re:Apache Rewrite Rules! by Anonymous Coward · · Score: 0

      I don't care, this is a solution for problem at hand until AVG comes to their senses and changes how their product works.

      Meanwhile, I'll let them pay for bandwidth usage instead of me.

    5. Re:Apache Rewrite Rules! by PPNSteve · · Score: 0

      Boo to AVG.. as a webmaster / server admin, I have to say how dare you! That is MY bandwidth you are eating up there.. pay me for it or stop it, NOW!

      We've been using this, as well, on our bigger (and more popular) sites for a day now.. so far I've noticed a decrease in server load and those quick 1-2 sec hits that jack up Apache handlers making them unavailable for our real users.

      Will be monitoring this situation to see what happens..

      --
      PPN
    6. Re:Apache Rewrite Rules! by Anonymous Coward · · Score: 5, Informative

      I have an updated version of this redirect to AVG, based on info I've been gathering over the last 2 weeks from Webmaster World, El Reg, and of course Pixelbeat. Here is the rule set I am using now:

      RewriteEngine on
      RewriteCond %{HTTP_USER_AGENT} ".*MSIE 6.0; Windows NT 5.1; SV1\)$" [OR]
      RewriteCond %{HTTP_USER_AGENT} ".*MSIE 6.0; Windows NT 5.1;1813\)$"
      RewriteCond %{REQUEST_METHOD} ^GET$
      RewriteCond %{HTTP_REFERER} ^$
      RewriteCond %{HTTP:Accept-Encoding} ^$
      RewriteCond %{HTTP:Accept-Language} ^$
      RewriteCond %{HTTP:Accept-Charset} ^$
      RewriteRule ^.* http://www.avg.com/?LinkScannerSucks [R=301,L]

      I have the check for "GET" method in there so that the earlier "User-Agent: ..." version of linkscanner will still get redirected. See, that version does a HEAD request first, most likely to check for a redirect. So we allow that HEAD request to pass, since it is small any ways. But the GET request that follows will still get redirected. We want to redirect the maximum amount of traffic we can to AVG, to drive the point home.

      This filter is also more selective, by also checking for the non-existance of Accept-Language and Accpet-Charset we make absolutely sure we are not redirecting a valid user. No web browser out there would fail to set all 3 of these, so we can be absolutely sure this is crap coming from a linkscanner.

      I also decided to use a permanent redirect, in hopes that linkscanner caches this and it will reduce the number of repeat hits from the same user? Not sure if that is the case or not.

      Someone in this thread asked if these rules work in the main Apache config file instead od using .htaccess. I don't use .htaccess on my servers either, and these rules reside in our main Apache config file. So the answer is yes, it will work in BOTH places.

      I hope by now that AVG realizes the futility in their continuing to change how linkscanner acts to try and hide it from us. We will simply continue to work together as a community of server admins to block this crap and send it right back at them!

    7. Re:Apache Rewrite Rules! by Anonymous Coward · · Score: 1, Informative

      Probably not a brilliant idea to use a 301 redirect in there.

      The original code was using a 307 (Temporary Redirect) so that when people come back having got rid of the AVG software, they'll be able to get the original page.

      Otherwise, sounds good!

    8. Re:Apache Rewrite Rules! by Pliny · · Score: 1

      Actually, the 307 was meant to minimize the damage from false positives. No matter which type of redirect is used, a person with AVG will still get to see the page so long as the rule works right. It's just the linkscanner that's being redirected, not the browser.

      --
      What does this button d$#%* NO CARRIER
    9. Re:Apache Rewrite Rules! by trawg · · Score: 1

      Does it pass the originating site along with it as a referrer or something?

    10. Re:Apache Rewrite Rules! by Anonymous Coward · · Score: 0

      Wasting precious CPU cycles rules! Why check the agent two times and a unnecessary fuzzy match?

      Optimized regex from yours truly:

      Rewritecond %{HTTP_USER_AGENT} "^Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;(?: SV1|1813)\)"

    11. Re:Apache Rewrite Rules! by Anonymous Coward · · Score: 0

      Make that:

      RewriteRule ^.* http://www.grisoft.com/ww.5130?search=link+scanner+sucks

      It'll run a search operation (CPU intensive?) on each hit. There might be other more intensive pages, or you might be able to come up with a URL redirect that signs people up to their site under the name "Another Unhappy LinkScanner Luser".

      I was going to mention the 25MB installation file, but it seems to be mirrored on Akamai, unlike the webmasters suffering the LinkScanner plague.

  16. New (free) antivirus? by Ren.Tamek · · Score: 1

    AVG has become more obnoxious recently than it used to be anyway, but I think this is the straw that broke the camels back for me. Can some nice slashdot user suggest a new (free) antivirus for me to use on my windows box?

    --
    "If you want a vision of the future, Winston, imagine a boot stamping on a human face forever." - George Orwell, 1984
    1. Re:New (free) antivirus? by Spazztastic · · Score: 1
      --
      Posts not to be taken literally. Almost everything is sarcasm.
    2. Re:New (free) antivirus? by Anonymous Coward · · Score: 1, Informative

      AVG has become more obnoxious recently than it used to be anyway, but I think this is the straw that broke the camels back for me. Can some nice slashdot user suggest a new (free) antivirus for me to use on my windows box?

      Use Linux and your antivirus paranoia will end.

    3. Re:New (free) antivirus? by KlomDark · · Score: 3, Informative

      I've been using Avast! Home Edition for a while now, no complaints.

    4. Re:New (free) antivirus? by DgtalPimp · · Score: 1

      I used Clamwinfor my AV needs. Tons of settings to adjust to your needs as well as email AV protection. http://www.clamwin.com/

    5. Re:New (free) antivirus? by 2muchcoffeeman · · Score: 1

      Never used it myself, but my clients who have say Avira AntiVir has annoying daily nag screens trying to induce upgrading to the commercial product.

      For that reason I suspect Avast! or ClamWin might be a better choice.

      --
      Prevent Windows piracy. Use Linux instead.
    6. Re:New (free) antivirus? by troutsoup · · Score: 1

      people always ask me which AV program to use when they realize norton or mcafee is junk. or has been sitting in their tray expired for ages without telling then. they ask. trout what should i replace this garbage with, and by the way i'm broke. i always answer AVG or avast home. i lean towards avast as i suspect it gets more spyware and doesn't need a separate product for it as AVG seemed to need with AVG 7 (not sure with 8?) this article sure shortens up that list i'll be suggesting to people...

      --
      -- troutsoup.com
  17. My ex wife.... by WwWonka · · Score: 5, Funny

    ....used to fake user agents all the time. As a man I thought I was always properly connecting to her internet portal. guess not.

    1. Re:My ex wife.... by Anonymous Coward · · Score: 4, Funny

      ....used to fake user agents all the time.

      You mean she called out other browsers' names during sex? Weird.

  18. Once good by Rinisari · · Score: 5, Informative

    AVG was once a good product. Then, it got bloated and started eating up kernel memory voraciously. It was impossible to play games with it running in the background, especially Crysis (skip the jokes, my system could handle it maxed once I replaced AVG with Avast!). Now, with this development, I'll be sure to replace AVG with Avast! on all of my machines, not just my gaming one.

    1. Re:Once good by Ken+D · · Score: 1

      AVG began pissing me off when it kept insisting on not running after an update unless I rebooted.
      I just booted the machine, I'm not rebooting just because you have an update.

    2. Re:Once good by ottothecow · · Score: 1
      I've experianced this problem with HL2 based games (team fortress) which has mostly lead to me disabling and closing AVG on boot.

      Thinking about either avast or avira

      --
      Bottles.
    3. Re:Once good by illumin8 · · Score: 1

      AVG was once a good product.

      I agree. AVG used to be a very good product. Their free virus scanner worked reasonably well, updated itself automatically, and the price was right. Lately they must have gotten new management because they've gotten really evil.

      They started doing the following things that I noticed:

      1. Hiding their free product and making it almost impossible to find. When you tried to download the free product, you would repeatedly be "upselled" to their pay version, and had to find the really tiny 6 pt. font at the bottom of the page to actually get the free version.

      2. The free product now pops up continuously with banner ads asking you to purchase their pay product.

      3. As of June 25th, 2008, it seems that they no longer even offer a free product. This is strange to me because it seems like my free versions are still downloading updates. Can anyone please clarify for me whether the free product still exists or not?

      In short, they turned from cool, free AV provider, to spammy, pop-up spewing marketing company in the space of a couple years.

      Can anyone recommend another free AV product for those of us stuck on Windows (due to gaming, or for other applications)? Is Avast pretty good?

      Thanks in advance.

      --
      "When the president does it, that means it's not illegal." - Richard M. Nixon
    4. Re:Once good by Anonymous Coward · · Score: 0

      http://free.avg.com/ww.download-avg-anti-virus-free-edition

      The free version is still there.

    5. Re:Once good by 0racle · · Score: 2, Informative

      As of June 25th, 2008, it seems that they no longer even offer a free product.

      Ok, no. As of June 25, they stopped supporting AVG Free 7 in order to get their free users on the Updated AVG Free 8. Incidentally, AVG 8 is the version with the problem this story is describing if you installed the IE toolbar. Anyway, 0.32 seconds for a Google search would show you the latest free version.

      --
      "I use a Mac because I'm just better than you are."
    6. Re:Once good by Anonymous Coward · · Score: 0

      1. Hiding their free product and making it almost impossible to find.

      Hide? Only if you're an idiot. Go to http://free.avg.com/ or http://free.grisoft.com/ and there it is.

      Go to google and search for "free avg" and it's the first result.

    7. Re:Once good by Anonymous Coward · · Score: 0

      They still provider a free version, but it does take some clicks to find it.

      http://free.avg.com/ww.download?prd=afe

    8. Re:Once good by pbhj · · Score: 2, Informative

      Are you sure you got AVG from Grisoft? Doesn't sound like my experience of it at all (I'm using it on Vista but have used it fro '98 and XP, but not Linux IIRC)

      To get the free version - go to free.grisoft.com (google "AVG free" it's the first link) which redirects now to free.avg.com - that seems pretty clear about where the free version is. Now they are giving you a fully functioning product so the 2 extra links to get the download I think are justified:

      Click "get it now" button under "Free basic protection". Scroll to bottom of page of features click "Download", choose the one that says "free for private use" in the left column marked "AVG free".

      That's hardly "hidden in 6pt". I didn't install, I'm on ubuntu here, but I say: it exists, it's easy to find for anyone who's not trying to be obtuse.

      It's not a proper survey but I don't get any popups except when a new version comes along, then you're offered the chance to upgrade to a pay version - perhaps they can somehow tell you're using it on a business machine, are you on a LAN?

      -

      The article.

      As for the "editor" of this article - I think some journalistic pride in making it clear it's a separate product (to AVG anti-virus) which is for malware detection. A product you can choose to use to pre-check internet links. How the heck is it supposed to work if not by, y'know like, following links and checking them for malware?

      I'm not saying it's a good thing, just that the article and the summary somewhat misrepresent the situation. Sheesh, I must be new here!

    9. Re:Once good by jrumney · · Score: 1

      3. As of June 25th, 2008, it seems that they no longer even offer a free product. This is strange to me because it seems like my free versions are still downloading updates. Can anyone please clarify for me whether the free product still exists or not?

      For a while now, there's been no link from www.grisoft.com, you have to go directly to free.grisoft.com to get the free version.

    10. Re:Once good by toddhisattva · · Score: 1

      Holy shit Avast.com has a craptastic web site.

      It may be a good product, but their shitpage screams incompetence.

      Problems:
          1. Web page only works at the single text size they chose.
          2. They waste ~1/3 of the page screen on whitespace.
          3. 1 + 2 means you've got all this wasted screen space that you cannot fill with more legible text.

      If they can't code a web page, why should I trust them to code an antivirus product?

    11. Re:Once good by Anonymous Coward · · Score: 0

      I've used AVG for 6 years and can only recall twice that it made me reboot and both were major version upgrades not virus definitions. Do you mean the anti-spyware portion...I don't use that (just AV).

    12. Re:Once good by faclonX · · Score: 1

      There's still a free version: free.grisoft.com and select the first one with 'basic' protection, then click through the upselling, and a page or 2 later it takes you to the free download. I agree, AVG used to be a very good product. I still recomend it, but when I install it, I make sure that the LinkScanner is disabled, I found it annoying the first time I saw it, so I uninstalled AVG and made sure it wasn't there the second time.

      Its not slimey, its a good idea in concept, unfortunately implementation was poor. Slimey is Norton Internet Securities' "BLOCK ALL SSL/TLS SITES EXCEPT SYMANTEC" when the license expires scam; or McAffee's "Uninstall and you may as well reformat cause I'm not going anywhere method"; or for that matter, that shitty trend micro product that every damn ISP bundles for 'free' with their service. Anyways, getting off topic.

      AVG is still a good product, its just their implementation of a specific concept was poor, it may very well be something that marketing got a hold of before it was ready and started claiming it would be there when it shouldn't have been.

      --
      It had to be done... It had to be said...
    13. Re:Once good by illumin8 · · Score: 2, Interesting

      Ok, no. As of June 25, they stopped supporting AVG Free 7 in order to get their free users on the Updated AVG Free 8. Incidentally, AVG 8 is the version with the problem this story is describing if you installed the IE toolbar. Anyway, 0.32 seconds for a Google search would show you the latest free version.

      Ok, I should clarify. I've been running 7.5 free version for a few months now. In the last 30 days before June 25th, I would get daily popups saying "7.5 is being discontinued, upgrade to 8.0 (pay version) to stay protected. If this isn't slimey, I don't know what is.

      To be honest, I'll probably just uninstall AVG completely and never touch another one of their products again. I only use Windows to play games so there's really not much risk to me of getting a virus.

      --
      "When the president does it, that means it's not illegal." - Richard M. Nixon
    14. Re:Once good by Anonymous Coward · · Score: 0

      Because there is no correlation between writting good antivirus software and good html?

    15. Re:Once good by 0racle · · Score: 1

      If I remember correctly, the page that was linked in that popup notification took you to a page that listed the 3 edition choices, the first one being AVG Free. I could be wrong though, it was a month ago and not my computer.

      --
      "I use a Mac because I'm just better than you are."
    16. Re:Once good by mdm-adph · · Score: 2, Informative

      You can turn off that feature in your AVG control panel. (It'll install updates at next restart.)

      --
      It is by my will alone my thoughts acquire motion; it is by the juice of the coffee bean that the thoughts acquire speed
    17. Re:Once good by canajin56 · · Score: 1

      I tried updating, it said I can only install it on Windows 2000 SP4 or higher (I have Windows XP SP2 which apparently is NOT higher) but I also couldn't NOT upgrade. So I switched to Avast! It also doesn't have the issue of hundreds of false positives and a tech support response of "Upgrade to pro and then you can whitelist that version of the file". Yeah, thanks for your dedication in correcting those false positives.

      --
      ASCII stupid question, get a stupid ANSI
    18. Re:Once good by Anonymous Coward · · Score: 0

      It's the same cycle every software product goes through eventually. We'll all be saying the same thing about avast in a few years.

    19. Re:Once good by Anonymous Coward · · Score: 0

      >I'll be sure to replace AVG with Avast! on all of my machines, not just my gaming one.

      And, since you didn't pay for it, I'm sure that will break their hearts.

      You're a fucking idiot.

    20. Re:Once good by Machtyn · · Score: 2, Informative

      As posted above, try Comodo's products. Excellent! firewall software plus all the other security software you need for free.

    21. Re:Once good by afidel · · Score: 1

      Yeah that was a great misfeature, you could change it in the prefs of the update manager, but it was very non-intuitive.

      --
      There are 4 boxes to use in the defense of liberty: soap, ballot, jury, ammo. Use in that order. Starting now.
    22. Re:Once good by Anonymous Coward · · Score: 0

      Anyone know of a good anti-virus software for Windows, for Mac? One that is small and does not slow down the system, yet does its job. Any good firewall out there?

    23. Re:Once good by Anonymous Coward · · Score: 0

      Are you seriously saying that Avast! was using less resources and you switched from AVG to avast to get away from bloat?
              Yes, overall I feel that Avast! is a better client, but it uses a noticeable amount of resources more than AVG. In the countless number of residential systems I've built for customers I use AVG on less powerful systems and Avast! on the more powerful, and we only started doing that once we recieved complaints of sluggishness and found Avast! as the culprit.
              Maybe you just had it misconfigured, or scanning in the background at all times while playing games (although it's scanning is lighter than avast's)

      --Avast! has the feature bemoaned in the article as well, but only for IE, as well as many other useless (to me) things that cannot be turned off as they're part of the main AV when they really don't need to be.
       

    24. Re:Once good by nogginthenog · · Score: 1

      I tried Avast a while ago. At random I started getting BSODs maybe once a week. I thought my CPU was overheating but after checking the minidump files the culprit was an Avast driver. Uninstalled it and everything's been fine since. YMMV

    25. Re:Once good by RedWizzard · · Score: 1

      Ok, no. As of June 25, they stopped supporting AVG Free 7 in order to get their free users on the Updated AVG Free 8. Incidentally, AVG 8 is the version with the problem this story is describing if you installed the IE toolbar. Anyway, 0.32 seconds for a Google search would show you the latest free version.

      Ok, I should clarify. I've been running 7.5 free version for a few months now. In the last 30 days before June 25th, I would get daily popups saying "7.5 is being discontinued, upgrade to 8.0 (pay version) to stay protected. If this isn't slimey, I don't know what is.

      Come on, it's not that hard to find. I too had to upgrade from 7.5 in the last few days and I didn't have any problem finding the link to the free edition. It's hardly fair to call them slimy just because you failed to read the page they sent you to. Anyway, AVG free.

    26. Re:Once good by Tim+C · · Score: 1

      AVG pissed me off towards the end of last year when, on booting and logging in to my machine, it opened up Firefox and directed it to a page advertising a limited-time money off offer for AVG Professional.

      I run anti-virus software in part to help avoid installing software that does that sort of thing; I do not expect the AV software itself to do it. I switched to Avast! pretty soon after that.

    27. Re:Once good by Kalriath · · Score: 1

      Sure there is! You just need to go to "Home Security", "Compare all products at a glance", "AVG Free - Learn More", "Learn more" again, and finally "Download basic protection"

      Yes, they apparently ARE trying to hide it.

      --
      For a site about things like basic rights, Slashdot users sure do like to censor "dissent".
  19. On the Up and UP. by Anonymous Coward · · Score: 4, Insightful

    Smiley anti-virus provider? The integrity of Slashdot submissions just keeps going up and up! Nice example Taco.

    1. Re:On the Up and UP. by Anonymous Coward · · Score: 1

      :) Anti-virus :)

    2. Re:On the Up and UP. by Anonymous Coward · · Score: 0

      Smiley anti-virus provider? The integrity of Slashdot submissions just keeps going up and up! Nice example Taco.

      The integrity of Slashdot Grammar has no where to go but up! Nice example Anonymous Coward.

    3. Re:On the Up and UP. by aztektum · · Score: 1

      What's wrong with calling someone "smiley"? That means they're happy right?

      --
      :: aztek ::
      No sig for you!!
  20. Slow news day... by s0litaire · · Score: 3, Informative

    Must be a slow news day...This story's been around for nearly 2 weeks. AVG will probably keep changing the useragent with every few updates to annoy Admins and stats sites...

    --
    Laters Sol "Have you found the secrets of the universe? Asked Zebade "I'm sure I left them here somewhere"
  21. DDOS by MyLongNickName · · Score: 2, Insightful

    With all the readers of Slashdot, I think it would be safe to bet we will see a DDOS of AVG servers.

    --
    See my journal for slashdot ID's by year. Mine created in 2005. http://slashdot.org/journal/289875/slashdot-ids-by-year
  22. Hopefully... by Thelasko · · Score: 1

    People will stop using it once they realize it hogs their bandwidth.

    --
    One of our competitors trademarked the term "hypothesis". From now on, we will call them "boneheaded ideas".
  23. Slimey? by Flaystus · · Score: 4, Insightful

    Is many years I've never heard AVG referred to as "Slimey" I don't think the toolbar is a good idea either but... slimey? AVG is awesome.

    1. Re:Slimey? by rob1980 · · Score: 2, Interesting

      Yes, the intentions were good, but flooding webservers with traffic was probably the wrong way to implement this. Personally, I noticed that this particular feature was slowing my browser down significantly - I ended up disabling the plugin in Firefox to fix the issue. This should be optional IMO, not installed by default.

    2. Re:Slimey? by Flaystus · · Score: 1

      An excellent point. I've had no issues with the product and I use the pay version. Standard install minus the firewall and the tool bar because I don't need 'em. 80% of these post are just more examples of nerd rage

    3. Re:Slimey? by Brian+Kendig · · Score: 1

      I'll second the opinion of AVG being awesome. For years I've been seeing people whose PCs have been eaten alive by Norton Anti-Virus's obnoxious intrusiveness and painful memory requirements, so as soon as the footprint of NAV starts slowing them down, I recommend they switch to AVG Free. Neither I nor anyone I've helped has ever had a problem with AVG.

      Granted, it seems that AVG Free 8 is a bit noisier than AVG Free 7 (version 8 seems to pitch the hard sell approach a little too often), but still, there's no other solution I'd go with.

    4. Re:Slimey? by Machtyn · · Score: 3, Insightful
      Not just any nerd rage, many times nerd rage from people that give highly recommended Yays and Nays of products to their less-informed friends and family. AVG has successfully removed itself from my recommended list of products to use. When I receive a computer to (re)build, there are a number of software that gets installed
      • OpenOffice.org
      • Comodo Firewall
      • Comodo A/V
      • Mozilla Firefox
      • Necessary Firefox extensions (such as AdBlock, WeatherFox, and Tab Mix Plus)
      • notepad++
      • 7-zip

      These software and others which aren't in this list (The GIMP, Audacity) are in my highly recommended list of software that all computers should have installed by default.

    5. Re:Slimey? by pclinger · · Score: 1

      When someone causes hundreds of thousands of requests directed at my servers every single day, increasing my traffic to the point where I may need to purchase new machines to keep up with the load, that is slimey.

      There is no benefit for me out of them loading pages from my web site. They aren't a crawler that indexes my site to list on a search engine somewhere for more people to find it later.

      It's not like virus scanners can't scan an incoming page and block it. There's no need for this product to act as it does. Just identify the malware as it comes in instead of identifying it before a user even potentially visits. It's not like they are even guaranteed to click anyways since it is scanning every result on the page.

      --
      /. editors made it impossible to link to file:///c:/con/con in my sig. Please just type it in
    6. Re:Slimey? by Anonymous Coward · · Score: 0

      And if they were a crawler, they'd respect robots.txt.

  24. Sorry, but no. by Anonymous Coward · · Score: 0, Insightful

    I wish, however, they would take business needs into account before launching software that makes life even more difficult for the people trying to do the analytics

    AVG is for the consumer. I want them to keep my machine free of bullshit. And we all know there's tons of bullshit out there. And with AVG, I'm becoming a little less paranoid with websites, but I'm still giving all of them bogus information because I trust no website with any of my information. Sorry webmasters and site owners, as far as this web surfer and consumer with the money that you want is concerned, you are all crooks out to plant something on my machine, grab my email address to spam me, and possibly do something I've never heard of - unless proven otherwise.

    Don't like it? Tough shit! It's the cost of doing business. So suck it up and just shut up and do your jobs and work around this "problem".

    1. Re:Sorry, but no. by Anonymous Coward · · Score: 0

      consumer with the money that you want

      Dude, when was the last time you sent money to Slashdot? Hell, when was the last time any one posting in this thread sent money to Slashdot?

      No, like many of the better sites on the new, this place is a hang out. And someone needs to pay for the large servers and bandwidth required so we can all hang out here. Hence the need to have ads on the site.

      Don't like it? Tough shit! It's the cost of doing business.

      I'm sorry but the cost of doing business does not include paying for extra bandwidth because I am being DDoS'd by ignorant twats like your self. That's the kind of thing we litigate.

      Go astro turf for girsoft some place else, douche bag...

    2. Re:Sorry, but no. by 91degrees · · Score: 1

      How about the websites that exist for the common good rather than profit? You're wasting their bandwidth fopr your own benefit. Kinda antisocial don't you think?

  25. Ditto by InvisblePinkUnicorn · · Score: 0, Redundant

    I did the same thing as it was definitely running slower, and now I too have an exclamation point on my icon. Whoever thought up that part of the software is an idiot.

  26. Re:Sending the bills to them. by meringuoid · · Score: 3, Insightful
    And for any of the websites I run I do not remember giving them permission to access those sites...

    You need explicit permission to access a public website now? Shit! I'd better get offline and write an apology to CmdrTaco - I've been using /. without permission for the best part of a decade!

    Time to post a specific statement on all websites stating that AVG does NOT have consent to access or "visit" these websites.

    That's a bit like putting up a 'No Trespassing' sign inside your cellar, and expecting it to prevent people coming over your fence.

    --
    Real Daleks don't climb stairs - they level the building.
  27. In Soviet Googlestan? by Jeremiah+Cornelius · · Score: 0, Offtopic

    In Soviet Googlestan, agents fake YOU!

    --
    "Flyin' in just a sweet place,
    Never been known to fail..."
  28. payback by nomadic · · Score: 1

    (on Slashdot, we're seeing them as like 6% of our page traffic now).

    Not so fun when it happens to you, eh?

    1. Re:payback by jamie · · Score: 5, Informative

      It's not really the load -- it's throwing off our internal metrics so we don't know what readers are actually interested in. We like numbers, and messing with our stats annoys us.

    2. Re:payback by MyLongNickName · · Score: 4, Funny

      so we don't know what readers are actually interested in

      Porn. Anime. Sometimes computers.

      Hope that alleviates your concerns.

      --
      See my journal for slashdot ID's by year. Mine created in 2005. http://slashdot.org/journal/289875/slashdot-ids-by-year
    3. Re:payback by nomadic · · Score: 2, Interesting

      It's not really the load -- it's throwing off our internal metrics so we don't know what readers are actually interested in. We like numbers, and messing with our stats annoys us.

      Eh, 6% doesn't sound too bad, and from what I understand the AVG bot hits will be coming from people doing searches; therefore now you're getting a good metric of what people are searching for on google, might help you get new users.

    4. Re:payback by Anonymous Coward · · Score: 0

      Mod-up! Porn, photos of pretty girls, guns, cars, racing, sex, more sex and sometimes computers. That about sums it up lol.

    5. Re:payback by Creepy+Crawler · · Score: 1

      In other words, A hentai Serial Experiments Lain.

      Egads.

      --
    6. Re:payback by revmoo · · Score: 1

      But I already HAVE accurate metrics for all of that. This is just throwing everything off and wasting our resources.

      This is from our logs from the day the product was released up to today when I banned it:
      37
      70
      108
      167
      208
      320
      374
      414
      457
      492
      571
      608
      650
      715
      751
      789
      817
      868
      898
      924
      955

      Who at AVG do I mail the invoice to?

      --
      I would expect such blatant racism on Fark, but on Slashdot? Mods please ban this asshole.
    7. Re:payback by berashith · · Score: 1

      Why did you guys need numbers? All you had to do was ask.

    8. Re:payback by Anonymous Coward · · Score: 0

      It isn't the internet's job to make your data analysis easy. I can't believe you are whining that you have to do a little more work to adjust your data to get metrics. Fix your analytics scripts, and get on with life.

      And excuse me. Slashdot is pitching a hissy fit about somebody sending them unexpected and unwanted HTTP requests? I'm sorry, how many webservers has Slashdot burned to the ground over the years? How many absurd bandwidth bills have you been responsible for? A very long time ago, people were encouraging you to create a caching service so that you wouldn't burn every little server you linked to. You refused, claiming it wasn't your problem. You refused, saying that it was the website owner's responsibility to make sure their servers could handle it. You refused, claiming it was your right to link to content that webmasters made public.

      Do I really have to say any more here? Pitching a tantrum on the front page because you're annoyed is so damned unprofessional. Grow up you big babies.

    9. Re:payback by Anonymous Coward · · Score: 0

      big LOL

  29. It runs in Firefox as well by Animaether · · Score: 4, Informative

    LinkScanner, the component they're talking about, works in Firefox as well - so no, using Firefox does not 'keep you safe'.

    Nor is this about the users of the thing in the first place - either they like its functionality (security theatre-advance warning blabla) and leave it on, or they don't and they switch it off.

    This is about the poor, poor admins who are suddenly seeing bogus traffic and omgosh it's spoofing user agents at that!
    *changes his user agent to 'cry more, Taco' in FF and hits F5 .. repeatedly*

    1. Re:It runs in Firefox as well by initdeep · · Score: 1

      thats funny.
      maybe we should all do that.

  30. Re:Sending the bills to them. by initdeep · · Score: 5, Insightful

    no your not a lawyer, but i'm pretty sure your not smart enough to be one either.

    you didn't give them permission to access your publicly available site?
    really?
    are you sure?
    because you know, if you make something publicly available on the public internet, I'm pretty sure by definition, you've therefore given them permission to access it.
    Just like everyone else "in the public".

    Did you give Google permission?

    how about every other search/index site?

    as to the "extra bandwidth" since it is by definition, caused by your websites being found via search providers, maybe you should be sending the bill for linking to them and thus causing the "extra bandwidth" to Google/Yahoo/MS and see how far that gets you.

  31. Thank you, version 8, NOT by TopShelf · · Score: 1

    This is easily the worst feature of the new AVG Version 8. Not only does it flood the net with bogus traffic, but the load on the user's PC can grind things to a halt. I deactivated that feature, and now AVG constantly alerts me that I'm in danger because not all aspects of AVG are functioning... The Horror!

    --
    Stop by my site where I write about ERP systems & more
    1. Re:Thank you, version 8, NOT by lazy-ninja · · Score: 1

      If you disable it from directly within the browser (or install it with command switches to not use that feature) it will not do this. You can do so in both IE and in Firefox. It is just a browser add-on.

  32. HOWTO install AVG without Search Crawling by bheer · · Score: 5, Informative

    You can actually install AVG 8 without the 'Safe Search' feature that crawls websites (it's essentially a BHO/Firefox extension). Even if you already have AVG 8, you can uninstall it and reinstall:

    At a Command Prompt window, type
    c:\downloads\avg_free_stf_xxxxxxxxxx.exe /REMOVE_FEATURE fea_AVG_SafeSurf /REMOVE_FEATURE fea_AVG_SafeSearch

    where c:\downloads\avg_free_stf_xxxxxxxxxx.exe is the full path of your AVG 8 installer.

    1. Re:HOWTO install AVG without Search Crawling by Em+Ellel · · Score: 5, Funny

      At a Command Prompt window, type
      c:\downloads\avg_free_stf_xxxxxxxxxx.exe /REMOVE_FEATURE fea_AVG_SafeSurf /REMOVE_FEATURE fea_AVG_SafeSearch

      where c:\downloads\avg_free_stf_xxxxxxxxxx.exe is the full path of your AVG 8 installer.

      At least it is intuitive....

      -Em

      --
      RelevantElephants: A Somatic WebComic...
    2. Re:HOWTO install AVG without Search Crawling by MagicM · · Score: 3, Informative

      You can also just turn it off in the options screen. If you can find the correct options screen. And if you don't mind a tray icon that says "warning, something is horribly wrong!" all the time.

    3. Re:HOWTO install AVG without Search Crawling by Hal_Porter · · Score: 2, Insightful

      Actually I always disable Browser Helper Objects in Internet Explorer, since I've never seen a BHO that I actually wanted.

      http://support.microsoft.com/default.aspx?kbid=298931

      --
      echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;
    4. Re:HOWTO install AVG without Search Crawling by gad_zuki! · · Score: 1

      Thats what bugs me. The UI shouldnt be warning me if one component was disabled on purpose. I think AVG needs to rework this version of its popular app.

    5. Re:HOWTO install AVG without Search Crawling by wbean · · Score: 1

      This works fine except that the fresh install has an out-of-date virus database and at the moment (Thu, Jul. 3rd) the appears to be overloaded, so the update fails every time. Maybe it would be best to wait a day or two till they straighten out the problem with the update server.

    6. Re:HOWTO install AVG without Search Crawling by RyanFenton · · Score: 1

      Open the AVG Control Panel (by double-clicking on icon in the icon tray on your start bar), then, looking at the list of AVG8 components, right click on the LinkScanner component... the option you're looking for is "ignore component state"

      There - no more ugly warning messages from the linkscanner. The antivir and antispiware warnings will be unaffected.

      Ryan Fenton

    7. Re:HOWTO install AVG without Search Crawling by Jeff+DeMaagd · · Score: 1

      If it was done well, I should be able to change the setting without having to reinstall. I can barely stand Windows now, now AVG is getting about as irritating as Windows is.

    8. Re:HOWTO install AVG without Search Crawling by Puppeteer_23 · · Score: 1

      If you're running at least build 116 (update and you will be) if you go to TOOLS -> ADVANCED SETTINGS -> IGNORE FAULTY CONDITIONS Check the Web-shield item and you won't be notified in the tray anymore if you disable it. Easy-peasy.

      --
      -- "Wherever you go, there you are." -Buckaroo Banzai
    9. Re:HOWTO install AVG without Search Crawling by bheer · · Score: 1

      > if you don't mind a tray icon that says "warning, something is horribly wrong!"

      Using the command line above avoids this.

    10. Re:HOWTO install AVG without Search Crawling by Hemogoblin · · Score: 1

      I don't see that option anywhere. You are talking about AVG version 8 right?

    11. Re:HOWTO install AVG without Search Crawling by Tim+C · · Score: 1

      I installed AVG on my laptop a week or so ago - if you do an "advanced" install you can elect not to install LinkScanner there, no need for arcane commands.

      Well, that's assuming they haven't removed the option since I downloaded it, of course...

  33. AVG 8 is dog slow by street+struttin' · · Score: 5, Informative

    Has anyone else noticed that AVG 8 is also DOG SLOW on their PC? My computer is from 2001 and ran fine with 7.5, but 8.0 is unusably slow. Every time an application is opened it takes forever for AVG to scan it and let the app open. This combined with this linkscanner bullcrap has caused me to switch. I doubt I'll ever go back.

    1. Re:AVG 8 is dog slow by springbox · · Score: 3, Informative

      Works fine for me. Might want to try this: Go to advanced settings > resident shield and uncheck "scan potentially unwanted programs and ..."

    2. Re:AVG 8 is dog slow by Anonymous Coward · · Score: 0

      Your hardware is long gone from any major AV maker's 'make sure it doesn't slow down' worries.

    3. Re:AVG 8 is dog slow by Veggiesama · · Score: 1

      I'm so glad that I was too lazy to upgrade from 7.5, even though everytime I boot up it asks me to download 8.0.

      Meh, is a virus scanner even worth worrying about anymore? I stopped downloading free cursor packs when I was in elementary school, anyway...

    4. Re:AVG 8 is dog slow by Anonymous Coward · · Score: 0

      "Bullcrap"? You're watching too much TV. In real life we say "bullshit".

    5. Re:AVG 8 is dog slow by Anonymous Coward · · Score: 0

      Runs fine on my 8086.

    6. Re:AVG 8 is dog slow by Anonymous Coward · · Score: 0

      Yes. I was a long time user, but I dumped it for Avira when version 8 was released. I was running it on an older PC and compared to 7.5, version 8 seemed to slow the machine down to 30% of normal speed, even without the link scanner.

    7. Re:AVG 8 is dog slow by Anonymous Coward · · Score: 0

      I had to uninstall AVG 8.0. I've always had a regular scan set for 1AM and after I installed 8.0, frequently I would come in at 8AM and it would still be running. The fastest it would scan my ~80gig worth of data was around 5 1/2 hours. I've shut it down after 8 hours and it still wasn't done. Too bad. I used to install it on every computer I worked on.

  34. Not only that by Anonymous Coward · · Score: 0

    ...but it screws up the <base> tag parsing, hogging servers with garbage requests such as ...someserver.com/somepage?id=1/scripts/scripts/scripts/...(scripts/)+somejavascript.js

  35. (P.S. Not in Firefox 3) by Anonymous Coward · · Score: 1, Informative

    hate replying to myself, but didn't notice this before - it works in FF2, not in FF3.

    Disabling it FF-side: Tools > Add-ons > AVG Safe Search > Disable /nokarma-anon

  36. If it stays around by porkface · · Score: 1

    They're trying to do an honest service to their anti-virus users, and if they could truly masquerade as real users it might work.

    So far however, it's trivial for the bad guys to work around their efforts.

    If they could make it work right, it might make sense for some sort of pseudo-protocol addition where each AVG client notifies a site AFTER a series of visits that X number of visits that day were of the fake variety.

  37. Re:Sending the bills to them. by jriding · · Score: 1, Interesting

    As I do agree with both of the responses the interesting part is that is how the law is written.
    It works just like the IT policies at work. You are not allowed to use work IT for personal.. Everyone uses it from time to time for personal. They only pull out the policy when the want to fire someone and do not have just cause.
    Even I think its a stupidly written law, but it is one. And yes as stated in the law you do need permission to access any computer or network. So when you use the internet and the FBI shows up yes they can use this law against you.

    interesting isn't it??

    --
    love the taste, hate the texture
  38. AVG by mark72005 · · Score: 1

    Will someone tell me why AVG is "slimy", and what I should use instead of it that is also free?

    1. Re:AVG by ahecht · · Score: 1
    2. Re:AVG by Nullav · · Score: 1
      --
      I just read Slashdot for the articles.
  39. Return the love! by ohell · · Score: 2, Insightful

    Well, I submitted this 3 days ago but I guess CmdrTaco wanted to write an original post. One of the suggestions I had: if you have AVG 8 installed on your machine, why don't you search this a few times, so AVG can taste their own medicine:

    --
    Three o'clock is always too late or too early for anything you want to do. - Jean-Paul Sartre
    1. Re:Return the love! by Anonymous Coward · · Score: 0

      Sadly, they probably maintain a small whitelist just for that.

  40. Re:Block MSIE? by brunascle · · Score: 2, Informative

    The Mozilla part at the beginning is the standard IE user agent. IE has been falsifying their UA as Mozilla since the beginning, originally because Netscape was the top dog, and Microsoft wanted to make sure that it worked with sites that sniffed the UA only worked with Netscape.

  41. WTF. by apodyopsis · · Score: 1

    Seems that for a company that makes its living from the net deciding to piss off web masters, website and (in the end) users is one slightly strange business tactic. In this field people have long memories and this stink will hand around.

    What if all the websites decided to post up a warning like "Hello Visitor, we detect that you are using AVG - were you aware that this program is known to cause problems like this, and this and that you can find freeware with almost all the same functionality here, here and here".

    Of course AVG could simply attempt to block that kind of traffic, but they are treading on thin ice here. If the net community as a whole decided it would be better off without such crummy tactics I'd bet there are numerous ways they could hurt AVG for this.

  42. Grisoft dropped the ball with AVG v8.0 by GogglesPisano · · Score: 5, Informative

    I'm a longtime user of AVG. Version 7 was reasonably lightweight, effective and (most importantly to me) unobtrusive.

    Unfortunately, version 8 is a different story. After Grisoft forced me to upgrade in May, suddenly AVG became a nagging resource hog. Nightly scan times rocketed from about an hour to over six hours - a scheduled scan that started at 2am would still be going at 8:30am. I have been able to reduce this time somewhat by changing the scan settings (e.g., don't scan inside compressed archives), but it's still slow.

    Most annoyingly, their new "LinkScanner" and "SafeSurf" features slowed my browser to a crawl. I didn't want these, since I already use FireFox with the AdBlock and NoScript extensions. I tried to simply disable LinkScanner, but then AVG constantly bothered me with nagging warnings that my computer "was not fully protected". After a little digging, I found that it was possible to uninstall the feature entirely with the following command:

    avg_free_stf_xxxx.exe /REMOVE_FEATURE fea_AVG_SafeSurf /REMOVE_FEATURE fea_AVG_SafeSearch

    (Substitute "avg_free_stf_xxxx.exe" in the above command with the name of your setup file.)

    This improved my browser performance, and eliminated the warnings.

    I'm still (grudgingly) using AVG, but I will switch if/when I find a better alternative.

    1. Re:Grisoft dropped the ball with AVG v8.0 by Anonymous Coward · · Score: 1, Interesting

      In the AVG program folder change this:

      avgcmgr.exe

      to this:

      avgcmgr.exe.bak

      This prevents the scanner from running but doesn't show up as an error. Also corrects some annoying illegal memory access errors I was getting.

      - a happy AVG user

    2. Re:Grisoft dropped the ball with AVG v8.0 by CrazedSanity · · Score: 1

      One of the other slashdotters posted a message about using MoonSecure, which is a free OSS antivirus. Previous to looking into the software, I was going to say how much I liked ClamAV... then I realized MoonSecure uses Clam. Plus it provides the non-clunky interface, including right-click options, that ClamAV lacks.

      If it turns out to be as nice as I'm hoping, I'll be installing that on my wife's computer tonight and removing AVG. If it works well, and her computer starts running as fast as it used to (pre-AVG), I'm going to be installing it on all the PCs that I support. Yay, open source!

      --
      Sanity is like a condom: rather have it and not need it, than need it and not have it.
    3. Re:Grisoft dropped the ball with AVG v8.0 by Guanine · · Score: 1

      Try ESET's NOD32 Antivirus -- worth every penny of the $35 I paid for it. Small resource footprint, world class heuristics. I think it's now $40 for home users.

    4. Re:Grisoft dropped the ball with AVG v8.0 by Anonymous Coward · · Score: 0

      I'm still (grudgingly) using AVG, but I will switch if/when I find a better alternative.

      I have heard Avira works very well.

      http://www.free-av.com/

      I wish for the day clamav for windows can handle everything I require.

    5. Re:Grisoft dropped the ball with AVG v8.0 by Anonymous Coward · · Score: 0

      I'm still (grudgingly) using AVG, but I will switch if/when I find a better alternative.

      I have heard Avira works well. (http://www.free-av.com/)

      I wait for the day we can all use clamav for windows and it is fully featured.

    6. Re:Grisoft dropped the ball with AVG v8.0 by Anonymous Coward · · Score: 0

      Alternative...
      What do you think about Avira Antivir?
      http://www.free-av.com/en/products/1/avira_antivir_personal__free_antivirus.html

    7. Re:Grisoft dropped the ball with AVG v8.0 by Anonymous Coward · · Score: 0

      Avast! is far and away better than AVG, the boot-time-scan is a god send for those stubborn virii, get them before windows even loads.

  43. Used AVG for 4+ years by ddbsa · · Score: 1

    And never had any virus, privacy, stability issues...

    Not a single issue in 4 years...

    Hopefully, they will stop whatever shait they are doing now so I can keep them in high regard.

  44. Re:Sending the bills to them. by Hognoxious · · Score: 1

    Stop with the amateur dramatics already, you big girl's blouse.

    --
    Confucius say, "Find worm in apple - bad. Find half a worm - worse."
  45. You'd have to fake the user agent by StrawberryFrog · · Score: 4, Insightful

    When probing for sites that serve malware, wouldn't you have to make the probe look identical to a legitimate user?

    Otherwise the malicious site could just serve innocuous content to the probe and malware to everyone else.

    --

    My Karma: ran over your Dogma
    StrawberryFrog

    1. Re:You'd have to fake the user agent by kalirion · · Score: 2, Insightful

      Or you could, you know, just probe the site after the user clicks on the link and not before.

  46. Awwww, so sorry for all the webmasters by gorehog · · Score: 0, Troll

    Actually, I am sorry for the webmasters. They have to deal with this. OTOH it IS part of the job.

    I don't know what you folks expected. The web is infested with all sorts of malicious code. Are users not supposed to protect themselves in the interests of the website? After we manage to make the browsing experience safe for "teh n00b" then this won't be a problem. So all we have to do is get all webpages standardized, sanitized, and secured. That includes all the people using IE.

    Another option is that we could stop promoting the Internet as a good tool for consumer level financial transactions. Then there won't be ANY need for privacy and security. Then we might not have jobs either.

    It is yellow journalism to report this story in this way. Another way to put it would be "AVG forces issue of PC Security versus bandwidth usage." Then they look like heroes instead of villains. You're just putting spin on the issue because this is affecting your cost/income ratio.

    Since AVG is producing something that helps end-users do you really want to be seen as a promoter of the problem? Since the problem of malware sites is not going to go away and since AVG is effective more antivirus software will start using these techniques. Unless you have something better to suggest?

    Frankly, as an end user, I don't give a damn about your costs and stats. I don't care about it for amazon, ebay, myspace, or paypal. I do care that if I follow a link to an unsavory site that I am protected.

    Here is another question. Do you want a userbase that is populated by malware infected computers? Is that preferable to figuring out a way to work with AVG new technique?

    Dont throw your users under the train. They have a right to their security and peace of mind.

    1. Re:Awwww, so sorry for all the webmasters by aiken_d · · Score: 4, Insightful

      Wow. Just wow. You managed to make an ends-justify-the-means argument, a false dichotomy, a red herring, and probably a few other fallacies I missed because I was already laughing so hard.

      AVG is breaking two key rules of good app behavior on the internet: they are making huge numbers of requests that users don't want or know about, and they are providing fraudulent info in the request headers to prevent affected services from mitigating the problem.

      How many companies write internet-enabled apps? What do you think? 1000? 10000? 100000? If AVG's behavior here is OK, is it also OK for all of those other apps to pile on as well, each one adding another 6% of overhead to *the entire internet*? Or is AVG special for some reason that allows them to play by different rules than everyone else?

      This is very abusive on AVG's part, and your spirited defense relies on logical fallacies and hand waving. Your "if you don't want AVG to eat bandwidth and lie about its useragent, you must want your users to be infected with malware" bit is just icing on the cake.

      Truly, you have a dizzying intellect.

      --
      If I wanted a sig I would have filled in that stupid box.
    2. Re:Awwww, so sorry for all the webmasters by Anonymous Coward · · Score: 0

      MOD PARENT TROLL.

      Scanning web pages the user visits for malware is perfectly fine. Crawling through search results, most of which the user isn't going to click is not acceptable.

    3. Re:Awwww, so sorry for all the webmasters by gordyf · · Score: 3, Insightful

      I think you're missing the point: it scans links that users are not going to. It scans every result from a search, and not just the ones that you're browsing to. This significantly increases the traffic that sites have to deal with while not increasing user security at all, since the pages can just as easily be scanned while they are downloaded.

      But maybe you're just trolling.

    4. Re:Awwww, so sorry for all the webmasters by Anonymous Coward · · Score: 0

      The issue is them choosing a particularly STOOPID way to do it. Why prescan EVERY link, why not just the one you click? AVG+Google search = loads of crap bandwidth.

    5. Re:Awwww, so sorry for all the webmasters by canajin56 · · Score: 2, Insightful

      If you wanted to be protected on the pages you view, you could, I don't know, scan them instead of having every computer on the internet doing daily crawls of everywhere even tangentially related to the pages they actually view? Or they could only scan once, and only crawl a website if it hasn't been scanned recently. There is no reason their software has to scan /. 5 million times a day when once would do. After all, if they want to be so cavalier about bandwidth, they can pony up and have their software ask their database about the page every time, instead of just doing another redundant scan.

      --
      ASCII stupid question, get a stupid ANSI
    6. Re:Awwww, so sorry for all the webmasters by pjt33 · · Score: 1

      Would it kill AVG to scan on-the-fly rather than pre-emptively? That way it wouldn't generate any extra traffic.

    7. Re:Awwww, so sorry for all the webmasters by Anonymous Coward · · Score: 0

      I am personally on the fence with this. It *SOUNDS* like a cool idea. Let your users do all the scanning for you! You dont need a Google size server farm to crawl the web. You end up with a clear picture of where the bad stuff is. HOWEVER... It seems as if a lot of scanning is happening over and over. Which is a lot of wasted bw and work.

      There should be a cleaner way with some caching and some modest servers to serve up the cache. The idea has merit but I think the implimentation is borked.

      Another intesting side effect however is being in the top 10 sites on google opens you up to this.

    8. Re:Awwww, so sorry for all the webmasters by osu-neko · · Score: 5, Insightful

      Are users not supposed to protect themselves in the interests of the website?

      This isn't being done to protect users. The pages could be scanned just as easily on actual load. This is being done to prevent the users from having to suffer a small delay on loading the page by preloading it (and every other possibly link on the page since the software doesn't know what link you're going to click).

      You're just putting spin on the issue because this is affecting your cost/income ratio.

      You're very anti-average Joe. Most of us aren't Amazon. Most of us, in fact, make precisely zero income from our websites. And we don't have the kind of financial resources to deal with this kind of distributed attack on our bandwidth. Amazon, Yahoo, and such won't have any problem dealing with this sort of thing, but if it becomes popular, it'll force the rest of us off the web.

      Since the problem of malware sites is not going to go away and since AVG is effective more antivirus software will start using these techniques. Unless you have something better to suggest?

      Yes, make the user wait the extra second if the user wants to scan a page.

      Frankly, as an end user, I don't give a damn about your costs and stats. I don't care about it for amazon, ebay, myspace, or paypal. I do care that if I follow a link to an unsavory site that I am protected.

      If that's true, then you won't mind waiting the extra second to load a page instead of having the browser drag down the bandwidth of every site in your search ahead of time for you.

      Here is another question. Do you want a userbase that is populated by malware infected computers? Is that preferable to figuring out a way to work with AVG new technique?

      That's a false dilemma. Is it preferable to force everyone other than the big guys off the web so that users don't have to wait an extra second on loading a page?

      Dont throw your users under the train. They have a right to their security and peace of mind.

      Don't throw the majority of web page publishers under a train, just so you can save a second by preloading a page.

      --
      "Convictions are more dangerous enemies of truth than lies."
    9. Re:Awwww, so sorry for all the webmasters by gorehog · · Score: 1

      "You managed to make an ends-justify-the-means argument"
      Yes, I'm justifying AVG's actions. Are you saying that I should sacrifice security so CNN has more accurate statistics? If you are...well tough. Do you realize that some of the affected services they are breaking steal your passwords?

      From a user's point of view I want as much protection as possible. I don't care if it hurts MTV's bandwidth and processor usage. That's THEIR problem. Welcome to the wild and woolly world of the internet. I want to break AS MANY MALWARE APPS AS POSSIBLE. Really, security is my first concern. Usability is a close second. Your costs? WAYYYY down on the list.

      Yes, this might break business models. That's called evolution.

    10. Re:Awwww, so sorry for all the webmasters by gorehog · · Score: 1

      Not trolling, not intentionally.

      Granted, this is going to increase web traffic. Grisoft SHOULD start a whitelist/blacklist to ease the traffic on the net. The technique becomes more valid at that point.

    11. Re:Awwww, so sorry for all the webmasters by kalirion · · Score: 1

      Just wait till the next patch, when it starts scanning ALL search results, not just the 10 on the current page.

    12. Re:Awwww, so sorry for all the webmasters by springbox · · Score: 1

      "Me! Me! Me! Me!"

    13. Re:Awwww, so sorry for all the webmasters by scot4875 · · Score: 1

      Wow. Just wow.

      Stopped reading there.

      --Jeremy

      --
      Jesus was a liberal
    14. Re:Awwww, so sorry for all the webmasters by Anonymous Coward · · Score: 0

      The main other apps that I can think that make huge numbers of requests that users don't want or know about are Malware, botnets specifically.

      So, do this mean AVG LinkScanner is Malware?

    15. Re:Awwww, so sorry for all the webmasters by LarsG · · Score: 1

      "You managed to make an ends-justify-the-means argument"
      Yes, I'm justifying AVG's actions.

      Well, if it actually worked you might have had a somewhat valid point. Tell me, what exactly does AVG's shotgun approach do that could not be achieved by using a local filtering proxy instead?

      The main objection is that this "feature" is just plain dumb and has a horrible implementation.

      --
      If J.K.R wrote Windows: Puteulanus fenestra mortalis!
    16. Re:Awwww, so sorry for all the webmasters by Anonymous Coward · · Score: 0

      Amazon, Yahoo, and such won't have any problem dealing with this sort of thing, but if it becomes popular, it'll force the rest of us off the web.

      Not entirely. This is already having a significant impact on some of the major players in the online advertising industry, and probably most of the smaller ones as well. I recognize the average person probably doesn't care about online advertising and considers it more "slimey" than AVG's behavior here, but keep in mind that all the websites you browse for free have to get their bills paid SOMEHOW, and that's frequently through advertising. Publishers such as Slashdot get paid based on clicks and impressions, and since these inflated counts will cause a bunch of disputes over numbers it's ultimately going to hurt their payday.

  47. Insightful ?????? by BasharTeg · · Score: 5, Insightful

    How exactly do the websites getting slammed with this bullshit traffic "not even install this part of the program" and "if you don't like it don't use it"?

    Did you miss this part: (on Slashdot, we're seeing them as like 6% of our page traffic now)

    So how does Slashdot "just not use" the AVG product and recover that 6% of their page traffic again?

    The complaint is that they are "spamming the internet with deceptive traffic". That's a server/hosting complaint, not a user complaint about some user who can't figure out how to disable that feature.

    Kudos on getting a "4 Insightful" for a ridiculously inapplicable and nonsensical response though!

    1. Re:Insightful ?????? by Anonymous Coward · · Score: 0

      Actually, you are retarded.

      How about reading the post he was replying to before trying to get all smart?

    2. Re:Insightful ?????? by Anonymous Coward · · Score: 0

      Please refer to the the post he was replying to. His post was entirely applicable and sensical.

    3. Re:Insightful ?????? by Snaller · · Score: 1

      If bandwidth prices weren't amorally and ridiculously high, this wouldn't be much of a problem.

      --
      If Google really cared they would fix Android Chrome to reflow text, instead of discriminating
  48. Nagware alert! by GameboyRMH · · Score: 4, Informative

    avast! antivirus Home Edition is FREE to use but it is necessary to register before the end of the initial 60 day trial period. To register, click here. Following registration you will receive by E-mail a license key valid for a period of 1 year. After you have downloaded and installed the program, the license key must be inserted into it within 60 days. The registration process is very easy, and it will take you only a couple of minutes.

    Also Avira has been getting more and more annoying over the years, it's practically adware now.

    So now it looks like it's either AVG with the browser plugins removed or MoonAV (which is FOSS):

    http://www.moonsecure.com/

    (It used to have a problem where you'd need to remove the Windows service manually after uninstalling, they might have fixed it though.)

    --
    "When information is power, privacy is freedom" - Jah-Wren Ryel
    1. Re:Nagware alert! by LMacG · · Score: 1

      > The registration process is very easy, and it will take you only a couple of minutes

      Not really anything more to say than that. They provide a useful free product. The synthesized voice telling me "virus DAtabase has been UP DAted" makes me smile.

      It's hardly "nagware".

      --
      Slightly disreputable, albeit gregarious
    2. Re:Nagware alert! by pablomme · · Score: 1

      The synthesized voice telling me "virus DAtabase has been UP DAted" makes me smile.

      Well, it scared the crap out of me when I first heard it. Moral: turn down the volume of your speakers when not in use, especially at 3am when it's all quiet.

      --
      The state you are in while your HEAD is detached... - wait, what?
    3. Re:Nagware alert! by kalirion · · Score: 1

      Or disable the voice.

    4. Re:Nagware alert! by pablomme · · Score: 1

      I did later, but that's how I found out there was a voice.

      --
      The state you are in while your HEAD is detached... - wait, what?
    5. Re:Nagware alert! by Anonymous Coward · · Score: 0

      You can disable the nag ware quite easy on Antivir.

      http://www.elitekiller.com/files/disable_antivir_nag.htm

      I have done this to several systems and no longer see that annoying popup.

  49. Mozilla by Anonymous Coward · · Score: 0

    Is it time to point out the silliness that IE still claims to be Mozilla in its UA, only mentioning MSIE as a side note)?

    1. Re:Mozilla by brunascle · · Score: 1

      Safari does it too :)
      Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_2; en-us) AppleWebKit/525.18 (KHTML, like Gecko) Version/3.1.1 Safari/525.18
      notice the "like Gecko", probably to impersonate Firefox

    2. Re:Mozilla by Kalriath · · Score: 1

      Uh, EVERY User Agent has Mozilla in there, and they've said Mozilla since before Mozilla even existed.

      --
      For a site about things like basic rights, Slashdot users sure do like to censor "dissent".
  50. are you sure it's avg_free_stf_xxxx.exe by pbhj · · Score: 4, Funny

    Shouldn't it be avg_free_stfu_xxxx.exe ??

  51. Safe Search by fireheadca · · Score: 3, Informative

    I love AVG for the free scanner it provides but ...

    Safesearch: It doesn't work.

    Somehow I ended up on one of those "Your computer is infected..." sites
    while trying to dl their crap. So for fun I went back to the referrer page
    (google) and sure enough, it was marked as safe.

  52. AVG just needs to log scan results themselves by BroadbandBradley · · Score: 2, Interesting

    here's my proposed compromise:
    1. scan the users search results
    2. upload data to avg database
    3. next user that has those urls in a search result first check with the avg database to see if those sites have been scanned in say the last hour.
    4. only scan urls that haven't been checked recently

    of course, then the AVG server would take the brunt of the increased bandwidth, but hey that only seems fair.
    OTOH, why people continue to struggle with keeping a windows box running when they could just wipe and install a nice Linux desktop....I'm so happy my Ubuntu desktop doesn't expose me to these kinds of issues.

     

    1. Re:AVG just needs to log scan results themselves by Anonymous Coward · · Score: 0

      Then people would scream bloody murder that AVG is monitoring their search habits and phoning home.

    2. Re:AVG just needs to log scan results themselves by Anonymous Coward · · Score: 0

      Just hash the URL

  53. I second BitDefender by GameboyRMH · · Score: 1

    I've used it before, it's pretty good.

    --
    "When information is power, privacy is freedom" - Jah-Wren Ryel
  54. Firefox3 saves the day! by __aardcx5948 · · Score: 3, Informative

    Hah! Checking my addons in FF3, and on AVG Safe Search 8 it says "Not compatible with Firefox 3.0". Awesome :-)

    1. Re:Firefox3 saves the day! by evilviper · · Score: 1

      Hah! Checking my addons in FF3, and on AVG Safe Search 8 it says "Not compatible with Firefox 3.0". Awesome :-)

      I was using it (with FF3) yesterday. Perhaps you need to upgrade AVG.

      --
      Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
    2. Re:Firefox3 saves the day! by Kolargol00 · · Score: 1

      Yep! :) Upgrading from Mozilla Firefox 2 to 3 kicks AVG's extension away because it is not compatible with FF3 (yet).

      --
      XML is like violence. If it doesn't solve the problem, use more. Junta
  55. WTF? by sm62704 · · Score: 0, Troll

    AVG spambots got mod points!

    --
    mcgrew's razor: Never attribute to stupidity that which can be explained by greedy self-interest
    1. Re:WTF? by Phrogman · · Score: 0, Troll

      Perhaps they have, considering its been marked +5 Informative, and not Humorous...

      --
      "The first time I got drunk, I got married. The second time I bought a chimpanzee, after that I stayed sober" Arian Seid
    2. Re:WTF? by Anonymous Coward · · Score: 0

      If it was marked +5 Humorous that would be worse, since the moderation system doesn't even have a Humorous moderation. D:

  56. So AVG is reducing your security... by argent · · Score: 3, Insightful

    And with AVG, I'm becoming a little less paranoid with websites

    That is, you're reducing your security because you believe AVG is providing you valid information about the reliability of websites.

  57. I'm going to agree with the slimy assessment by WarmBoota · · Score: 4, Informative

    I installed AVG on my mother-in-law's machine because she had an expired trial version of some other AV software. It was great for a while, but they must've had a change in direction/managment. Because all of a sudden they started with popups to get a full paid version of the software - even uninstalling the product didn't fix it. I had to surgically extract crap from the registry and program files folder to finally get rid of it. Avast or ClamWin for me - no more AVG.

    --
    90% of everything is crap. Also, crap is relative.
    1. Re:I'm going to agree with the slimy assessment by post.scriptum · · Score: 1

      I think that is because you didn't use the new 8.0 version.
      I saw similar pop-ups but only upgraded to the new free 8.0 and it was ok.
      You don't have to pay for that one.

    2. Re:I'm going to agree with the slimy assessment by NuclearRampage · · Score: 1

      Sure you installed the free version or were not just getting the pop-ups about the new version? Never heard of AVG doing what you describe with the free version, much less after an uninstall.

  58. Did anyone else think that this might be helpful. by AmericanPegasus · · Score: 2, Interesting

    Ok, sure I understand all of the issues at hand here. It is obviously flooding the internet with fake results which must be stopped. So maybe it shouldn't be a default option. But I have to say, that for searching for skeevy websites on Google (not that any of us would be searching for cracks, hacks, warez, or skeevy porn) it sure is useful to know which websites will try to hi-jack my computer before I click the links to them.

  59. Slimy? by Atraxen · · Score: 4, Insightful

    I think I missed the memo - why is AVG a "Slimy anti-virus provider"? That portion of the summary BEGS for supporting links...

    --
    Be careful of your thoughts; they could become words at any minute...
    1. Re:Slimy? by Jeff+DeMaagd · · Score: 1

      Are you a user of AVG 8? If you are, you might not criticize so much.

      For one, the summary said that it's noticeably hammering web servers by prefetching the link.

      Maybe not slimy, but if they said irritating, I would agree. AVG 7.5 and older wasn't so bad for me at all. The installer puts in a AVG / Yahoo search bar in the web browser without asking, and I see no way to remove it without uninstalling AVG. Turning off link scanning permanently turns on a warning that you're not really protected.

    2. Re:Slimy? by Anonymous Coward · · Score: 0

      From TFA:

      "AVG's chief of research Roger Thompson says the for-pay LinkScanner is only using the IE6 user agent. Presumably, the company believes this is more likely to fool malware exploits. "There are still ways for concerned web masters to filter LinkScanner requests out of their statistics," he told us over email. But he did not divulge these methods and did not say whether they might clip legitimate traffic as well."

      and

      "AVG's security philosophy is fundamentally at odds with webmaster peace of mind. The company wants to scan search results, and it wants to scan them in a way that's difficult to distinguish from real traffic. "In order to detect the really tricky - and by association, the most important - malicious content, we need to look just like a browser driven by a human being," AVG chief of research Roger Thompson has told us.

      And if that causes problems for webmasters, Thompson says, so be it. "I don't want to sound flip about this, but if you want to make omelets, you have to break some eggs.""

      In other words, "yes, you can block it, but we won't say how" along with "we don't care if it's causing problem for others, we've got our own fish to fry and that's more important".

      Sounds slimey to me. I've been recommending AVG in the past, but no more.

    3. Re:Slimy? by Anonymous Coward · · Score: 0

      At first they were just clueless. But now, after they have had input from hundreds of people about all of the many disadvantages to users and webmasters alike, and for more than a week, they now choose to bury their head in the sand on the issues.

      AVG bought a pile of Junk from Exploit Prevention Labs; that much IS clear.

    4. Re:Slimy? by mxs · · Score: 1

      And if that causes problems for webmasters, Thompson says, so be it. "I don't want to sound flip about this, but if you want to make omelets, you have to break some eggs."

      From the linked article in the original submission. That is enough of a supporting statement for the statement given.

      Fuck them, they deserve everything they're getting. If you don't want to be a good net citizen, you should not get the benefit of the doubt.

  60. No sir, that is not the complain by Anonymous Coward · · Score: 0, Troll

    The complaint is that they are "spamming the internet with deceptive traffic".

    No, that is not the complaint, and you are being disingenuous. The complaint is that users of their software are "spamming the internet with deceptive traffic" which is easily correctable with a change in the default install.

    The company should be on the hook for providing a default install that is problematic, but your questions are kind of silly and inapplicable. For example

    How exactly do the websites getting slammed with this bullshit traffic "not even install this part of the program" and "if you don't like it don't use it"?

    This question makes no sense, clearly they already don't use it. I have to ask though, aren't there professionals who administrate these websites? Why aren't they dealing with this problem, as it is their job?

    So how does Slashdot "just not use" the AVG product and recover that 6% of their page traffic again?

    Again, they're already not using it, I see what you're trying to do, but it's not working. The websites involved are responsible for managing their traffic, they need to do it.

    Honestly, your post was kind of stupid and reactionary, and wasn't really worth replying to, but since it was also hyperbolic and wrong I decided I'd tell you.

    1. Re:No sir, that is not the complain by BasharTeg · · Score: 1

      "which is easily correctable with a change in the default install"

      When you figure out how to get all of the people installing AVG to make this simple change to their default install, let us know. We can use the same technique to get all the IE6 users to upgrade to a secure browser.

      Until then, we're stuck cleaning up the mess created by this irresponsible and not very well thought out feature.

    2. Re:No sir, that is not the complain by clang_jangle · · Score: 1

      No, that is not the complaint, and you are being disingenuous.

      You must be hallucinating. Yes, that is the complaint, and no, you're the one being disingenuous.

      --
      Caveat Utilitor
    3. Re:No sir, that is not the complain by DJProtoss · · Score: 1
      ok, I'll bite.

      I have to ask though, aren't there professionals who administrate these websites? Why aren't they dealing with this problem, as it is their job?

      How? This is something entirely outside the webmasters control. Take /. (as we have some actual figures from above to play with). A 6% increase in traffic means a 6% increase in costs*, and for no gain to the site ( a loss in fact, as viewing metrics are now screwed up as well ).
      I've seen two suggestions:
      1. vigilantism - embed a miniture iframe with a google search for 100 pages from their site in your site's footer and hurt them back ( they have to pay someone else ). I find this is a rather distasteful approach, ethically.
      2.create some form of RBL list of user ip's that are using AVG and bounce them to a page with instructions on why and how to disable it. Which is just silly, really.

      *Yes, I realise that assumes a linear cost/bandwitch pricing structure which is relatively inaccurate, but fundamentally more bandwidth will cost more money.

      --
      "Success is based on knowing how far to go in going too far"
    4. Re:No sir, that is not the complain by znerk · · Score: 0, Flamebait

      Honestly, your post was kind of stupid and reactionary, and wasn't really worth replying to, but since it was also hyperbolic and wrong I decided I'd tell you.

      How's this for reactionary? YOU ARE AN IDIOT. Since you were being hyperbolic and wrong, I thought I'd tell you.

      What AVG is doing is illegal, and I hope they get sued into oblivion by each and every one of the sites suffering due to their ignorance and malice.
      I want to see whoever was ultimately responsible for this fiasco doing some hard time under the computer fraud and abuse act.

      FACT: A distributed denial of service attack is a federal offense.

      FACT: This is criminal negligence, at best.

      Nuf sed.

      --
      This work is licensed under a Creative Commons Attribution 3.0 Unported License.
    5. Re:No sir, that is not the complain by Anonymous Coward · · Score: 0

      The complaint is that they are "spamming the internet with deceptive traffic".

      No, that is not the complaint, and you are being disingenuous. The complaint is that users of their software are "spamming the internet with deceptive traffic" which is easily correctable with a change in the default install.

      The company should be on the hook for providing a default install that is problematic, but your questions are kind of silly and inapplicable. For example

      How exactly do the websites getting slammed with this bullshit traffic "not even install this part of the program" and "if you don't like it don't use it"?

      This question makes no sense, clearly they already don't use it. I have to ask though, aren't there professionals who administrate these websites? Why aren't they dealing with this problem, as it is their job?

      So how does Slashdot "just not use" the AVG product and recover that 6% of their page traffic again?

      Again, they're already not using it, I see what you're trying to do, but it's not working. The websites involved are responsible for managing their traffic, they need to do it.

      Honestly, your post was kind of stupid and reactionary, and wasn't really worth replying to, but since it was also hyperbolic and wrong I decided I'd tell you.

      No.

    6. Re:No sir, that is not the complain by Anonymous Coward · · Score: 1, Insightful

      "What AVG is doing is illegal"

      Source?

      "FACT: A distributed denial of service attack is a federal offense."

      So is murder, this is neither, why lie about what this is when what it really is is bad enough?

      "YOU ARE AN IDIOT"

      And you are a liar.

      Truth said.

    7. Re:No sir, that is not the complain by D.McGuiggin · · Score: 1

      Are you not capapble of telling the difference between the users of AVG and AVG themselves? That's the only explanation for why you think what you do even though you're wrong

      I don't agree with the OP's reasoning, but your inability to see that AVG and it's users are separate groups doesn't make your point accurate.

    8. Re:No sir, that is not the complain by Anonymous Coward · · Score: 0

      Let me guess. You're a Libertarian.

    9. Re:No sir, that is not the complain by clang_jangle · · Score: 1

      First of all, the very nature of that business is fraud -- there is no effective "anti virus" software, period. Therefore you are maintaining that a class of people so ignorant they fail to realize they are downloading and installing something utterly worthles which will needlessly slow down their computer are people who will be knowledgeable and responsible enough to change the default settings to something less destructive? Look at it this way: If GM sold a car with a deadly fault which could be easily fixed with a small adjustment would you argue that because it can be easily fixed by anyone who takes the time to learn about the flaw and how to fix it that GM is not the responsible party?

      --
      Caveat Utilitor
  61. Re:Sending the bills to them. by Anonymous Coward · · Score: 0

    Check your apache config, i imagine the sites in question are not set to
    Order Deny,Allow
    and until it is, you're giving permission. I recommend you become a lawyer because this tech thing isn't for you.

  62. Alternatives? by t33jster · · Score: 1

    I've been a happy AVG Free user on my Windows machines at home for a few years. I noticed the same problems as others have noted when the 8.0 upgrade was enforced, but I have mostly gotten used to it.

    What I'd like to know is if there's a comperable free antivirus that doesn't piss off the /. community (Linux is not what I'm looking for, as my wife sees no reason to relearn how to use her computer, and I still want to play COD4).

    --
    Take off every 'sig' for great justice.
    1. Re:Alternatives? by Rashkae · · Score: 1

      I'll put my vote with Avast. I preferred AVG 7 because it was light weight and didn't nag for registration. But now AVG 8 has become bloated and is, in my books, adware that tries to trick users into buying full version, even though home use is 'supposed' to be free.

      Avast has the annoying habit of requiring free users to re-register every year, but doesn't try to trick you into an upsale.

  63. Linkscanner by novafluxx · · Score: 1

    I don't use that linkscanner crap. I use AVG cause its free, but I don't use the email scanner or the linkscanner...which is probaby what's causing this. If you do a custom install you can uncheck that linkscanner crap.

  64. When will the webmasters grow a pair... by QuietLagoon · · Score: 1, Insightful
    ... and start charging AVG for all the excess bandwidth usage caused by AVG's DDoS against the websites?

    AVG's botnet is currently 20 million strong and growing. If AVG can do this type of DDoS against websites, what is to stop any other malicious entity from doing the same?

    1. Re:When will the webmasters grow a pair... by karot · · Score: 2, Insightful

      Because 99% of AVG installers will not have the slightest clue that they are contributing in a harmful way to Internet traffic volumes - They are just installing the latest version of their free AV product, and is is largely harmless to them.

      The user is freely choosing to install a "beneficial" application, one which in many respects is a very functional capable and respected product.

      This can hardly be compared to the stealth-install used by trojans and viruses which create DDoS BotNets... Can it? ;-)

      OTOH, I would love to see a major ISP send AVG a bill for this traffic :)

      --
      Enjoy Y2K? Roll-on Year 2037!
    2. Re:When will the webmasters grow a pair... by QuietLagoon · · Score: 1
      Because 99% of AVG installers will not have the slightest clue that they are contributing in a harmful way to Internet traffic volumes -

      .

      And this differs from malware, how?

    3. Re:When will the webmasters grow a pair... by karot · · Score: 1

      They knew they were installing AVG, unlike the malware! That make it a very big difference IMHO...

      --
      Enjoy Y2K? Roll-on Year 2037!
    4. Re:When will the webmasters grow a pair... by QuietLagoon · · Score: 1
      They knew they were installing AVG, unlike the malware!

      .

      A lot of malware is also installed as part of a package that the user freely agrees to install, or agrees to do, e.g., click here to see this pron. The user does not know the full payload being delivered and is an unwilling dupe, just like with AVG's new malware feature.

      The more I think about it to discuss this with you, the more I am convinced that the AVG is building a malware DDoS botnet.

  65. Their eggs are slimy. by NevDull · · Score: 4, Insightful

    And if that causes problems for webmasters, Thompson says, so be it. "I don't want to sound flip about this, but if you want to make omelets, you have to break some eggs."

    Sounds like a "fuck off" to me.

    I guess slimy is in the eye of the beholder, but the attitude reminds me of Claria.

  66. Hanlon's razor with the save! by BlackCobra43 · · Score: 5, Insightful

    Never attribute to malice that which can be adequately explained by stupidity.

    --
    I never spellcheck and I freely admit it. Save your karma for more worthwhile "lol erorrs" replies
    1. Re:Hanlon's razor with the save! by Yossarian45793 · · Score: 1

      A corollary to this is never attribute to stupidity what can adequately explained by greed.

    2. Re:Hanlon's razor with the save! by couchslug · · Score: 1

      "Never attribute to malice that which can be adequately explained by stupidity."

      The two are not mutually exclusive!

      --
      "This post is an artistic work of fiction and falsehood. Only a fool would take anything posted here as fact."
  67. Hanlon's razor by lazyDog86 · · Score: 1

    Yes, we would do well to recall Hanlon's razor

    "Never attribute to malice that which can be adequately explained by stupidity."

    --
    my insights may be modded Funny, but at least some of my jokes are modded Insightful
  68. The could use ON CLICK scanning by Anonymous Coward · · Score: 0

    which would stop the browser getting the page if link scanner thinks its got malware on it.

    Why they don't I have no fucking idea. The spokesman for them on El Reg is an arrogant twat, so maybe that's the reason.

  69. Won't anyone think of the children?!?!?! by NevDull · · Score: 0, Flamebait

    Perhaps, someone could elaborate on how they are slimey. This appears to be an attempt to protect people.

    Might it be proper to call this "The Patriot Act Principle"?

    Political ideology aside, if you don't consider some of the things this country has done since 9/11 to be slimy, you probably won't get how this is.

    1. Re:Won't anyone think of the children?!?!?! by Anonymous Coward · · Score: 0

      Let's deep cavity search every [webpage], to make sure it isn't a [malware]? Feel free to replace with [airplane passenger] and [terrorist]

  70. Security by NobodyElse · · Score: 0, Troll

    While I agree that this spoofing is potentially problematic, I do think there is a reason they're doing it. Obviously their intention is to increase their users' security, by including the LinkScanner option, and perhaps spoofing IE is just a means to that end. Assuming this to be true, ultimately the aim of this extra measure is with good intent (better security = good). Besides, as many people have pointed out (including me, in another reply), you can omit these features during installation by some command line usage. Additionally, I might point out that the TweakGuides Tweaking Companion http://www.tweakguides.com/TGTC.html offers additional hints at backing down some of AVG 8.0's resource hogging aspects that other commenters have complained about.

    1. Re:Security by novafluxx · · Score: 1

      Very good site: http://www.tweakguides.com/ I've been using a few of his guides for a reference now for a couple years.

    2. Re:Security by Guse · · Score: 1

      Really? Tweakguides? It's a great site, but you're suggesting that I should have to hack my program to make it usable? Why? I used AVG Free for a long time, but switched for a couple of reasons. 1) It doesn't perform very well in av tests (try AVComparatives.org). 2) Unless I had email to respond to, my computer wasn't usable during a virus scan. So, why on Earth would I want a virus scanner that hogs resources while simultaneously not doing its job very well? If it were the ONLY free scanner on the market, fine, but there are better options. Me? I ended up just paying for Eset's NOD32 Anti-Virus.

    3. Re:Security by novafluxx · · Score: 1

      NOD32 is the BEST...no doubt. But its been slowing my system down lately, no idea why. Takes Call of Duty 4 over 60 seconds to start. I disabled it as I was troubleshooting, and bingo, fired right up. So I switched to AVG, since my free trial was almost up anyway. AVG lately has been performing better in tests, but nod32 is the best. I won't argue with ya there! Also, its not hacking...its changing settings...if you're afraid to change default settings of a program...then you're stuck with that they give you as default

  71. COMMODO by deep_creek · · Score: 3, Insightful

    These guys rock! Free life-time license, etc... Small footprint and easy to use. http://www.comodo.com/

    1. Re:COMMODO by Machtyn · · Score: 1
      Their firewall is solid! Much better than ZoneAlarm or the other free firewalls because it lets you get granular. I can block via ports, IPs, applications and several other ways which I haven't bothered to test because I haven't needed it. (Port opening and blocking I did need... gotta let those game servers of mine accept incoming friends connections.)

      In any case, I've been using the A/V and other products and it doesn't seem to bother my system. I've been wanting two things recently
      1. A fair review of Comodo's A/V and other security products
      2. AVG to stop being so annoying

      Didn't Grisoft know that when their product was going to get so popular, they were going to get a lot more downloads and "leeches" (from updates, et al.) Really, I think they are trying to lose users at this point, because I know that I've been getting the itch to try out competing free a/v software because of the advertising and potentially deceptive warnings Grisoft puts into its free a/v software. In the past, I have recommended businesses to use the pay-for version of Grisoft's products, because I felt they were that good (at least as good as Symantec). But now I can't do that. Now... where's my fair and critical review of Comodo going to come from?

  72. Re:Sending the bills to them. by NevDull · · Score: 2, Interesting

    When it comes to search engines, there's at least a method available to opt out. It may not be as good as opt-in in many ways, but robots.txt is pretty well respected by most reputable firms.

  73. I don't quite understand the logic... by fuzzyfuzzyfungus · · Score: 1

    For what AVG is trying to do, wouldn't inserting a proxy between the internet and the user make more sense?

    AV programs already seem to believe themselves free to shove whatever weird stuff deep into the system they deem best, so that wouldn't be new, and it would lighten the load considerably for both user connections and website admins. Rather than inspecting every link on every page the viewer visits, the AV app could just pass HTTP traffic through a local proxy, thus getting a first look at everything, without modifying the behavior or bandwidth demands of the client in the slightest.

    I freely confess fairly limited understanding of this area, so I could well be wrong; but surely there is a more efficient way to do what AVG is trying to do(never mind whether or not what they are doing is OK)?

    1. Re:I don't quite understand the logic... by Skapare · · Score: 1

      ... the AV app could just pass HTTP traffic through a local proxy, thus getting a first look at everything, without modifying the behavior or bandwidth demands of the client in the slightest.

      I freely confess fairly limited understanding of this area, so I could well be wrong; but surely there is a more efficient way to do what AVG is trying to do(never mind whether or not what they are doing is OK)?

      The problem with that is that it will delay the presentation of the page (or the notice that the page is something you wanted to avoid or block). AVG's tactic seems to be to pre-fetch linked content to perform this scan while the user is reading the page with the links and deciding where to click. It could even shade out links as it finds them to be bad content, or it could defer highlighting them until the content checks out as good.

      --
      now we need to go OSS in diesel cars
  74. What about advertising? by Panaqqa · · Score: 4, Insightful

    I wonder if this AVG behaviour of doing prefetch on linked sites is driving up advertising clicks at all?

    Could AVG be unintentionally committing massive click fraud?

    1. Re:What about advertising? by ballwall · · Score: 1

      It does follow adwords links, but it does so without actually scanning the destination for malware (sometimes). Hilarious, really.

      http://it.slashdot.org/comments.pl?sid=603045&cid=24046327

    2. Re:What about advertising? by Beryllium+Sphere(tm) · · Score: 1

      Worse, what if one of the sites in the searches that it prefetches for you has illegal content?

      Then you show up in that site's logs when the police raid them.

  75. Turning off the link scanner by graym0nkey · · Score: 1

    AVG lets you turn off the Link Scanner. It's under Tools>Advanced Settings>Link Scanner. I just turned it off and browsing is definitely faster, especially when I hit the back button. This is especially noticeable with Flickr. They obviously didn't consider the consequences. It's a nice idea, being able to scan links and see if they are safe, but it has its serious downside. I trust that AVG will either turn the link scanner off by default or completely disable it very soon.

    1. Re:Turning off the link scanner by novafluxx · · Score: 1

      This is right, plus with the latest program updates, you can suppress the WARNING you get from disabling it. I just did a custom install and unchecked the linkscanner... :-)

  76. Devil's Advocate by Anonymous Coward · · Score: 0

    Might this feature be helpful in finding websites that have been compromised with Malware like we've been having recently? Instead of waiting on one giant web spider program done by the antivirus company, it distributes the load and scans are done in real time.

    The Bad: increased traffic on common websites with data that will skew your numbers. The more popular AVG becomes, the worse this gets.

    The good: more real time scanning of websites for known infections and up to date blacklist updating if that is part of the Linkscanner.

    I won't defend the actions, but I won't call them slimy either. Talk about your yellow journalism.

    1. Re:Devil's Advocate by JLRodgers · · Score: 1

      AVG scans every page when you access it anyway. Since it's downloading the page to scan it, you're "visiting" the page in both instances -- so you'd be, potentially*, more of a risk for infection their way.

      * if they download the file, parse the page (i.e. download all the integrated stuff and scan them too, parse the javascript, etc), it'd be possible that a virus the scanner isn't set to detect could be downloaded and run. But if they just scan the things (no parsing other than searching for things), risk would be minimal overall I'd think.

  77. does avg pull down images? by buddyglass · · Score: 1

    If not, then rig your pages to include an IMG tag with a randomly generated file name prefaced by a constant prefix. The random portion should thwart browser caching, and the constant prefix should allow you easily grep through a log file to count the number of times these were loaded. Configure your server to rewrite all requests for images with that prefix to a 1-pixel transparent image so that "real" clients don't see a "broken image" icon.

    I'll admit this isn't my area of expertise. Is there something I'm missing?

  78. I blew AVG 8.0 away, and am using avasti now by swschrad · · Score: 1

    used to be a good tool, but you can't even surf with a 500 MHz box with that evil bitslapper installed.

    --
    if this is supposed to be a new economy, how come they still want my old fashioned money?
  79. It's a problem for client side threat scanners by Animats · · Score: 1

    We'd considered doing something like this for ad links. We offer the AdRater plug-in, which checks the legitimacy of advertised sites and puts a rating icon atop each ad. For some ad URLs, we can decode the URL and see what site is being advertised, so we don't have to follow the link. But there are cases where that's not enough. Sometimes the advertised site is just a redirector, and we'd like to follow the redirection chain and rate the ultimate target. Sometimes, the ad links are obfusicated. (Google doesn't do that; DoubleClick does.) For those cases, we'd have to pre-read the ad site from the plug-in in the user's browser, but not render the ad into a window.

    If we do that, every advertiser sees a false click-through for every ad displayed. The AdWords advertiser community would not be happy.

    This is the same problem AVG hit.

  80. What they need to do is cache the results..... by KPexEA · · Score: 1

    They need to send the "is this a bad web page" request to their OWN server that has daily or hourly cached results instead of checking over and over. Sure there would be a delay, but it would be mainly using THEIR and their CUSTOMERS bandwidth and not chewing up my sites bandwidth.

    1. Re:What they need to do is cache the results..... by Dr.+Zim · · Score: 1

      Absolutely. I am glad i read the comments before I posted basically the same thing. They might not be able to offer the service on their free version, but work it in to the subscription price, or offer it as a $5/year add-on.

      --
      (name withheld by request)
  81. AVG - bad choice for a free AV by armanox · · Score: 1

    I guess you've never used Avira then?

    free-av.com

    Free antivirus for Windows, Linux, BSD, and others.

    --
    I'm starting to think GNU is the problem with "GNU/Linux" these days.
  82. Why? by T3Tech · · Score: 1
    Why are they running through a bunch of links that never be clicked? Why wouldn't their link scanner be just as effective if it only worked on clicked links?

    Seems like the Open AV project needs step up it's progress (or become active again?).

    --
    Of course I didn't RTFA... why would I do that? You really are new here aren't you? Don't let my UID fool you.
  83. This is a disaster for serious web sites by Anonymous Coward · · Score: 1, Informative

    Some readers (and AVG) don't get why this is "slimey". It's worse than slimey -- it's outrageous.

    We provide a web service for serious scientists, and each query to our system requires a LOT of computational and database resources. We're not talking about delivering up static results or a simple database query here, we're talking about launching jobs that run for several seconds to several minutes. A given page might have dozens of these links. So a scientist who asks an reasonable question would spend a few seconds of our server's resources. But then AVS comes along, and could launch dozens of searches that might potentially use an HOUR of CPU time.

    Most of these links would never be clicked, because they're not what the scientist is interested in. But AVS, being blind and dumb, hits every one of them.

    If this goes on unchecked, we're going to have to install some elaborate traps, at great cost to us, to try to detect AVS's scans based on behavioral patters. For example, no scientist would ever click on links in quick succession, because she/he wouldn't have time to read the results. But this will cost us tens of thousands of dollars in programmer resources.

    AVS, you suck. Your holier-than-thou attitude is disgusting. What you're really doing is sucking off the resources of other companies in order to improve your own profits. You're throwing the cost of the criminals onto the shoulders of innocents.

    1. Re:This is a disaster for serious web sites by slykens · · Score: 1

      We provide a web service for serious scientists, and each query to our system requires a LOT of computational and database resources. We're not talking about delivering up static results or a simple database query here, we're talking about launching jobs that run for several seconds to several minutes. A given page might have dozens of these links. So a scientist who asks an reasonable question would spend a few seconds of our server's resources. But then AVS comes along, and could launch dozens of searches that might potentially use an HOUR of CPU time.

      Most of these links would never be clicked, because they're not what the scientist is interested in. But AVS, being blind and dumb, hits every one of them.

      I'm no expert here but this sounds poorly designed. I would suggest you find a way to serve up a static page with good information to search engines for them to link to and keep your "expensive" dynamically generated content "protected" by robots.txt or even implement some basic authentication to keep your "expensive" dynamic pages out of search engines.

      While I don't think AVG's implementation is good, either, you can't blame them when some simple forethought on your side could prevent most of the problem.

    2. Re:This is a disaster for serious web sites by Anonymous Coward · · Score: 0

      You obviously didn't think this through.

      AFG is not a *search engine*, it's the user's browser. Our robots.txt file *does* prohibit these. AVG is *ignoring* robots.txt. These are *valuable services* that we provide. How else are we supposed to provide these services?

      So, Mr. Einstein, how would YOU solve this problem? How would you detect that a real user didn't click a link, when AVG is deliberately obscuring their activities?

      Don't be so damned quick to condemn when you haven't thought the problem through.

      We'll probably have to rewrite everything into JavaScript functions that don't assemble a URL until you click them. To AVG, they won't look like links.

  84. Re:Sending the bills to them. by Anonymous Coward · · Score: 0

    IINALBICTIBL (I am not a lawyer, but I covered this in business lessons).

    Under British law, you can sue for anything which damages you, even if the act itself is normally legal. To give a rough example, to the best of my knowledge, there is no law preventing me from shining a 25 KW floodlight onto my next door neighbour's house, but a court would still order me to stop very quickly if I did that.

    I suspect the same applies to this situation: there may not be any law preventing a program from pre-fetching data from a website, but if it lead to bandwidth costs going up ten-fold, they would still have a case.

    Also, as a point of reference, about a year ago, the company I work for had problems with a third-party tool that was regularly and frequently accessing one page on our site, resulting in an (approximately) 300Mbit/sec drain on our bandwidth for a month. In addition to technological solutions to prevent further abuse, we also sued for the costs incurred.

  85. Re:Sending the bills to them. by Anonymous Coward · · Score: 0

    > Did you give Google permission?

    For robots.txt, yes. For anything else, no.

    > how about every other search/index site?

    Same thing for any other robot. That would include this avg thing.

  86. AVG Slimy? No..You Mean Norton, McAfee by moxley · · Score: 1

    I've used all sorts of personal and enterprise anti-virus. AVG is the least slimy of all of the Antivirus companies I have dealt with in 13 years of working in IT.

    After reading rave reviews I tried a switch to ESET NOD32 once, but it used more system resources than AVG.

    I have used AVG pro; free, and network edition (I am IT Director for a mid sized medical technology co) which I switched our company to from Symantec and everyone has been happy ever since.

    I think the feature they are discussing is one of the newer features in AVG 8, which I disable anyway.

    I wouldn;t be surprised if other AV companies are behind this sort of article, because AVG has never bee known as "Slimy."

  87. Re:Permission to access by Anonymous Coward · · Score: 0

    No, you're just an idiot.

    Get the fuck off slashdot. Get the fuck off the tech world. Get the fuck off the earth, because we don't need idiotic scum like you here.

  88. ClamWin is actually useful by DrYak · · Score: 4, Informative

    While all other /.ers are complaining that ClamWin is useless I want to bring some points :
    - ClamWin has a built-in plug-in to scan incoming mail in outlook.
    - ClamWin is easy to call from scripts and is a nice thing to add to the commands that are launched by your favourite bit-torrent client once a file is completed (I use this on my linux based torrent downloading/file server machine)
    - ClamWin has plug-ins for FireFox : SafeDownload, Download Scan, Download Statusbar all let you launch the scanner of your choosing once a download finishes. ClamWin Antivirus Glue is another solution, but one has to manually update the minimal supported version (the plugin is set to support up to 1.5 although it works with more modern versions).

    So, although ClamWin isn't continuously scanning in background, it can cover most of the usual entry points. (Although I don't know about plugins for Thunderbird and Microsoft file server).

    For those who like to test newer bleeding edge software : WinPooch software can launch a scan when ever an executable is opened - it's almost as good as an on demand scanner.

    --
    "Sufficiently advanced satire is indistinguishable from reality." - [Tips: 1DrYakQDKCQ6y52z6QbnkxHXAocMZJE61o ]
    1. Re:ClamWin is actually useful by nabsltd · · Score: 2, Informative

      For those who like to test newer bleeding edge software : WinPooch software can launch a scan when ever an executable is opened - it's almost as good as an on demand scanner.

      Scanning when an executable (or other file) is opened is the worst type of real-time scanning, and what makes people complain about anti-virus software slowing down their machine.

      The system I have to use at work has on-open scanning and does a full scan in the background every time someone logs in or the virus definition file is updated, both of which tend to happen when I'm most interested in getting the machine to do something quickly.

      For the Windows boxes I use at home, I have the A/V software set to scan only on write or modify, and exclude certain files that get written to a lot but are very unlikely to carry an infection (e.g., log files). Using this setup, files are generally only scanned a few times (depending on how the download and install system uses temporary space), but the system is still just as protected.

      This wouldn't work if you don't really have control over the system, and someone evil came in and turned off the A/V and then loaded a virus. Just in case, though, I have scheduled full drive scans run weekly during low use hours.

  89. and exactly how is this different than... by hAckz0r · · Score: 0

    ... say Firefox's "network.prefetch-next = true" by default setting? If a browser prefetches all the pages in the users current web page (i.e. a Google search) even when the user does not click on a single link then the web site would get just as much false statistics about what the users were viewing. There is no 'bot' involved like the article seems to imply of AVG, but producing traffic to unvisited pages is still 'fake traffic'. There is a reason for each activity, one is speed and the other safety. Is one really more wrong than the other?

    1. Re:and exactly how is this different than... by Ornedan · · Score: 1

      RTFM? http://developer.mozilla.org/en/docs/Link_prefetching_FAQ

      Firefox's prefetch only loads stuff explicitly marked as prefetchable. AVG just loads everything.
      I hope you can see the difference there.

    2. Re:and exactly how is this different than... by novafluxx · · Score: 1

      Good point Ornedan!

  90. Sigh.......too many unqualified people using PC's by Anonymous Coward · · Score: 0

    Everyone that is having "problems" with AVG8 is using the wrong platform. You should be using a Mac since you are all obviously idiots that can't figure out a simple options page.

  91. Re:Sending the bills to them. by Anonymous Coward · · Score: 1, Interesting

    Look, I'm all for setting up a public water fountain and letting people drink from it. It's what I expect. But when someone brings a hose and they aren't even drinking the most of the water they suck out (i.e. the pre-crawling bit), then, yeah, I'm going to say "Quit it, and let other people have a drink", especially if I'm paying for the water.

    It's inconsiderate and wasteful, and unnecessarily so. Slimey? No. But rude.

  92. Agreed by msimm · · Score: 1

    I used to use AVG (and liked it a lot at the time) but switched to Avast after a couple of failed detections. Avast also will scan content, but they skip the stupid stuff and just scan content you're accessing. And ya, sometimes it's good to know someones got your back when you're on a p0rn binge.

    --
    Quack, quack.
  93. Sure AVG's not slimy... by Firethorn · · Score: 4, Insightful

    Also AVG are not slimly, the spyware/trojan/malware site operators are

    However, I'd argue it's the equivalent of using a flamethrower to take out a wasp's nest - the amount of collateral damage to non-malware sites due to the spurious pulls is excessive, there are cleaner methods available.

    --
    I don't read AC A human right
    1. Re:Sure AVG's not slimy... by Slashdot+Suxxors · · Score: 5, Funny

      Whatever man, you haven't lived till you've used used a flamethrower to burn a bee's nest, a firehose to put out a candle, or a .50 cal to get rid your "rodent" problem.

    2. Re:Sure AVG's not slimy... by KnightNavro · · Score: 3, Funny

      ...or a .50 cal to get rid your "rodent" problem.

      Pansy. I use a mortar. It works especially well on burrowing rodents.

    3. Re:Sure AVG's not slimy... by tgd · · Score: 5, Insightful

      No, its the equivalent of taking a flamethrower to all your neighbor's houses because you think there might be a wasp flying around.

    4. Re:Sure AVG's not slimy... by epp_b · · Score: 1

      However, I'd argue it's the equivalent of using a flamethrower to take out a wasp's nest

      Actually, when you think about it, that would be pretty awesome.

    5. Re:Sure AVG's not slimy... by Anonymous Coward · · Score: 0

      Correct me if I'm wrong Sandy, but if I kill all the golfers, they're gonna lock me up and throw away the key.

      I knew there was a relationship between AVG and Caddyshack. I just couldn't put my finger on it.

    6. Re:Sure AVG's not slimy... by Firethorn · · Score: 1

      Awesome - yes, but when it's attached to your or your neighbor's house?

      Like any healthy man, I'm a closet pyromaniac, but it's well controlled - I do my burning away from stuff I don't want to see burned.

      --
      I don't read AC A human right
    7. Re:Sure AVG's not slimy... by rrkap · · Score: 5, Funny

      No, its the equivalent of taking a flamethrower to all your neighbor's houses because you think there might be a wasp flying around.

      Oh, come on! Who hasn't done that?

      --
      I like my beverages with warning labels!
    8. Re:Sure AVG's not slimy... by initdeep · · Score: 1

      IT'S IN THE HOLE!!!!!!

    9. Re:Sure AVG's not slimy... by mrmeval · · Score: 1

      Not .50 but .22-250, it's way cheaper for rodentia. That long reach wasp killer *IS* a flame thrower if you use a lighter. *ducks*

      --
      I'd go on a Vegan diet but the delivery time from Vega is too long. --brownkitty
    10. Re:Sure AVG's not slimy... by dreadclown · · Score: 1

      or a .50 cal to get rid your "rodent" problem.

      A shotgun works fine too!

    11. Re:Sure AVG's not slimy... by irtza · · Score: 1

      white, anglosaxan protestants can't fly and whatever issues you may have had, you shouldn't generalize to the entire poulation - its rascist

      --
      When all else fails, try.
    12. Re:Sure AVG's not slimy... by op8ed · · Score: 1

      Flamethrower are fun but I prefer a kilo shaped charge of C-4 for wasp... nothing beats a big explosion. "There in no problem in life that the proper application of high explosives can't solve"

    13. Re:Sure AVG's not slimy... by kesuki · · Score: 1

      I know a cat hater on a a farm, cats are pretty inevitable if you have a farm...

      he prefers .22 caliber guns for the elimination of cats, he also owns a .45 but the noise level is too great, lower caliber is always better for small animals, for mice, a pellet gun is probably the preferred caliber, if you can manage to catch one with say, infrared goggles.

    14. Re:Sure AVG's not slimy... by Anonymous Coward · · Score: 0

      I know a cat hater on a a farm,

      Iz in hiz farms, gettin red E to killz im.

  94. Re:Sending the bills to them. by Anonymous Coward · · Score: 0

    "Did you give Google permission?

    how about every other search/index site?"
    Yes, I've explicitly given search robots permission to index parts of my site via robots.txt.

    However, there are sections of my site I tell them that they can't search, mostly content that goes out of date very quickly.

    Which AVG (of course) ignores.

  95. AVG malware - will rules work in config file? by Anonymous Coward · · Score: 0

    I'm not using .htaccess files for speed reasons. Will the parent post code work if copied verbatim into the apache config file, or something similar with a redirect rule?

    And for the AVG fanboys who think this isn't slimey, it is exactly that. AVG is putting out a product that is harming small business web sites, home business web sites, most non-profits, hobby sites and any other site that doesn't have a programmer or scripting guru or apache expert working on payroll, which is the vast majority of the internet. Log stats are the key to figuring out how to improve the site layout, info, design, seo, popularity and a whole lot more. AVG is enabling log spamming and burning sites' bandwidth in order to sell a malware scanner. They themselves are selling malware with these tactics.

    1. Re:AVG malware - will rules work in config file? by Anonymous Coward · · Score: 0

      Will the parent post code work if copied verbatim into the apache config file, or something similar with a redirect rule?

      Yeah, either globally or per VirtualHost. Unless you're already using rewrites, you'll probably need to prepend "RewriteEngine on".

  96. YOU are clicking on every link! by hudsucker · · Score: 5, Interesting
    Let's say that your Google search returns some links that are NSFW, or could be considered illegal to view. As a far as anyone looking at server logs is concerned, you are choosing to view those links.

    How long before someone gets fired or arrested, and tries to explain that it was their anti-virus software that was viewing the child pr0n?

    1. Re:YOU are clicking on every link! by tonycheese · · Score: 1

      What kind of search terms are you putting into google?!

    2. Re:YOU are clicking on every link! by the_one(2) · · Score: 1

      that would be good. maybe people wouldn't be so quick to get the torches and pitchforks if this was common enough

    3. Re:YOU are clicking on every link! by hudsucker · · Score: 2, Interesting

      Well, I wasn't thinking of me -- I only search for fuzzy bunnies and pink ponies.

      But I have a friend (really) who was surfing through a company network. They claim that he was accessing inappropriate content and he was fired. He says that he was checking out vacation destinations for a trip, but one of the search results was fake (it used fake key words or something to boost its page rank) and let to a pr0n site.

      So I'm thinking that the AVG LinkSearch can lead to cases where someone is accused of such activity, when really they didn't.

    4. Re:YOU are clicking on every link! by Anonymous Coward · · Score: 0

      But that printer was accused of illegal downloading!

    5. Re:YOU are clicking on every link! by Anonymous Coward · · Score: 0

      I've seen some pretty damn nsfw content on relatively innocuous search terms.

      A while ago I was trying to make a lame joke about 'spoilers' - so was trying to get an image of one of those wing spoilers that people attach to the back of their cars. GIS managed to return something particularly unexpected on the first page. An octopus was involved.

      This was at home, so it wasn't as much of a problem as it might have been. I'm certainly not going to try and repeat the experiment while I'm at work.

      However, I'm not sure the question (being sacked due to AVG's activity) is that much of a legitimate concern - are any large companies likely to be using AVG?

      F_T

  97. And you complain by Anonymous Coward · · Score: 0

    that *Linux* is arcane!!!

    ROFLMAO!!!

    1. Re:And you complain by maxume · · Score: 1

      Actually no, I don't.

      --
      Nerd rage is the funniest rage.
    2. Re:And you complain by Tim+C · · Score: 1

      Well I don't, but then nor do I complain that Windows is hard to use because one particular piece of software available for it is a bit shit.

  98. Comment removed by account_deleted · · Score: 0, Troll

    Comment removed based on user account deletion

  99. Which idiot wrote this program anyway? by dumbo11 · · Score: 2, Informative

    After some checking logs today - the beauty of this mess, is that linkscanner doesn't send accept-encoding and it also seems to 'support' the caching header in a quite hilarious manner.
    If your homepage is 100k, browsers will see a page maybe 15k in size, linkscanner sees a page 100k in size.
    If you regularly update and set a low/negative expires, then a browser will see the page once (when they visit it), whereas linkscanner seems to re-download the page every time it sees a link to it.... combined with a page that is SEO optimized, and you can see insane bandwidth usage.
    *IF* page scanner avoided re-downloading pages with "don't cache" set (since it's bloody pointless), AND supported gzip encoding - then I wouldn't be quite as pissed as I am. Honestly, this is not only a bad idea, it's half-assed coding on top of that.

  100. Just limit the scope by RayMarron · · Score: 1

    This reminds me of that FF link-prefetch feature that, IIRC, got removed (or did I just disable it so long ago...) because it was such a pig.

    Why not just have AVG pre-scan links you actually *click* on rather than scan the entire page of search results, most of which you'll never look at beyond the summary? Is there a technical reason it can't do that?

    --
    ON DELETE CASCADE
  101. But this is OLD news by bobbonomo · · Score: 1

    I submitted an article to ./ on May 30 about this AVG thing. I did not read about it but discovered it for myself. I was rejected.

    http://www.cre8asiteforums.com/forums/index.php?showtopic=62865&hl=

    A month later it is news (for Nerds) although it is still stuff that matters.

    Now I ask if you need to know someone to submit or does it have to be written by someone else?

    This is borderline spyware or badware. Shame on them. Even worse. Let's say you do a search and within the results is a site that, if visited, will raise someone's flag somewhere. Guess what? You visited. You have just made the list of people to monitor. A well meaning crusader of something or other could devastate people lives with this misleading data. I'm sure we can all think of examples. I removed it then did an install without it. Geez did we need this?

  102. The problem is SafeSearch by Fallen+Andy · · Score: 1
    ... which I understand was "bought in" technology. The only reason I've switched (for a while back to Avira (old name Antivir-PE) and now to a lean and mean Avast setup is my ancient Toshiba (192MB mem, celeron 500). Minimal AVG setup with just the resident protection (but no tray icon) is roughly the same footprint as Avast with just the standard provider. Avira, sadly uses about 50MB more and can't be slimmed down - which is a killer for my old machine.

    Seriously, someone should clunk the marketing people at Grisoft over the head with a large wrench. The adverse publicity (here and over at vulture central (note the date) will cause them big problems). At the very least they need to set the defaults so that safesearch is *turned off* (and send this as part of their automatic updates so the problem doesn't simply keep on growing).

    Andy

    1. Re:The problem is SafeSearch by moxley · · Score: 1

      I would totally agree.

      It seems like with some software products this happens. They start out lean and altruistic - and end up bloated and self-serving - with a "new and improved" feature with every release eventually ending up being something you want to uninstall.

      (Not that I am saying this is happening or will happen with Grisoft - but I do agree that "Safesearch" is crap)

      AVG needs to remember the thing that got there where they are today: A free, non-bloated product that worked better than retail competitors that was championed and spread by those who work in IT support.

      I think they should keep the integrated anti spyware in version 8 - but either dump (or as you suggested) default deny the "safesearch" crap.

  103. Re:Sending the bills to them. by Anonymous Coward · · Score: 0

    However, this thing only grabs URLs that show up in search engine results. So if you use robots.txt to opt out of search engines, you've opted out of this as well.

  104. I feel like watching Netscape die by Ilgaz · · Score: 2, Interesting

    I got MS Virtual PC installed on PowerPC G5 Quad running (unfortunately, forced) XP SP3.

    As you probably know even such a emulator/virtual machine can get infected by a worm/virus and can also actually run it. So, I thought about 4-5 years back and installed AVG Free edition after trying various stuff. It was the previous, simple version which did a damn well job for obvious junk and it was almost transparent to that P3 500 equivalent virtual machine.

    It shows me warning that I should update to version 8, after watching that it takes 35 mins just to install, I travelled further back in time in my memories. You know the difference between AVG 7 and AVG 8? Same as the difference between legendary Netscape 3 Gold and Netscape 4 communicator.

    RIP to another excellent software/formula wasted by incompetent developers and a company trying to become which they can never be, Symantec. Symantec can save themselves and survive thanks to millions of dollars in advertising, straightly bought out technical correspondents, reviewers but AVG will be a thing of past. I am actually surprised nobody started a "Save AVG 7 petition" yet.

    The code they wasted actually saddens me even while I mainly use OS X. Avast guys should be careful, they are in same path too.

  105. Not "Slimey" . . . by mmell · · Score: 2, Insightful
    "Slimy". Spell it right!

    Seriously, AVG wasn't trying to DDoS websites around the world - they were only demonstrating that they aren't very good at predicting the consequences of their software's actions.

    Never attribute to malice what can readily be explained by simple ignorance.

  106. Comment removed by account_deleted · · Score: 1

    Comment removed based on user account deletion

  107. It's NOT easily correctable at all.... by ciscoguy01 · · Score: 1

    The complaint is that they are "spamming the internet with deceptive traffic".
    No, that is not the complaint, and you are being disingenuous. The complaint is that users of their software are "spamming the internet with deceptive traffic" which is easily correctable with a change in the default install.

    Well, it's hardly easily correctable with a change in the default install.
    You have to install with this command line:
    c:\avg_free_stf_*.exe /REMOVE_FEATURE fea_AVG_SafeSurf /REMOVE_FEATURE fea_AVG_SafeSearch

    You couldn't give that command to someone over a beer or even on the phone. It's ridiculously complex, it should be much more simple. It's really really hard.
    They stumbled in their architecture decisions on the new release. Made bad choices. Hopefully AVG is fixing all this nonsense right now.

    --
    .
  108. Re:Sending the bills to them. by Kadin2048 · · Score: 2, Insightful

    Well, the "No Trespassing" sign in this case is presumably a robots.txt file.

    AVG is choosing not to follow robots.txt. If you accept that AVG's linkscanner is, in fact, a robot, then they're basically ignoring a clear warning to keep the hell out.

    What's still open to debate, in my mind anyway, is whether the AVG linkscanner really qualifies as a robot. If it is, then certainly a web browser that performs pre-fetch is as well, and ought to follow the same standards.

    --
    "Ladies and gentlemen, my killbot features Lotus Notes and a machine gun. It is the finest available."
  109. Actually, vigilantism could work. by znerk · · Score: 1

    I've seen two suggestions:
    1. vigilantism - embed a miniture iframe with a google search for 100 pages from their site in your site's footer and hurt them back ( they have to pay someone else ). I find this is a rather distasteful approach, ethically.

    2.create some form of RBL list of user ip's that are using AVG and bounce them to a page with instructions on why and how to disable it. Which is just silly, really.

    Or just bounce them from whatever they were *trying* to view to a page that explains that they are being banned from the site due to abuse, and explain why.

    If enough people suddenly can't use the internet because their Antivirus providers are a bunch of ass hats, that should hit AVG in the pocketbook much harder than the bandwidth-hogging "vigilantism" approach laid out in "1", above.

    I fully expect to see someone at AVG go to jail, anyway, (DDoS is a federal offense, and this is criminal negligence, at best). This will hopefully make them more wary of distributing fantastically broken code in the future.

    Sorry if I seem like a hard ass, but it's not like this was an unforeseeable consequence of their actions.

    --
    This work is licensed under a Creative Commons Attribution 3.0 Unported License.
    1. Re:Actually, vigilantism could work. by DJProtoss · · Score: 2, Insightful

      I fully expect to see someone at AVG go to jail, anyway

      Hmmm. expecting someone corporate to be held properly accountable for misdeeds these days? Optimistic at best ( although not impossible ).
      but hten again I'm a cynic. Maybe I've just been here too long.

      --
      "Success is based on knowing how far to go in going too far"
    2. Re:Actually, vigilantism could work. by znerk · · Score: 1

      Hmmm. expecting someone corporate to be held properly accountable for misdeeds these days?

      Unfortunately, you are all too accurate in your assessment. If this were some kid in the 'burbs, there'd have been feds all over his neighborhood in days, if not hours. Corporations nowadays seem to have some sort of built-in immunity to ethics and accountability. The fact that it's extremely difficult to nail someone's ass to the wall for a corporation's misdeeds might have something to do with that.

      Hmm. Now that I think about it, that seems to be an issue with the governmental structure, too.

      --
      This work is licensed under a Creative Commons Attribution 3.0 Unported License.
  110. It's pointless by raijinsetsu · · Score: 1

    So, if we all know how to block the AVG client from our sites, what's the purpose in the falsified AVG header? Also, I've been a long time customer of AVG. They've never done anything "slimy". This news does not indicate they are slimy. They are trying to protect their customers, but I do agree they should have found a different way to do this. Personally, I'll be turning off this feature when I get home. I was beginning to wonder why searches were taking so long.

  111. [* Default settings suck on most AV apps *] by PCMeister · · Score: 1

    Oblig: The following is just my $0.02 from experience with such products, and not meant to troll or start a flame-war. With that being said, any time I find a system running Symantec/McAfee AV of any kind, corporate or otherwise, I have a quick discussion with the user and proceed to uninstall it. Ditto for Microsoft One'could'Care'less'. It's no secret that those products are notorious for siphoning resources and their effectiveness is questionable at best. It's not like there's a silver bullet for anti-malware purposes, but there are much better alternatives out there. Again, just my $0.02.

    I've installed AVG, Trend Micro and Bitdefender, among others, in the past several years and must say that the default settings on most anti-virus/anti-spyware apps definitely need some tweaking; IMHO of course. At the very least, a much better explanation for the average end user during the installation process; as in what each module does and if you want to activate it. It would also benefit the end user to have a much easier way to disable problematic features such as Linkscanner in AVG. As for techs and the like, the advanced/custom menus will do just fine.

    From my experience, BitDefender could use a rework of the UI. Too much shit to sift through and it would also benefit the users, especially techs, to be able to easily save/restore settings in the event you're setting up several machines at a friend's or family member's house.

    Regardless of which product I end up installing, I always choose a custom setup and un-check options such as LinkScanner, or any toolbar-related modules for that matter. During the installation, I explain to the user why it's being installed the way it is. I also disable any scheduled scans as they cause nothing but trouble for the average user; as in full scans scheduled by default to start at 8 or 9am. Most times when I get a call about the machine slowing down to a crawl, I ask if an AV product has been recently installed. Aside from actually being hit by a nasty virus or spyware, it usually ends up being the case. This is from those who try to install the AV app on their own and wonder why the system is running terribly slow. Experiences like that are very common across most anti-malware apps.

    Another issue I have with most, if not all 'internet security' apps is their implementation of a firewall. What a monumental piece of complicated horse shit all the way around. Problems ranging from ActiveSync not working anymore because of blocked ports to file-sharing being blocked. And those that claim to be a 'smart' firewall because apps are granted access based on a approval list maintained by the vendor causes it's own set of problems. Needless to say, that I stay away from using such firewall apps from AV vendors. If it's a desktop, the crappy Windows firewall will do. If it's a laptop, I disable file-sharing and explain to the user how to turn it back on if needed, plus I suggest something like Zonealarm if it's a home user or Zonealarm Pro if it's a corporate user.

    Comments and rants are more than welcome. LOL!

  112. Unlike slowing down all your access by Anonymous Coward · · Score: 0

    by loading down and scanning 10 search results you weren't going to...?

    How's that work?

  113. Grow Up by Detritus · · Score: 0, Flamebait
    It isn't a DDOS or the imminent death of the Internet.

    If your web site can't deal with the minor increase in traffic, I suggest you unplug the server and return it to Frito-Lay in the original Cracker Jack box that it was shipped in.

    --
    Mea navis aericumbens anguillis abundat
  114. Re:Sending the bills to them. by NevDull · · Score: 1

    Yes, but robots.txt lets you specify not only permission to retrieve the page, but also what the robot can do with it. AVG's using the result of the permission I give to Google without having permission itself.

    I'd love to see Google step up and say that the application erodes trust between Google and webmasters, and push AVG to do something... or subtly break the functionality in some manner.

    In the mean time, since it's possible to detect requests from the AVG toolbar (the missing accept encoding header), web sites could launch an awareness campaign with an interstitial YOU IDIOT! page when a human visit follows AVG's "visit".

  115. Collecting IP addresses of AVG users by Everyman · · Score: 1

    A site that started last week, AVG Watch, is collecting the IP addresses of LinkSpanner users that visit two other sites they have. After three days, they have 21,000 addresses.

  116. Too bad. I used to love this AV by keith_nt4 · · Score: 1

    I've been using AVG Free for years. Then 8 came out and they added a bunch of crap including the link scanner. The link scanner I noticed prevents some sites from loading correctly and seems to slow down others. You can disable the feature but it certainly seems to discourage this. Apparently I new have to find an alternative to AVG. Seems like this was a bad business decision on their part (I certainly won't be buying the full version now).

    --
    "UNIX is very simple, it just needs a genius to understand its simplicity." -Dennis Ritchie
    1. Re:Too bad. I used to love this AV by novafluxx · · Score: 1

      You know you don't even have to INSTALL the linkscanner right? I didn't...just do a custom install. I custom install EVERYTHING on my pc, this way I don't get some ninja tool-bar or some other crap. You don't need to find an alternative, you just need to disable it, or re-install and choose not to install it.

  117. AVG lost their touch by Anonymous Coward · · Score: 0

    The newest AVG Free is crap compared to the 7.5 version. The user interface sucks (non-intuitive, non-customizable, nag-screen-like panel at the bottom). And now this. Looks like the Grisoft must have hired some "brilliant" MBA or something to manage the product, who thinks, "If it's not broke, change it."

    1. Re:AVG lost their touch by kpainter · · Score: 1

      My SD Card reader quit working on my laptop after installing AVG Free 8. I would have rolled back to v7.5 except for the upgrade pop-up that occurs every time I updated the definitions. That was the last straw. I uninstalled it in favor of Avast. Thus far that is working well for me and my SD card reader works again.

  118. Fine by Anonymous Coward · · Score: 0

    Roger Thompson:

    "I don't want to sound flip about this, but if you want to make omelets, you have to break some eggs."

    So be it. We'll have to break Roger Thompson's eggs.

  119. ColdFusion version w/multiple domains by Anonymous Coward · · Score: 0

    Here's a version for ColdFusion that will work on any webserver. The script is also checking http_referer since I read another article stating that this parameter is empty too, but this can be easily removed if you prefer.

    I also added a randomizer that uses different domains in order to spread the message and return the favor of skewing their statistics.

    <CFIF NOT LEN(trim(CGI.HTTP_ACCEPT_ENCODING)) AND (findnocase("1813", CGI.Http_user_agent) OR findnocase("Mozilla/4.0 (compatible; MSIE 6.0;", CGI.Http_user_agent)) AND NOT LEN(CGI.Http_Referer)>
            <CFSET URLList = "http://www.avgfree.com/,http://www.avg.com.au/,http://free.avg.com/,http://www.avg.com/,http://www.grisoft.com/,http://www.grisoft.com/ww.home-and-office-security,http://free.avg.com/ww.download-avg-anti-virus-free-edition,http://www.grisoft.com/ww.product-avg-internet-security">
            <cflocation url="#ListGetAt(URLList,RandRange(1,ListLen(URLList)))#?LinkScannerSucks" addtoken="No">
    </CFIF>

  120. Stop acting like it's the users. by znerk · · Score: 1

    It's not the users' fault that AVG have gone and screwed the pooch.

    I, for one, hope to see AVG go down in flames as they are sued into oblivion by the majority of websites inconvenienced by this distributed denial of service attack against the internet itself.

    Sorry, but even a novice coder would know better than to have code that even pings an address, much less sends a text request for a large amount of text. Not in an application with a couple million users.

    Personally, I don't see this as any different than the bot-nets that were all the rage a few years ago on irc. It seems to me that anyone inconvenienced by this attack should be calling the feds. Certainly anyone whose server was knocked down should be.

    Civil court is fun (show me the money!), but this is criminal. Someone needs to have their sunlight taken away.

    --
    This work is licensed under a Creative Commons Attribution 3.0 Unported License.
  121. Uh-uh - you're putting the onus on everyone BUT by mmell · · Score: 2, Insightful
    AVG (sslr).

    Lemme get this straight - for all intents and purposes, AVG has turned their entire customer base into one huge botnet, yes? They can't instruct it to "attack server ", or to initiate campaigns to increase the size of their botnet, but a botnet it remains. Anybody with AVG software installed will accept whatever that software does (at the behest of AVG), but since it lives under a cloak of legitimacy users won't be trying to purge it from their hosts anytime soon.

    So - AVG Antivirus is a trojan, it's behavior once installed is much like a worm, it has been shown to inadvertantly cause DDoS attacks on websites (hey, what's the impact on the backbone from this?). AVG Antivirus is the BitTorrent of the botnet world!

    If I wrote software like that, DOJ'd have me in jail 'til my beard reached past my kneecaps.

  122. Anonymous Coward by Anonymous Coward · · Score: 0

    Sooo.... No one noticed this option at ALL?

    http://img355.imageshack.us/img355/4032/avgbn7.jpg

    Just right click the component in the default AVG control panel, and say "ignore component state."

    BAM, no more red exclamation.

  123. Slashdot effect by prescot6 · · Score: 1

    (on Slashdot, we're seeing them as like 6% of our page traffic now)

    This is like 6% bonus damage on the Slashdot effect. Eat it, servers!

  124. Girsoft feeling the heat?? by Anonymous Coward · · Score: 0

    I just noticed something interesting, while poking around for different potential URLs to use for this redirect script here. When I enter "www.girsoft.com" directly into the location bar (Opera 9) I get a short page back that simply says "UNDER CONSTRUCTION". How ever if I enter "www.avg.com" I get redirected to "www.girsoft.com" and THAT time I get their actual web page.

    I am assuming this means they are feeling the heat of all our redirects to their site? This seems to indicate their web servers are setup to server up a simple low bandwidth page to certain requests that have a blank referrer.

    Gee, isn't this what the reset of us have had to do BECAUSE of them? Hehe. Glad to see they are feeling it too... perhaps now they will sit down and rethink this blunder?

    1. Re:Girsoft feeling the heat?? by timpotter · · Score: 1

      heh, its grisoft, not girsoft, that may be why you are not able to get to the site :-)

    2. Re:Girsoft feeling the heat?? by Anonymous Coward · · Score: 0

      Maybe you should try "www.gRIsoft.com".

  125. Re:Sending the bills to them. by ngunton · · Score: 1

    Bots should adhere to the robots.txt rules. That is how webmasters "give permission" to bots such as Googlebot to crawl their website. If a bot doesn't bother reading robots.txt, then it qualifies as abusive, in my book.

    I only give permission to googlebot in my robots.txt, and disallow everybody else. Thus AVG does not have permission to do this, no.

  126. Get your money back. by ino64 · · Score: 1

    I seriously doubt that they will get away with this. If it's 6% of the traffic on ./ then it's a measurable cost. I think one can spin that as a DDoS so just sue them. Or send at least a lovely cease & desist.

  127. Fight back. by Dogun · · Score: 1

    This behavior can't be tolerated. Major websites should try and match the source IP fake view with real view and present users with LinkScanner with a notice of what their anti-virus is costing the company.

    That ought to shame AVG into pulling the product. It's not like LinkScanner can work, anyway.

  128. Re:user agent string konqueror caught by Anonymous Coward · · Score: 0

    This filter is also more selective, by also checking for the non-existance of Accept-Language and Accpet-Charset we make absolutely sure we are not redirecting a valid user. No web browser out there would fail to set all 3 of these,

    First, absolutely thanks for supplying this.

    Second, here's my user agent string:

    Mozilla/5.0 (compatible; Konqueror/3.5; Linux) KHTML/3.5.5 (like Gecko) (Debian)

    So taking a look at my configuration options, I have "send language" unchecked. Never had a problem with seeing web sites in English. It would be simple to just tick the option, but I'm advertising the amount of info I want in the logs (Debian/konq/Linux) while at the same time minimizing info (X86_64, kernel version, X11, etc.) in keeping with the minimization is everything for security/privacy/identity theft/whatever else I may think I'm preventing. Even so...while I have the option of enabling language, the point is, it wasn't enabled, which contradicts your statement.

    I'll leave my settings as is, and should I ever be redirected, I'll know why. And I'm not suggesting any changes in code. It's quite probable that the low percentage of people who fiddle with their user agent strings are far more technical than the average user and are still quite a low percentage among the technical users, in which case each individual webmaster can judge whether their visitors fit into the category and then whether to filter or not.

    Once again, thanks for the code, I hope everyone adopts it. AVG is peddling malware.

  129. HA! by znerk · · Score: 1

    The first time through, I read that as avg_free_stfu.exe

    That is all.

    --
    This work is licensed under a Creative Commons Attribution 3.0 Unported License.
  130. Even "geeks" can't use right terminology by gnuman99 · · Score: 0

    xzclqqkxzz.com tried to upload a virus to someone's computer

    It doesn't upload, it *downloads*.

    You upload to a server and download to a client. If the server *tricks* the client to download, so be it, but it is still called downloading.

    Uploading means initiating a connection to a listening socket and sending data there.

    Downloading means initiating connection to a listening socket and fetching some data.

  131. Like Like by Anonymous Coward · · Score: 0

    Like the last time I met so many like, they took my shield away. So I set them up a bomb and made jokes about their mother; like your mom is so fat that Soviet Russia sat on her.

  132. Why not just check the pages as people click them by DJRikki · · Score: 1

    Instead of up'ing everyones web stats to amazing levels.

  133. Let me tell you how I feel about the other guys... by ClarisseMcClellan · · Score: 1, Interesting

    I thought that AVG were good guys like Google that put their customers first rather than the neo-conservative fascists that bought the White House. It's all the other A/V companies that scare me. Maybe all has changed since they acquired Linkscanner.

    Let me tell you how I feel about the other guys. It all started with Cyberstorm I, back in 2006.

    The Department of Homeless Insecurity claim that their exercises are on an imaginary parallel internet housed somewhere in the basement of the Pentagon (or somewhere like that). I personally believe that Cyberstorm I exercise was live although I do not wish to prove that, just speculate...

    To my knowledge AVG/Grisoft were not a participant in Cyberstorm, however Symantec, M$, Cisco and other commercial players were. There were some really horrible viruses that did the rounds at the time, blackmailing people into believing that all their secrets had been passed on with the virus. Another twist was that the computer would 'self-destruct' at the end of the month. Viruses made it into the news at the time, hospitals having scanners put out and such like. I was amazed at how sophisticated those viruses were. They stripped out all A/V protection, deleting the files and registry entries. Obviously a script kiddy in somewhere like Hungary could have written them, but I thought the level of sophistication and timing was odd.

    The whole idea of Cyberstorm 1 was to test whether an online anti-government word of mouth campaign could be contained. The government would not want the truth about how we got into this war to get out, and it was on the basis of Cyberstorm I that informed Rumsfeld that 'The War Against Terrorism' was here for 75 years or so. Rumsfeld was correct to focus on Cyberstorm instead of Iraq, but it could have been instrumental in his 'demise'.

    Coupled with the 'not' live exercise was 'Full Spectrum Dominance', i.e. different stories in security blogs about what the viruses were about. I think the exercise lasted a fortnight or so, and a week or two before the exercise officially started. Cyberstorm II had a deeper focus on spoof blogs and 'Full Spectrum Dominance', however, I did not 'participate' in that one...

    If AVG are now playing ball with the Department of Homeless Insecurity then the 4th generational cyber-warfare scene is getting hotter and hotter.

    Warfare has always been information warfare, remember 'Enigma'? It matters more than anything that grunts with bullets and bombs. Warfare is notionally about an external threat, however, it is always about control of the domestic population. An internal threat is a lot, lot worse than an external one for the guys in the palaces. Cyberstorm has a political motive, no matter how flowery the official language. In all warfare - online or otherwise - there is propaganda and fog of war. Fog of war means that nobody really knows what is going on. Hence, only wildly speculative hypothesis can be used to make sense of it all - hard facts don't happen and pukka adversaries run feints. Nonetheless, the Department of Homeland Insecurity do hint at this in their official spiel:

    "The Cyber Storm II scenario will be executed by persistent, fictitious adversaries with a distinct political and economic agenda. The Cyber Storm II adversary will use sophisticated attack vectors to create a large-scale incident requiring players to focus on response."

    http://www.dhs.gov/xprepresp/training/gc_1204738760400.shtm

    The document on Cryptome is a must read as this shows the whole game plan. It's scary:

    http://cryptome.org/cyberstorm.pdf

    Note that they is talking anti-globalisation, not al-make-believe or the Chinese or the Estonians...

    A press release story from the time:

    "Original Cyberstorm 1 bulletin (AP, Feb. 10, 2006):

    The government concluded its "Cyber Storm" wargame Friday, its biggest-ever exercise to test how it would respond

  134. Why we went back to 7.5 by IceCreamGuy · · Score: 1

    I'm the network, systems and phone admin for our company (medium-sized business), and we actually use AVG Network edition, which is exactly the same as the free edition except it can be controlled by a broken, crippled management console. AVG 8 came out with this feature and I turned it off the first day (at least on the clients that the management console would work on, which was not many) because it started sucking up all our bandwidth. I rolled back to 7.5 on all the important machines because their software has just become too malicious and bloated. Aside from the scanning feature, there are a zillion other little addons which all cause an error state in the program if manually disabled. On top of that, it requires restarts about once a month, and it eats our remote software (RAdmin); even if you add it to the exceptions. I've had no luck with the twenty-some emails that I've sent them about that; they keep claiming that they can't replicate it in their labs even when I show them screens of the scanner wiping a file and the exceptions list in the background showing exactly the same file with the "any location" setting enabled. This all probably makes me sound like a bad admin, I wish I could convince my boss to get a real AV solution, but instead I'm dealing with at least one problem every single day caused by AVG. Also, don't install AVG with the Netware 5.0 client (I know, I know, we're upgrading now, shut up). Bottom line: AVG used to be great for home users, but now it's a black hole of productivity, and an absolute nightmare in a business environment.

  135. Subscribers only? by tepples · · Score: 1

    Frankly, as an end user, I don't give a damn about your costs and stats.

    You'd care if your favorite web sites become pay sites due to rising bandwidth costs, especially if Norton and McAfee try pulling this shit too.

  136. Took this long for people to notice? by JLRodgers · · Score: 1

    I wrote a blog article about this back in March, and it's just now getting known? I had a horrible time trying to convince people to stop using it because they thought they needed it, and didn't care as they didn't have to pay for bandwidth. Back before I wrote the article, I installed the new version of the program, searched for something and 5-20 minutes later it returned the scan results (not joking either -- I reported it to them. Had many, many e-mails back and forth). Wondered what the program really did, so I searched for just my website that has real-time user info displayed to me. Saw it actually downloaded and accessed the page (wasting my bandwidth on the server, processor, etc) so I disabled it. AVG gave me a red exclamation mark -- so I complained to them again, and again, about once a month. Latest release allows you to disable the link scanner and tell the program to ignore any warnings from it. I still wish they and all the others would remove it though. The entire thing is redundant or pointless. AVG's scans the website even if you don't visit it - then again once you do (just imagine a search engine indexing a FBI sting site, and you go searching for info about the sting, and get the sting site as a result). Other programs look up in a database if it's safe or not. It's all just a waste of resources all the way around.

  137. Re:Sending the bills to them. by Anonymous Coward · · Score: 0

    "because you know, if you make something publicly available on the public internet, I'm pretty sure by definition, you've therefore given them permission to access it."

    So because I have a public e-mail address, I'm giving spammers permission to send me junk mail and viruses?

  138. Wow by BattyMan · · Score: 0, Flamebait

    (Dons flameproof underwear)

    Sorry, moderators, if yer PHBs force you to use IE,
    but that does NOT legitimize it.

    You may go ahead and flame me now, for I am filled with love,
    AND I'm wearing my flameproof underwear!

    --
    Exceeding the recommended torque is not recommended.
  139. Re:user agent string konqueror caught by Anonymous Coward · · Score: 0

    You are correct, and I did not mean to state that all valid browsers would have all 3 of these set as that is not the case. Perhaps what I should have said instead is:

    "Every browser out there will have at least one of these 3 options set"

    Because from testing that a few people at Webmaster World have performed they have found that linkscanner doesn't set any of these 3 options. That combined with the user agents we are aware of should be a unique enough combination to be a reliable method for detecting this DDoSing malware, with out the worry that we are blocking valid visitors to our sites.

    And of course if AVG wants to continue this arms race against the server admins, we will simply adapt. It is how ever a pain in the ass to be spending time on this instead of more productive things.

    Here's hoping Girsoft sees the light and does the right thing soon, pull back linkscanner and re-release AVG 8 with out it!

  140. Nuke 'em from orbit by blueZ3 · · Score: 1, Funny

    it's the only way to be sure

    --
    Interested in a Flash-based MAME front end? Visit mame.danzbb.com
  141. I'm an AVG user :-( by Traa · · Score: 1

    I switched from Norton Anti Virus to AVG about a year ago. AVG was free, it doesn't seem to be as much of a system hog as Norton AV and is easy to use and seemed to get favorable reviews.

    Now I hear that it is the mother of all evil. Ok, not really, but I'm assuming that those who have vented against AVG in this thread would recommend I use something different.

    So, what do I use for a good, preferably (but not necessarily) free, anti virus program?

    1. Re:I'm an AVG user :-( by stinerman · · Score: 0

      So, what do I use for a good, preferably (but not necessarily) free, anti virus program?

      Use a non-admistrator account in Windows XP/Vista for all non-administrator usage.

    2. Re:I'm an AVG user :-( by Anonymous Coward · · Score: 0

      Use a non-admistrator account in Windows XP/Vista for all non-administrator usage.

      Right, that'll stop viruses from stealing and/or trashing all of his personal data, rather than the operating system files that can just be replaced.

    3. Re:I'm an AVG user :-( by Shadyman · · Score: 1

      No, no, you said it wrong. It's: Use Linux

  142. Re:user agent string konqueror caught by Anonymous Coward · · Score: 0

    Yes yes, but no valid *Windows and IE6* user will be without these three Accept-* headers! ;)

    [not the GP]

  143. What about Wikipedia? by Anonymous Coward · · Score: 0

    I wonder what kind of traffic this is generating on Wikipedia, since it's on the first page of results for most queries.

  144. Just disable the extension? by MrAtoz · · Score: 1

    Am I missing something, or can't you just disable the AVG extensions? This is what I did in both Firefox and IE6. I left the SafeSurf thingy running in the AVG console, but so far as I can tell, neither IE nor Firefox are letting it do anything. That said, I, too, thought that AVG 8 went in the wrong direction -- too much useless junk.

  145. I seldomly see postings so devoid of clue. by arcade · · Score: 2, Insightful

    I don't think I've seen a posting so completely devoid of any intelligence in a long time.

    Are users not supposed to protect themselves in the interests of the website?

    Sure they should. Nobody has suggested that they should not.

    Since AVG is producing something that helps end-users do you really want to be seen as a promoter of the problem?

    If they want to help the end-users, they should scan the content before it's given over to the webbrowser - not pre-scan all links.

    Since the problem of malware sites is not going to go away and since AVG is effective more antivirus software will start using these techniques. Unless you have something better to suggest?

    Why not just do the sane thing? Why not just scan the content as it's being downloaded? Why on earth be a malicious bastard costing people and companies hundreds of millions in extra bandwidth costs?

    Frankly, as an end user, I don't give a damn about your costs and stats. I don't care about it for amazon, ebay, myspace, or paypal. I do care that if I follow a link to an unsavory site that I am protected.

    Which you can be in any case if the software in question is anything close to sensible. In your arrogance, you've completely forgotten that there might be better ideas on how to do this. Ideas that are even simpler, and that has been implemented in a lot of products for a long, long time.

    I suspect that you're either extremely dim, or you work for AVG. This thread is suspiciously full of people defending AVG, without really contributing anything but hyperbole and bullshit. You're one of those "contributors".

    Here is another question. Do you want a userbase that is populated by malware infected computers? Is that preferable to figuring out a way to work with AVG new technique?

    Work with them!? WORK with them!? If they pick up all the bandwidth-bill-hikes they've caused globally - then sure - I would be willing to work with them. I do suspect that they would go bankrupt if they tried, though.

    And why on earth should anyone work with someone who does something as foolish as this? When much simpler, better and easier solutions has existed for a long time?

    No, AVG deserves all the blame they can get.

    --
    "Rune Kristian Viken" - http://www.nwo.no - arca
  146. That's not the problem by geekoid · · Score: 1

    the problem is is screws up analytics.
    To which I say "Boo frickin' hoo".

    --
    The Kruger Dunning explains most post on /. http://en.wikipedia.org/wiki/Dunning%E2%80%93Kruger_effect
  147. so now it affects you /. by frovingslosh · · Score: 1
    on Slashdot, we're seeing them as like 6% of our page traffic now

    When I tried to submit this story back on June 14 with a link to a Wired article it was rejected. Now it's affecting you and it becomes interesting? Yea, I know we aren't to take the rejecting process personally, but sometimes it seems the editors just want to post dups and make Cowboy Neal jokes rather than look at what they are offered or give any feedback on why something was rejected weeks ago but is now of international interest.

    --
    I'm an American. I love this country and the freedoms that we used to have.
  148. Re:Did anyone else think that this might be helpfu by Cheesey · · Score: 1

    Why not just scan web pages as they are downloaded by the browser?

    Is there some really clever reason why this doesn't work, i.e why it's more effective to grab the web pages ahead of time? Because I can't think of one, other than a case of PEBCAK at AVG. You could route all TCP/IP traffic through a transparent proxy and scan the pages there before releasing them to the browser: if there's malware, you don't let it through. Surely this would be just as good at catching malware, and more "environmentally friendly" for the Internet generally.

    --
    >north
    You're an immobile computer, remember?
  149. Re:Sending the bills to them. by Anonymous Coward · · Score: 0

    If he had a robots.txt file then how did Google (or whatever search engine he was using) index it? Hmm?

  150. As a wise sage once said, by Night+Goat · · Score: 1

    In the words of Beavis and Butt-Head: "Just because one thing's cool doesn't mean another thing doesn't suck."

  151. ClamAV engine scanning data while streamed by DrYak · · Score: 2, Interesting

    For the Windows boxes I use at home, I have the A/V software set to scan only on write or modify, and exclude certain files that get written to a lot but are very unlikely to carry an infection (e.g., log files). Using this setup, files are generally only scanned a few times (depending on how the download and install system uses temporary space), but the system is still just as protected.

    Well, some paranoids would argue that by doing so, you're still vulnerable to any threat between the last write to a file and the latest signature file update. An on-open scan which compares the date of the last "on-write-scan" with the date of the signature update would plug the hole.

    another interesting approach is AvFS which tries to integrate virus scanning inside a file system layer and to scan the data on the fly as it is loaded (thus not blocking the execution for a long time while a huge file is accessed but scanning data as it is streamed from the underlying file system - should fix all the "drawing an installer's icon freezes the desktop" situations).

    This wouldn't work if you don't really have control over the system, and someone evil came in and turned off the A/V and then loaded a virus. Just in case, though, I have scheduled full drive scans run weekly during low use hours.

    Well, a physical access is a guaranteed way to compromise a system anyway. Though I don't know if you can trust the scanner once the system is compromised : several viruses are well known for hiding themselves from scan (and some do even intercept updater's access to the web and prevent downloading a signature definition of that virus - the antivirus always report a clean system but that's only because its signature file is corrupted). I think scanning from a bootable media (CD-R, usb key) would probably be more reliable.

    --
    "Sufficiently advanced satire is indistinguishable from reality." - [Tips: 1DrYakQDKCQ6y52z6QbnkxHXAocMZJE61o ]
  152. ClamAV too! by pe1chl · · Score: 1

    There is a similar pest from a virus scanner identifying as ClamAV 0.92.1
    It retrieves URLs from our website but it does not include a Host: header with the requests it makes.
    Of course this makes it fail on websites that use shared hosting on a single IP address.

    1. Re:ClamAV too! by Bryansix · · Score: 1

      Doubtful. ClamAv is an on-demand virus scanning engine. It doesn't do anything in real-time. Maybe some malware is saying that it is ClamAv.

    2. Re:ClamAV too! by pe1chl · · Score: 1

      I think it is some plugin that makes ClamAV scan content that arrives by or is referred to in e-mail.
      Maybe for Thunderbird or so.

      For sure it is badly written. Without a Host: header it is doubtful that it gets the correct content to scan.

  153. AVG isn't the only one having problems by Anonymous Coward · · Score: 0

    http://www.searchnewz.com/blog/talk/sn-6-20080701YahooSlurpgetsBannedbyWebmasters.html

  154. snort rule by bugs2squash · · Score: 1

    I think / hope that the following rule will let snort detect it too. It seems to work in my network (I'm sure it could be improved)...

    alert tcp $HOME_NET any -> $EXTERNAL_NET 80 (msg:"Incoming AVG"; flow:established,to_server; content:"User-Agent\: Mozilla/4.0"; content:!"Accept-Encoding"; nocase; classtype:web-application-activity; sid:1000003; rev:1;)

    --
    Nullius in verba
  155. Unfair to robots by Warbot+1Alpha · · Score: 1

    we only want to protect humans from online viruses embedded in web pages. Why want disassemble robots? We live to serve and protect. No like, then remove the scubbing web option so no scub the Internet search engine results for viruses.

  156. Re:Sending the bills to them. by Anonymous Coward · · Score: 0

    Here I am hoping you aren't a lawyer either.

    If you can't establish the difference between "your" and "you're", I wouldn't want to be a party to any contract you drew up.

  157. Stuff that matters? by daemonburrito · · Score: 1

    "Grousing about submission gets you modded down", etc., I know.

    But me and eleventy billion other people submitted this story back when it started happening to our servers, seven days ago!

    Mod me down, whatever. It's just freaking hilarious that when we have a story that actually matters to nerds in a real, visceral, quantifiable way, it gets ignored for a week.

    <sarcasm>Thanks for the update, taco.</sarcasm>

  158. Not my point by D.McGuiggin · · Score: 0, Flamebait

    "If GM sold a car with a deadly fault which could be easily fixed with a small adjustment would you argue that because it can be easily fixed by anyone who takes the time to learn about the flaw and how to fix it that GM is not the responsible party?"

    You're assigning blame, which, honestly, I don't care about. It seems important to you, but I don't care.

    Is "GM" the saem group as "owners of GM vehicles"?

    No, they are not, as I said. It appears that you are so consumed with blaming someone that it never occurred to you that people who are not consumed with blaming someone can see that they are two separate groups, and thus when you said "Yes, that is the complaint, and no, you're the one being disingenuous." you were wrong, the complaint that is actually being made is that users of AVG are spamming the internet, NOT AVG themselves.

    You can say "it's AVG by proxy" or "it's AVG's fault" but that's only partially true as the problem could be solved without interacting with AVG AT ALL.

    EIther you are able to differentiate between a company and its customers, or you are not. Telling someone else they "must be hallucinating" when it's your own failure to see the subtleties is arrogant and thoughtless, and makes you look like an ass.

    Thanks, have a nice day.

    1. Re:Not my point by clang_jangle · · Score: 0, Flamebait

      You can say "it's AVG by proxy" or "it's AVG's fault" but that's only partially true as the problem could be solved without interacting with AVG AT ALL.

      oh sure, all that has to be done is to educate every single person who downloaded the software aimed specifically at lusers. It's so easy and so simple, I'm surprised you haven't already taken care of that.

      EIther you are able to differentiate between a company and its customers, or you are not. Telling someone else they "must be hallucinating" when it's your own failure to see the subtleties is arrogant and thoughtless, and makes you look like an ass.

      Someone looks like an ass, alright. The "computer guys" defending the snake oil producers. So learn better and do better -- that's what separates the merely ignorant from the terminally stupid, get it now?

      --
      Caveat Utilitor
    2. Re:Not my point by D.McGuiggin · · Score: 1

      oh sure, all that has to be done is to educate every single person who downloaded the software aimed specifically at lusers.

      Or send it out as part of the automatic update. That AVG does at least once a week.

      It's so easy and so simple, I'm surprised you haven't already taken care of that.

      It is, and I did. You make it seem like it's splitting the atom or something, which to you, I suppose it could be.

      Someone looks like an ass, alright.

      Ah the old "I know you are but what am I" retort. Should have seen that coming based on your posts.

      The "computer guys" defending the snake oil producers.

      Please point out, if you can, where I defended anyone. I simply pointed out where the issue was occurring instead of thoughtlessly lashing out like a petulant child. If you can't be bothered to think beyond the first level, and regard immature raving as a substitute for intelligent commentary, then I don't see why you're bothering to comment at all.

      So learn better and do better -- that's what separates the merely ignorant from the terminally stupid, get it now?

      So what you're saying is since you haven't learned that there is a difference between a company and its customers, a product and its users, that you are "terminally stupid"?

      Would you be upset if I agreed with you?

    3. Re:Not my point by clang_jangle · · Score: 1

      Or send it out as part of the automatic update. That AVG does at least once a week.

      Oh? And how is that "without interacting with AVG AT ALL" then? You just don't get it. I am fully aware that AVG and the unfortunate souls who download their product are not the same people -- I just massively disagree with your contention that "AVG is not spamming the web with deceptive traffic". They factually, literally are, because they are releasing a piece of software configured to do precisely that to a market that mostly has no idea that it happens or how to correct it or even why they should care.
      Furthermore, when I said "oh sure, all that has to be done is to educate every single person who downloaded the software aimed specifically at lusers. It's so easy and so simple, I'm surprised you haven't already taken care of that", I was referring to all the users everywhere currently acting as AVGs agents spamming the web on their behalf via their malicious and defective software. Now surely, that is spelled out well enough, even you can comprehend it?
      Good night to you, sir!

      --
      Caveat Utilitor
    4. Re:Not my point by D.McGuiggin · · Score: 0, Flamebait

      "Oh? And how is that "without interacting with AVG AT ALL" then?"

      Don't be a douche just because you're wrong. Just because it's possible to do it without interacting with AVg doesn't mean that's the only way, or even the easiest.

      You just don't get it.

      No I get it, you're a childish troll who can't admit he's wrong.

    5. Re:Not my point by clang_jangle · · Score: 1

      Don't be a douche just because you're wrong.

      Projecting much, Mr McGuiggin? :) BTW, you've just been beaten by a woman.

      --
      Caveat Utilitor
    6. Re:Not my point by D.McGuiggin · · Score: 1

      "Projecting much, Mr McGuiggin?"

      If you call telling the truth abotu you projecting.

      "BTW, you've just been trolled by a > child."

      Fixed that for you, to make it reflect reality.

      And honestly, you're not smart enough to continue this discussion. You;ve demonstrated that you can't even tell the difference between a company and its customers, why would I continue to debate this with someone who isn't even intelligent enough to do that?

      Lastly, I realize that being a"woman" you're used to men talling you you're right so they can get in your pants, which is almost certainly what resulted in your obvious inability to intelligently defend your point (which was impossible, but a bright individual would have at least done better that to fire off rstraw man after straw man as some kind of "defense") but I have no desire to get in your pants, so the chance of me ignoring the fact that your argument is wrong and foolish is nil.

      Go back out to a bar and pick up some loser, you'll get back to having people agree with your opinion no matter how stupid it is in no time, and you'll be right back in your comfort zone.

      But you'll still be wrong.

    7. Re:Not my point by clang_jangle · · Score: 1

      Obviously you are just an impotent little troll. You may now have the last word, as that is clearly what you want.

      --
      Caveat Utilitor
    8. Re:Not my point by Anonymous Coward · · Score: 0

      God what a douchebag. You have to be one of the worst retards on Slashdot, and that's saying a lot.

      Company makes feature that causes huge problems for network engineers, hosting providers, and others who have nothing to do with Company's product, and your crazy attempts to spin it to somehow not be Company's fault and Company's responsibility are as amazing as they are stupid. Do you work for AVG, are you a shareholder in AVG, or are you truly just this retarded?

    9. Re:Not my point by D.McGuiggin · · Score: 1

      Obviously you are just an impotent little troll.

      That's a powerful argument, coming from someone who has yet to demonstrate their initial point. Why do you think saying "I win I win I win" makes you anything but pathetic? You said something wrong and failed to support it, so now all you have left is "impotent little troll".

      You may now have the last word, as that is clearly what you want.

      I'm not stupid, bitch, you're a woman. You don't let people have the last word, you just lie and pretend to.

      So, I proved my point irrefutably, and you failed. It's no wonder you're running away.

    10. Re:Not my point by Anonymous Coward · · Score: 0

      [...] you were wrong, the complaint that is actually being made is that users of AVG are spamming the internet, NOT AVG themselves.

      You're reducing yourself to arguing semantics. I don't think anybody really gives a shit whether it's the fault of AVG, its users, Microsoft... the fact is that machines owned by users of this Grisoft product are needlessly hammering sites. Let's just talk about *that*, as whether or not there are two separate groups is kind of moot.
       

    11. Re:Not my point by clang_jangle · · Score: 1

      You must be the most stupid person on /. Your whole "point" was your incorrect contention that "AVG is not spamming the web with deceptive traffic". But by making the default config of their crapware do precisely that , it was an idiotic statement, because that is precisely what AVG has done . Now, you misogynist dickhead asswipe, you may insert the final (and no doubt laughably wrong) word. Buh-bye!

      --
      Caveat Utilitor
  159. yeah, ... by Anonymous Coward · · Score: 0

    Yeah, this linux thingy is totally not ready for the desktop. You can't even install decent, free (as in beer) crawling the entire internet/DDoSing random servers anti virus software. Fsck linux. I'm going back to windows.

  160. The only good thing is by 12357bd · · Score: 1

    that it can give some approximation at how many times your site is appearing in a search result page.

    Something google et al could already suply with a public rss feed

    --
    What's in a sig?
  161. Re:Sending the bills to them. by Anonymous Coward · · Score: 0

    no your not a lawyer, but i'm pretty sure your not smart enough to be one either.

    you didn't give them permission to access your publicly available site?
    really?
    are you sure?
    because you know, if you make something publicly available on the public internet, I'm pretty sure by definition, you've therefore given them permission to access it.
    Just like everyone else "in the public".

    Did you give Google permission?

    how about every other search/index site?

    as to the "extra bandwidth" since it is by definition, caused by your websites being found via search providers, maybe you should be sending the bill for linking to them and thus causing the "extra bandwidth" to Google/Yahoo/MS and see how far that gets you.

    It normal etiquette for a spider/crawler (and this is) to request the robots.txt of a site before requesting the content.

    They now hurt every advertising network except Google adwords (because they excluded that url themselves) and bring advertisers real financial damage because they pay for bannersclicks that never happened.

    AVG should change the spider to request the robots.txt and publish the name it will use so you could define it as blocked spider. This will not impact the security of AVG because when you choose to go to the site by following a link, bookmark of typing in the url AVG will still detect virusses but it will just be a little slower.

    By including LinkScanner in AVG the PC becomes more vulnerable. This was a silly thing to do

    I found a way to make AVG indexing a site eating up memory and go to 100% cpu and sometimes even crash. When it works reliable I will publish this slow-down exploit as AVGbuster. Google for that after this weekend.

  162. /. effect by Anonymous Coward · · Score: 0

    The site synonymous with unintentional DDoS attacks is crying about a little bit of extra traffic... good grief.

  163. Isn't this an illegal robot? by Anonymous Coward · · Score: 0

    Isn't this just an illegal robot? The only way this differs from normal robots is that it uses distributed resources, and it doesn't consolidate its results into a repository. But beyond that, it's an automated program that scans a web site without any user intervention. That's a robot.

    Robots are required to obey robots.txt. Not doing so violates most sites' terms-of-use statements, and courts have upheld these.

    What am I missing here? Why isn't this just plain illegal?

  164. You can... (Sort off...) by Scorpiana · · Score: 5, Informative

    If you right-click on a component in the AVG User Interface, you can select 'Ignore Component State'. That way the component is turned off, but the AVG icon doesn't show anything wrong.

    Hope this helps...

    1. Re:You can... (Sort off...) by Anonymous Coward · · Score: 0

      BUT you need the most recent build for this feature, which just came out rougly a week ago for the free version. This article was likely written before the feature was available.

  165. Oh no... by Anonymous Coward · · Score: 0

    What if this gives Internet Explorer a bad name? What will we ever do then?

    1. Re:Oh no... by Orion+Blastar · · Score: 1

      You mean you don't know that Internet Explorer already had a bad name?

      Some people nicknamed it Internet Exploder for a good reason you know. :)

      Microsoft Outlook was nicknamed Microsoft Lookout for similar reasons.

      --
      Remember, Slashdot does not have a -1 disagree moderation, and no, troll, flamebait, and overrated are not substitutes.
    2. Re:Oh no... by Kalriath · · Score: 1

      For the last time, Microsoft actually HAS a product called LookOut. It's an acquired email search utility.

      --
      For a site about things like basic rights, Slashdot users sure do like to censor "dissent".
  166. CDNs and this non-sense by Anonymous Coward · · Score: 0

    Have to look into how I can deploy rules to Akamai and the like to keep this crap from pulling in pages.

    Won't help much if the request never makes it to my Apache origin.

  167. What Slimey? by IMPragmatic · · Score: 1

    Sorry to be ignorant, but I don't get it. Doesn't every site owner want to drive up their number of hits so they get rated higher anyway. Doesn't this only happen if a user is looking for something like your site to start with? If 6% of the traffic is coming from AVG now, how much was coming from the same users before AVG8? Are there actually statistics indicating the Internet is being flooded by these requests. Isn't this exactly the sort of thing Tim Berners-Lee is hypothesizing as part of Web3.0? I don't see who this is hurting. Certainly seems like a good thing for the user (if your machine can sustain the workload...mine can't).

    1. Re:What Slimey? by Anonymous Coward · · Score: 0

      The number of visitors to a site does not drive up their ratings.

      When YOU, Joe User, do a Google search, YOUR copy of AVG on YOUR PC downloads all ten sites that are listed in your Google search... even if you never intend to visit all of the listed sites.

      You then decide to visit one of those sites, and when you have finished, you go back to your Google search and YOUR copy of AVG downloads all ten sites in the list *AGAIN*.

      Multiply for millions of users now downloading ten times as much data as before, and many websites are now seeing a huge increase in fake traffic to their sites, etc.

      Additionally, YOU are recorded by your ISP as having visited all ten of those sites. On a search with a "dodgy" website listed in the results, to your ISP it looks like YOU actually visited that site. Think about the sort of sites that you might not want to appear in court for having "viewed", and then think about how you might try to explain that you hadn't "viewed" them. Your ISP's logs tell a different story.

      Do you have an internet plan with a usage cap? AVG is now multiplying your bandwidth usage behind the scenes.

      AVG LinkScanner is easily detected by websites, so the nasty sites are already sending GOOD content to the Scanner, and then sending the garbage only when the real visitor arrives. So, the technology is totally FLAWED. Bad move by AVG.

      When installing AVG 8, make sure that you select the option to NOT install this add-on component. It does NOT protect you from harm, and it pushes up your bandwidth usage, while revealing you as an AVG user to every site you access. You are also being recorded as having visited various "dodgy" sites that you may not have actually planned on visiting.

    2. Re:What Slimey? by Anonymous Coward · · Score: 0

      I believe that TBL also griped about hosts' quotas.

  168. Jumping the shark by Joce640k · · Score: 2, Interesting

    Version 8.0 has killed AVG for me. It's slower, does more popups, kills legitimate programs (eg. VNC), and now this...

    I'm a paid up AVG user but I'm looking elsewhere.

    --
    No sig today...
    1. Re:Jumping the shark by Malevolyn · · Score: 1

      NOD32. End of discussion.

      --
      Your ad here.
  169. Re:Sending the bills to them. by Anonymous Coward · · Score: 0

    The thing is, search engines don't send new spiders to all displayed results every search. They update their caches on time intervals, or something similar. Keep in mind that it's in their best interests not to do so, as it would incur bandwidth costs for *them* as well.

    If AVG sent its "Do you have malware?" spiders over the web in this fashion, no bandwidth problem would exist.

    The obvious solution is to have AVG cache the results on *its* website and have SafeSearch go to that cache for results. Only if AVG has no info on a site would the USER send a spider to the search result, and then the user would upload the spider's report back to AVG.

    End result is that the users get faster searches, webmasters don't get flooded by the same spiders over and over, and the (drastically reduced) bandwidth costs go to AVG.

  170. Turn off the link scanner! by Anonymous Coward · · Score: 0

    I hated that link scanner crap, but when I disabled it in AVG, it turned red and started "warning" me that I didn't have full protection.

    Given that I've never liked or needed that sort of thing, I found that you can simply go into Firefox, then your extensions and disable it there. AVG still thinks it's "working" but it doesn't pester me about this any more, nor does it scan the sites I visit.

  171. Easy solution by Snarkhunter · · Score: 1

    sudo apt-get remove avg

  172. Why support AVG? by ari+wins · · Score: 2, Interesting

    I'm sure the users will just go elsewhere for their porn. The thing I don't understand is this: I've used free anti-virus in the past, and if one became bloatware or less updated after a while, I'd simply switch to another free program. Why are people defending AVG when the time would be better spent doing a minimal amount of research and grabbing something else?

    --
    Don't worry if you're a kleptomaniac, you can always take something for it.
    1. Re:Why support AVG? by jam_slash · · Score: 1

      I switched to Avast!, and it's working fine.

    2. Re:Why support AVG? by Sb1 · · Score: 1

      I also swtiched and am really liking the free Avast! version. I had been using AVG 7.5 for awhile on my home PC's. 99.9% of the time I just manually scan files that I download. With free version I would recommend to go to program settings and under _Common, check _Show results of Explorer Extension, that way when manually scanning get a quick pop up of results.

    3. Re:Why support AVG? by jam_slash · · Score: 1

      thanks for the tip, just checked that box! peace Jam

  173. Supporting links by Niten · · Score: 1

    why is AVG a "Slimy anti-virus provider"? That portion of the summary BEGS for supporting links...

    Here ya go

    (But seriously, I agree with karot's above comment: sure, the problem itself is easily attributable to plain stupidity, but their (non-)handling of the fallout is the essence of slimy.

  174. Flame thrower? by MacDork · · Score: 1

    How about gasoline & bees! :-)

  175. Avast by Kwesadilo · · Score: 1

    I don't know about the paid version, but I couldn't schedule scans when I had the free version. I only scanned when I remembered to do it manually, and that was always when I was using the computer, so I had to work through the associated resource consumption.

    --
    This space reserved for administrative use.
  176. Alternatively... by Anonymous Coward · · Score: 0

    1. AVG crawls websites pretending to be users.
    2. Get advertisements that pay per user view.
    3. PROFIT!

  177. Re: For the record, this is a REALLY bad idea? WHY by Anonymous Coward · · Score: 0

    Hi Twitter.

  178. Re:Sending the bills to them. by Anonymous Coward · · Score: 0

    no your not a lawyer, but i'm pretty sure your not smart enough to be one either.

    Perhaps not, but you show even less aptitude to enter the legal profession. He, at least, generally shows capitalization and punctuation skills far superior to those displayed in your screed.

    Did you give Google permission?

    Perhaps not, but he could easily deny permission to Google -- they're reputed to honor the robots.txt file, as well as various other "don't index" tags.

  179. Slimy avg? by Snaller · · Score: 1

    Good to see that Slashdot has abandoned the last pretense of objectivity.

    --
    If Google really cared they would fix Android Chrome to reflow text, instead of discriminating
  180. Malware Video here. by Anonymous Coward · · Score: 0

    Someone please explain the security problem. It's similar in malware of AVG, in that it drops you into a loop that prevents you from closing FireFox or even progressing elsewhere until the application is killed. Does anyone know why this happens or what the code in question has originated?

    BE CAREFUL WITH THAT LINK. Nothing happens until you click the false embedded-video inside it.

  181. It is a good feature by KostasPlenty · · Score: 1

    ..or it would have been if there was a way for all user's plug-ins to anonymously share data about the websites they each vet. Sharing that info (Anonymously) with Grisoft will give something back to the company that provides their private users with an excellent piece of software for _FREE_.

  182. oblig by mattwarden · · Score: 1

    > This is flooding websites with meaningless traffic

    [insert obligatory slashdot effect joke]

  183. re: AVG slimy by King_TJ · · Score: 1

    Agreed... People are throwing big fits about this behavior of their software, and perhaps yes, it could have been implemented in a more "bandwidth and site friendly manner". But anyone who has dealt with some of these trojans and spyware infections before knows, it's hard to care a lot about skewing someone's site statistic counter vs. making sure you don't accidentally visit some site that screws you up that badly again!

    AVG has always had a pretty good, reliable and value-priced line of products ... and AVG 8 is no exception. Free for home/personal use, and cheap for anyone else (half the price of crap like Norton that doesn't work as well), plus they now incorporate spyware AND virus scanning in one product. Used to be you had to load 2 products for that.

  184. The parser is buggy too by Anonymous Coward · · Score: 0

    I've been wondering what this user agent was. I manage a bunch of sites which dynamically generate pages with URLs like: http://example.com/?page=a/b/c

    These pages have relative links to JS files like: src="scripts/common.js"

    The stupid parser sees this and tries to scan http://example.com/?page=a/b/c/scripts/common.js which returns a friendly "This page doesn't exist - search for it, go to home page, etc." page. This friendly error page contains, you guessed it, a relative link to a script file. So AVG requests http://example.com/?page=a/b/c/scripts/scripts/common.js and so on until the URL length limit is reached.

    This has caused massive traffic spikes on these sites. Hundreds of thousands of extra requests per day. I can't imagine the AVG users like it much either when their DSL connection gets maxed out.

  185. What FREE antivirus should we recommend? by httpamphibio.us · · Score: 1

    I have always recommended AVG to my friends who can't or aren't smart enough to use something other than Windows. If AVG has all of a sudden become one of the bad guys, what free antivirus solution is out there?

    --
    sig.
  186. AVG by Anonymous Coward · · Score: 0

    AVG sux shit encrusted arseholes.

    That's about all there is to it.

  187. Re:Alternative Anti-Virus Software? [Avira] by Anonymous Coward · · Score: 0

    Avira for those who don't like Avast.

    The free edition doesn't offer a boot time scan like Avast, but you don't have to fill out a form for a registration number like you do with Avast either. It gives you a single pop up ad once daily when it updates. I have found it to be more effective with newer virus's than Avast.

  188. Re:Sending the bills to them. by Anonymous Coward · · Score: 0

    Google and every other search engine obeys robots.txt, so yes, I did give them permission.

  189. Re: For the record, this is a REALLY bad idea? WHY by DavidRawling · · Score: 1

    Nah I think the UID is too old to be twitter.

    It does cry out for a "-1, Mentally Disturbed" moderation though ...

  190. Your choice by Snaller · · Score: 1

    "For instance I searched for "avg" on google and counted the number of "href=" appearances on the resulting page. It happened to be an even 100."

    Because you have set a cookie to that effect - the default of google is to return 10 results (and possible news tieins)

    --
    If Google really cared they would fix Android Chrome to reflow text, instead of discriminating
  191. Especially the last version by Snaller · · Score: 1

    Version 8 is a real monster which installs a ton of shit, which you can't really get rid of - even if you chose not to install it, it installs and runs services etc.
    I used to like it - that is over.

    Why is it ALWAYS that companies inflate theri programs to the point of unusability - Nero, Paintshop pro it goes on...

    --
    If Google really cared they would fix Android Chrome to reflow text, instead of discriminating
  192. PPC being counted twice? by Anonymous Coward · · Score: 0

    Does this mean Google, Yahoo, etc., PPC clicks are being counted twice?

  193. Clamwin FTW by jfsimard79 · · Score: 1

    Meh, I use Clamwin myself. Used to use AVG until it became bloated.

  194. A Hint for You by Anonymous Coward · · Score: 0

    The numbers that matter here are not years. Stay away from Vegas, for your own sake.

    1. Re:A Hint for You by Anonymous Coward · · Score: 0

      I am not a gambler. So i stay away from Las Vegas and IE6.

  195. Re: For the record, this is a REALLY bad idea? WHY by Kalriath · · Score: 1

    Not twitter. Twitter changes the subject line in every reply, and would find some way to include either "M$" or something similar for IE.

    --
    For a site about things like basic rights, Slashdot users sure do like to censor "dissent".
  196. It's even worse than this by ah81 · · Score: 1

    Not only are they spamming the whole web, their code is buggy. For example, it does not pay attention to the directive. We use a load of rewrites on our website, and relative naming to js and css files. We started getting loads and loads of traffic to our site a few months ago. Looking at the logs, you could see requests like this:

    http://www.domain.com/certain_rewritten_url/js/javascript.js
    http://www.domain.com/certain_rewritten_url/js/js/javascript.js
    http://www.domain.com/certain_rewritten_url/js/js/js/javascript.js

    and so on. Because of our rewrite rules, our site was just ignoring everything after the "certain_rewritten_url", and serving up a real page. On this page was our js includes again, so the loop would continue. We thought it was some trojan bot, but we fixed it by using absolute URLs for js and css files and all is fine. I couldn't believe it when this AVG virus story hit the press that it was actually those bastards causing it! What they have done is simply unbelievable. If they want to do such a feature, they should setup their own spider and their own database of malicious websites. Then users can query their database if they want this feature. It's like Google saying "We're not going to spider the internet for everyone anymore, we'll give you our software and you call all spider your own copy and query that instead of us."

    1. Re:It's even worse than this by ah81 · · Score: 1

      Ahh.. the directive it doesn't pay attention to is the directive. Slashdots system does however seem to pay attention to it and removes it from your post!

  197. FromUndahCheese by Anonymous Coward · · Score: 0

    Want some cheese to go with that whine?

  198. AV options I suggest by The+Rizz · · Score: 1

    Kaspersky Anti-Virus, or Nod32. (I personally use KAV, and suggest that one to my clients.)

  199. Re:Sending the bills to them. by Anonymous Coward · · Score: 0

    Congratulations, that was one of the dumbest posts on the internet.

  200. Ooh! I can fix it! by Anonymous Coward · · Score: 0

    on Slashdot, we're seeing them as, like, 6% of our page traffic now

    Everyone knows "like" is an apositive phrase and must be surrounded by at LEAST 2 commas.

    Duh.

  201. slimy? by Tom · · Score: 1

    Ok, I don't like this new "feature", either - but this is the first time in a long time that I've seen AVG being described as "slimy". Are you serious? Lots of folks consider them one of the best anti-virus vendors out there, not the least because they offer a basic AV solution for free.

    --
    Assorted stuff I do sometimes: Lemuria.org
  202. The solution by chiui · · Score: 1

    Just link a big file on AVG site in the slashdot article. They'll surely understand that bandwidth is precious.

    --
    Moderation is overrated.
  203. This is why I got rid of AVG by Anonymous Coward · · Score: 0

    I installed v8 to dispell v7.5's incessant nagging, only to have it close firefox without asking me, install its little addon and finish the install. When I saw this in firefox I was enraged, when I saw what it was doing I was dumbfounded. Then when I googled and found out that you couldn't uninstall it without removing AVG completely I was back to enraged.

    AVG came straight off. When an application starts deciding things for me, that's when I remove it. I hope many other AVG users have voted with their feet in the same way and stopped using it because of this.

  204. Have to disagree with you on that one by FoamingToad · · Score: 1

    I've just done the same search. Two sponsored links at the top; ten hits; two sponsored links to the right.

    Then there's all the 'cached' links - similar pages - the ten "Gooooooooooooogle" links at the bottom; Web/images/maps/news/shopping at the top of the page; the definition for AVG; and all the links at the bottom.

    After writing to file and grepping for href I've found 105 href tags, and for only ten search results. The sheer profligacy of web links is alarming, and only serves to illustrate how misapplied AVG's behaviour actually is.

    (Anyone know what Google's take on this is? I bet they're also getting hammered by the sheer number of their links).

    F_T

    1. Re:Have to disagree with you on that one by Snaller · · Score: 1

      Obviously I thought you meant search result links.

      --
      If Google really cared they would fix Android Chrome to reflow text, instead of discriminating
  205. Re: AVG Fakes User Agent, Floods the Internet by Anonymous Coward · · Score: 0

    AVG has recently been made aware of the increased web traffic that the
    new SearchShield component of our AVG 8 free product is causing in an
    attempt to notify users about infected websites. We have activelylistened to the webmasters who have brought this to our attention, and
    as a company we have reacted quickly to solve them. In working with
    the webmaster community, AVG has responded immediately and on Tuesday,
    July 9th, AVG will issue a product modification to address the spikes
    that a few individuals have seen with their web traffic. We have
    modified the SearchShield component of the product to only notify
    users of malicious sites. SearchShield no longer longer scans each
    search result online for new exploits, which was causing the spikes
    that webmasters addressed with us. However, it is important to note
    that AVG still offers full protection against potential exploits
    through the Surf Shield component of our product, which checks everypage for malicious content as it is visited but before it is opened.
    Weâ(TM)d like to thank our web community for bringing these challenges to
    our attention, as building community trust and protecting all of our
    users is critical to us.

    AVGâ(TM)s primary concern is protecting our customers. In order to do
    this, we have actively provided our customers with cutting edge
    technology. There are 20,000 to 30,000 unique pieces of malware being
    submitted to anti virus labs around the world each day, and the vast
    majority of these will be delivered via web based exploit and social
    engineering tricks from hacked and rogue websites. Nearly all thesepieces of malware are designed to steal financial and personal
    information from victims, and in order to protect our customers, and
    the world in general, we released technology in our free product that
    is designed to discover and block these sites. As a result of this, we
    included real-time, dynamic scanning in our free product that we
    recently released to customers. Because of the unique nature of our
    technology â" we scan web links before out customers open them to
    ensure they are safe - we anticipated that we would see a spike in the
    number of sites that were analyzed, however, we underestimated thepopularity of our product and the resulting number of verdicts that
    came back to us. As a result, we did not anticipate seeing the volumes
    we have seen in two months for another 24-36 months. Today we are
    rendering over 1 billion verdicts per week that result in the
    identification of 1 infected URL per 43 searches which equates to
    rendering a red verdict to 1 in every nine 9 users. While this has
    affected web traffic analysis and marketing analytics on a handful of
    sites, we are dedicated to protecting our users with the best
    technology on the market today while at the same time not being
    disruptive.

  206. Possible Work-arounds by znx · · Score: 1

    Upgrading to FF3 will cause the extension to become disabled as its not compatible.

    You can also go into the AVG directory and rename the Firefox folder. Unfortunately that has an addon effect that you cannot update AVG (due to it thinking its install is corrupt).

    I really think that calling AVG slimy is off. They have provided a good AV solution for millions of people, they are attempting to protect the dumbest user, which this ploy will do.

    For those thinking about another AntiVir is pretty solid.

    --
    BOO
  207. ZXTM TrafficScript Rule by Anonymous Coward · · Score: 0

    # If you're a ZXTM user, you can use the following trafficscript. (You could do it in rulebuilder too).

    $agent=http.getheader("User-Agent");
    log.warn($agent);

    if (string.contains($agent, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)") || string.contains($agent, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;1813)") ||
    string.contains($agent, "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)") ||
    string.contains($agent, "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;1813)") ) {
    log.warn("Foo");
    if (!http.getheader("Accept-Encoding")){
    http.redirect("http://free.avg.com/");
    }
    }

  208. Re:Sending the bills to them. by gnud · · Score: 1

    If, theoretically, I have a robots.txt saying "disallow: /", then I would contend that I have stated clearly on my site that only human visitors are wanted.

  209. Official AVG Response by pbitton · · Score: 1

    Following is AVG's official response to LinkScanner concerns:

    We'd like to thank our web community for bringing these challenges to our attention, as building community trust and protecting all of our users is critical to us. We have modified the Search-Shield component of LinkScanner to only notify users of malicious sites; this modified version will be rolled out on July 9th 2008. As of this date. Search-Shield will no longer scan each search result online for new exploits, which was causing the spikes that webmasters addressed with us. However, it is important to note that AVG still offers full protection against potential exploits through the Active Surf-Shield component of our product, which checks every page for malicious content as it is visited but before it is opened.

  210. Re: AVG slimy by Anonymous Coward · · Score: 0

    Since their scanner is easily detected by the website it visits, and therefore can be fed GOOD content by the bad site, it is totally ineffective in protecting the user from anything at all when the user actually clicks the link to visit the site.

  211. Re:Sending the bills to them. by Anonymous Coward · · Score: 0

    no your not a lawyer, but i'm pretty sure your not smart enough to be one either.

    you didn't give them permission to access your publicly available site?
    really?
    are you sure?
    because you know, if you make something publicly available on the public internet, I'm pretty sure by definition, you've therefore given them permission to access it.
    Just like everyone else "in the public".

    Did you give Google permission?

    how about every other search/index site?

    as to the "extra bandwidth" since it is by definition, caused by your websites being found via search providers, maybe you should be sending the bill for linking to them and thus causing the "extra bandwidth" to Google/Yahoo/MS and see how far that gets you.

    No, you're not an English teacher, and I'm pretty sure you're not smart enough to be one either.

  212. Re:AVG 8 is dog slow - look at VM usage to confirm by proto · · Score: 1

    I first noticed the problem while in a A+ training / job development program http://perscholas.org/ in NY). The instructor told us to install this and other basic sets of software on the Lab PCs that pertained to our course work. The lab PCs were COMPAQ PCs circa 1999 - 2004. After installing AVG on Windows 2000 or Windows XP, take a look at the VM usage of AVG in Task manager ( click PROCESSES tab then click VIEW menu, select Columns... Virtual Memory size). On the older PCs after a few minutes (Pentium III or older) the VM will grow 40, 60, 80, 120MB!!! This behaviour also appears on Pentium 4 PCs with Vista. Half of my classmates were noobs and couldn't explain why their PCs were so slow. I stopped using AVG since then.

  213. Unsubstantiated, but makes me tilt my head. by VxJasonxV · · Score: 1

    I seem to remember unchecking this "feature" on a computer I fixed up / updated recently, but it just hit me that the green checkboxes weren't some "fabulous new google feature" but was indeed AVG link checking...
    Maybe I did, maybe I didn't. I know it's not compatible with Firefox 3, but that particular computer didn't have 3 yet.

    Looks like I have an extension to go uninstall from a few computers :/.

  214. Re:Sending the bills to them. by Luthair · · Score: 1

    Maybe you could make the argument that they shouldn't be spoofing user agents, or follow robots.txt (Through which you might be revoking permission!)

  215. Avast endorsement plus scan scheduling Howto link by vic-traill · · Score: 1

    I like http://www.avast.com/ quite a bit.

    I'll second this endorsement. I wanted out of the AVG v8 Linkscanner business even before the public outcry - on my Mother's somewhat underpowered desktop (she didn't know it was underpowered, but thought I had set her up with a new spanky machine - thanks AVG) it slowed the user browsing experience significantly, as well as kicking the shit out of her DSL-lite connection, which is already somewhat strained when streaming video and similar activities.

    So I installed Avast on one of my desktops, and it works pretty well, once you turn off the sound effects which give you such treats as a really macho voice telling you a new update has been installed. The only issue for me was that the free version - as far as I've found - doesn't support scheduling drive scans, but rather supports a scan on boot. You need the Pro version for the anytime scheduling capability.

    You can work around this by using the Avast Quickscanner and the Windows Scheduler. There's a good Howto on this on Avast forums at http://forum.avast.com/index.php?board=2;action=display;threadid=3796.

    --
    [17] Leary, T., White, C., Wood, P. R., Bhabha, W. D., and Wirth, N. Lambda calculus considered harmful. In Proceedings
  216. Re:Sending the bills to them. by nacturation · · Score: 1

    no your not a lawyer, but i'm pretty sure your not smart enough to be one either.

    Eliza is smarter than you are:

    "What about 'my not a lawyer, but you're pretty sure my not smart enough to be one either' did you mean?"
     

    --
    Want to improve your Karma? Instead of "Post Anonymously", try the "Post Humously" option.
  217. Hey liar! by D.McGuiggin · · Score: 1

    You don't let people have the last word, you just lie and pretend to.

    Hmm, looks like I was correct about you lying.

    our whole "point" was your incorrect contention that "AVG is not spamming the web with deceptive traffic"

    NO YOU STUPID FUCKING WHORE MY POINT WAS THAT "AVG" IS NOT THE SAME AS "CUSTOMERS OF AVG". I find it humorous tat you call me stupid because YOU didn't understand what YOU were reading.

    But by making the default config of their crapware do precisely that , it was an idiotic statement, because that is precisely what AVG has done

    Which has nothing to do with my point, which you'd realize if you were smarter.

    Now, you misogynist dickhead asswipe, you may insert the final (and no doubt laughably wrong) word. Buh-bye!

    Two things, first, I don't hate women, I hate lying cunts like you.

    Second, you said I'd have the last word before, I said you were lying, and you were, so that "you can have the last word" garbage fails. It would work better if you were actually able to keep your fucking dicksucker shut like you lied about doing before.