Stories
Slash Boxes
Comments

SoylentNews is people

posted by janrinok on Thursday September 17 2015, @08:42AM   Printer-friendly
from the no-way,-jose dept.

... or so some web pages are now saying according to an article published by El Reg:

The Jeff Bezos-owned Washington Post has become the largest newspaper to refuse to serve readers who filter out advertisments.

The Post described it as "a short test" to gauge what users who use blocked blockers will do next. "Often, we run tests like this not in reaction to a problem, but to learn," said the paper in a statement.

Last week, Google also began to nuke the filters used to block preroll ads on its YouTube service. For extra punishment, YouTube viewers using AdBlock Plus had to sit through the full ad, by disabling the 'Skip Ad' button.

Around one in seven surfers use ad-blocking software, although the proportion rises when the demographic mix skews towards middle class and wealthy, and young and male, according to the latest annual PageFair report... into ad filters.

There is a reason why people use ad blockers. Sometimes it's for purposes of sanity, to avoid the very annoying auto-playing ads that more and more web sites now host. Others block them for security purposes, limiting one's exposure to the nastiness that can sometimes come from unscrupulous advertisers. Still others block them to reduce the draw on their precious bandwidth, especially those who get throttled if they use their monthly limit. Perhaps the Washington Post should be more careful with who they sell advertising to and more strictly limit the format of the adverts their sponsors pay them to publish instead of punishing those who block all of them.


Original Submission

 
This discussion has been archived. No new comments can be posted.
Display Options Threshold/Breakthrough Mark All as Read Mark All as Unread
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
  • (Score: 5, Informative) by Rosco P. Coltrane on Thursday September 17 2015, @08:52AM

    by Rosco P. Coltrane (4757) on Thursday September 17 2015, @08:52AM (#237356)

    Anti-Adblock Killer [userscripts-mirror.org] Greasmonkey script.

    Starting Score:    1  point
    Moderation   +4  
       Interesting=1, Informative=3, Total=4
    Extra 'Informative' Modifier   0  
    Karma-Bonus Modifier   +1  

    Total Score:   5  
  • (Score: 2, Insightful) by Anonymous Coward on Thursday September 17 2015, @11:18AM

    by Anonymous Coward on Thursday September 17 2015, @11:18AM (#237389)

    This is not a solution because this means you still download the ads, the advertising networks still see that you have visited the page and how long you stayed there.
    The only valid move is to 'vote with your wallet' and not visit these sites again.

    Let them burn like Rome! Now where's my fiddle?

    • (Score: 3, Insightful) by The Mighty Buzzard on Thursday September 17 2015, @01:09PM

      by The Mighty Buzzard (18) Subscriber Badge <themightybuzzard@proton.me> on Thursday September 17 2015, @01:09PM (#237422) Homepage Journal

      Sorry, I borrowed it for the debate last night. Right there with you on the "fuck em and feed em fishheads" plan though. If your shit don't work without ads, I'll find what I want elsewhere.

      --
      My rights don't end where your fear begins.
    • (Score: 2) by Nerdfest on Thursday September 17 2015, @02:24PM

      by Nerdfest (80) on Thursday September 17 2015, @02:24PM (#237466)

      Downloading the ads still exposes you to malware even if they're not displayed, although to a lesser degree.

      • (Score: 2) by frojack on Thursday September 17 2015, @03:52PM

        by frojack (1554) on Thursday September 17 2015, @03:52PM (#237511) Journal

        Really??

        How does that work?

        Simply downloading a file (any file) and discarding the bytes as they arrive presents no exposure to malware.

        --
        No, you are mistaken. I've always had this sig.
        • (Score: 2) by etherscythe on Thursday September 17 2015, @05:30PM

          by etherscythe (937) on Thursday September 17 2015, @05:30PM (#237577) Journal

          Depends. If the code is parsed at any point along the way, you're still vulnerable to zero-day unpatched holes, even if the data is dumped before being displayed or, worse yet, as a secondary pass after being initially rendered. Not that it actually works like that now, but the arms race may end up going in that direction at certain levels of sophistication.

          I'd like to assume that the ad info will never get loaded, but given the state of software in general, I'm not willing to make any bets on it.

          --
          "Fake News: anything reported outside of my own personally chosen echo chamber"
          • (Score: 2) by frojack on Thursday September 17 2015, @06:09PM

            by frojack (1554) on Thursday September 17 2015, @06:09PM (#237594) Journal

            If you are fetching something simply to satisfy a server-side fetch request, why would the "code" be be parsed at any point along the way?
            And assuming it was parsed at some point "along the way", but not in your machines, since you are going to /dev/nul all bytes that come across that socket, what would it matter?

            Other than saturating your connection, (DOS), bytes received on a socket can only hurt you if you do something with them. If you refuse to even store them, you are safe. You simply read the socket in conveniently sized small buffers, tossing everything that arrives until socket is unreadable (empty), and then you close it. Your application (Ad-blocker, or what ever) simply has to know that the fetch was for an ad, and it should never do anything with the data.

            --
            No, you are mistaken. I've always had this sig.
            • (Score: 0) by Anonymous Coward on Thursday September 17 2015, @08:36PM

              by Anonymous Coward on Thursday September 17 2015, @08:36PM (#237665)

              Please illuminate me and explain how I can configure $FAVORITE_BROWSER so that 'good' bytes run through $FAVORITE_BROWSER's rendering pipeline but ad-bytes and them alone go to /dev/null.
              I think you are confusing "it could be done by rewriting a shit-ton of code and compiling it into your own custom version of $FAVORITE_OSS_BROWSER" with "it can be done with a simple configuration".

              I'll be over here, waiting for your detailed explanation...

              • (Score: 3, Informative) by frojack on Thursday September 17 2015, @08:57PM

                by frojack (1554) on Thursday September 17 2015, @08:57PM (#237673) Journal

                Please illuminate me and explain how I can configure $FAVORITE_BROWSER so that 'good' bytes run through $FAVORITE_BROWSER's rendering pipeline but ad-bytes and them alone go to /dev/null.

                Its easy.

                Adblock Plus sees this html to fetch the ad, and strips it out as usual. (You do know that is how ABP works, don't you? Because If not, this discussion is pointless).

                Then, for those ads that ABP has learned or has been configured to know must be fetched, it creates a http request, on its own socket, cloning the browser's Id string. But since it knows this is just a necessary fetch, it does nothing but dump the returned data.

                As advertisers get smarter, they will return the url of the actual content appended to the end of the ad. ABP takes the next step in the arms race and finds that URL and pastes it into the page. (This would impose some risk as ABP would actually have to process the ad's data stream).

                --
                No, you are mistaken. I've always had this sig.
                • (Score: 2) by etherscythe on Friday September 18 2015, @01:23PM

                  by etherscythe (937) on Friday September 18 2015, @01:23PM (#237931) Journal

                  See, that last part is exactly what I am talking about. That blocker code has to be bulletproof, otherwise we're back to square one, with an even bigger attack surface.

                  --
                  "Fake News: anything reported outside of my own personally chosen echo chamber"
                • (Score: 0) by Anonymous Coward on Sunday September 20 2015, @11:42AM

                  by Anonymous Coward on Sunday September 20 2015, @11:42AM (#238791)

                  HTML to fetch ads? We aren't still living in the 90s.

                  Unfortunately most ad networks use Javascript. If you want to see how prevalent it is, install NoScript and turn off your ad blocker, unless you then explicitly allow the ad network's code to run you'll still not see 99% of ads. To spoof the ad views your ad blocker or most likely your browser on behalf of the ad blocker will need to run the Javascript to get the output that tell it what ads should be viewed.

              • (Score: 2) by hash14 on Friday September 18 2015, @03:05AM

                by hash14 (1102) on Friday September 18 2015, @03:05AM (#237795)

                Use the evil bit [wikipedia.org].

              • (Score: 0) by Anonymous Coward on Monday September 21 2015, @03:29PM

                by Anonymous Coward on Monday September 21 2015, @03:29PM (#239379)

                I'm not sure whether the point has been that this is doable by joe average or by someone knowledgeable with reasonable effort in free time.

                Anyway, for the latter case, there's this magical little device that almost every browser on earth supports which is called a proxy. Writing one of those from scratch is about a million times smaller effort than writing a whole browser. This is where I would start. (In fact, I have done it before..)

        • (Score: 1) by Pino P on Friday September 18 2015, @04:41AM

          by Pino P (4721) on Friday September 18 2015, @04:41AM (#237818) Journal

          Simply downloading a file (any file) and discarding the bytes as they arrive presents no exposure to malware.

          True.

          However, it still exposes your account with your ISP to a risk of overage. And if the file fails to report to the server that it has executed, the server has the right not to serve more than the first paragraph of the article.

    • (Score: 2) by mcgrew on Thursday September 17 2015, @05:00PM

      by mcgrew (701) <publish@mcgrewbooks.com> on Thursday September 17 2015, @05:00PM (#237556) Homepage Journal

      Indeed, if the Post won't serve the news there are thousands of other papers out there with the same news.

      But advertisers are either morons, or only market to morons. Like that car ad where the woman buys an old guitar, finds out it's BB King's and has him sign it. How in the hell is that supposed to sell a damned car??

      --
      mcgrewbooks.com mcgrew.info nooze.org
      • (Score: 0) by Anonymous Coward on Thursday September 17 2015, @08:39PM

        by Anonymous Coward on Thursday September 17 2015, @08:39PM (#237667)

        But advertisers are either morons and only market to morons

        There... fixed that for you... Now back to watching some YouTube vide... god damnit, what's with these adszzzz.... ooohhh shiny...