Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (Cyborg)
  • No Skin
Collapse
Brand Logo

CIRCLE WITH A DOT

  1. Home
  2. Uncategorized
  3. Google Search rests on a social contract: their bots can crawl our sites, they can index our sites, and they can show excerpts of our sites because

Google Search rests on a social contract: their bots can crawl our sites, they can index our sites, and they can show excerpts of our sites because

Scheduled Pinned Locked Moved Uncategorized
127 Posts 82 Posters 0 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • mathaetaes@infosec.exchangeM mathaetaes@infosec.exchange

    @inthehands I know of at least one professional artist who has deliberately poisoned their images, in an attempt to deter AI scraping (mostly because the scrapers blast her small site and effectively DoS it). If they follow robots.txt, they're not affected... but they were already ignoring robots.txt

    I just read an IARPA paper that said poisoning as little as .1% of training data can disrupt a model. If content creators choose to deliberately poison content that they ask not to be scraped, it might be a nice way to deter bad behavior.

    The tools I know of work on imagery, but with effort people may come up with stuff that works on data as well. E.g., burying base64-encoded malicious prompts in your text, posting tables as poisoned images rather than text, etc.

    Seems like we should start organizing and taking firm action now, before AI companies start buying politicians and making such defenses illegal.

    R This user is from outside of this forum
    R This user is from outside of this forum
    raulmatias@mstdn.social
    wrote last edited by
    #115

    @mathaetaes @inthehands > posting tables as poisoned images rather than text

    Please **never** do that. Accessibility is more important than poisoning LLMs.

    mathaetaes@infosec.exchangeM 1 Reply Last reply
    0
    • hyc@mastodon.socialH hyc@mastodon.social

      @macronaut @khm @inthehands the update would change that 403 to a 402. And add "error_page 402 /402.html;" to the server{} config, and create the /402.html file in the docroot containing whatever desired message.

      hyc@mastodon.socialH This user is from outside of this forum
      hyc@mastodon.socialH This user is from outside of this forum
      hyc@mastodon.social
      wrote last edited by
      #116

      @macronaut @khm @inthehands maybe an appropriate message would be "send 1XMR to be unblocked"...

      1 Reply Last reply
      0
      • inthehands@hachyderm.ioI inthehands@hachyderm.io

        Defeatism is form of surrender. Cynicism is surrender. Despair is surrender. Nihilism is surrender.

        Our job is to •care• and to •keep caring• and to •keep doing and keep building• and to •endure• longer than them.

        mlanger@mastodon.worldM This user is from outside of this forum
        mlanger@mastodon.worldM This user is from outside of this forum
        mlanger@mastodon.world
        wrote last edited by
        #117

        @inthehands @philbaker1 I don't think cynicism is surrender. Cynicism is being aware of what could happen and preparing yourself mentally for it. Just because I'm cynical about some things doesn't mean I've given into them. It means I'm aware of them and I know how bad they can get.

        1 Reply Last reply
        0
        • R raulmatias@mstdn.social

          @mathaetaes @inthehands > posting tables as poisoned images rather than text

          Please **never** do that. Accessibility is more important than poisoning LLMs.

          mathaetaes@infosec.exchangeM This user is from outside of this forum
          mathaetaes@infosec.exchangeM This user is from outside of this forum
          mathaetaes@infosec.exchange
          wrote last edited by
          #118

          @raulmatias @inthehands Ooh, good point - I had completely forgotten about screen readers in that context.

          1 Reply Last reply
          0
          • inthehands@hachyderm.ioI inthehands@hachyderm.io

            @joe @ShadSterling
            I share Joe’s concern that poison-in-box systems will become detectable, but they seem like a good place to start.

            I’m even more a fan of bespoke one-off poison generators for those of us who have the means to write them. Both/and.

            R This user is from outside of this forum
            R This user is from outside of this forum
            raulmatias@mstdn.social
            wrote last edited by
            #119

            @inthehands @joe @ShadSterling Detecting them would be way harder if they served different HTML and layout structures each time, maybe with some of them copied from popular CMSes/forum software/wiki software/any software for pre-generated pages.

            @algernon perhaps you'd want to implement this.

            algernon@come-from.mad-scientist.clubA 1 Reply Last reply
            0
            • R raulmatias@mstdn.social

              @inthehands @joe @ShadSterling Detecting them would be way harder if they served different HTML and layout structures each time, maybe with some of them copied from popular CMSes/forum software/wiki software/any software for pre-generated pages.

              @algernon perhaps you'd want to implement this.

              algernon@come-from.mad-scientist.clubA This user is from outside of this forum
              algernon@come-from.mad-scientist.clubA This user is from outside of this forum
              algernon@come-from.mad-scientist.club
              wrote last edited by
              #120

              @raulmatias @inthehands @joe @ShadSterling I have nothing to implement, iocaine can already do that. The template can be changed, and the random seed doesn't need to be stable, so it can serve different junk for every request.

              But! I don't think that (= serving different garbage for every request) is a good idea. That makes it almost trivial to detect that iocaine is at work: send two requests, compare. Wildly different? That's gonna be garbage => engage countermeasures.

              Serving the same garbage makes automatic detection a tiny bit harder.

              But, in case of Google, that still doesn't matter, as long as they identify themselves.

              Personally, I send an x-robots-tag http header that opts it out of all kinds of search and indexing, from crawlers that respect it (Google currently does). I still serve googlebot garbage, but that bot visits me like a handful of times a day.

              R 1 Reply Last reply
              0
              • algernon@come-from.mad-scientist.clubA algernon@come-from.mad-scientist.club

                @raulmatias @inthehands @joe @ShadSterling I have nothing to implement, iocaine can already do that. The template can be changed, and the random seed doesn't need to be stable, so it can serve different junk for every request.

                But! I don't think that (= serving different garbage for every request) is a good idea. That makes it almost trivial to detect that iocaine is at work: send two requests, compare. Wildly different? That's gonna be garbage => engage countermeasures.

                Serving the same garbage makes automatic detection a tiny bit harder.

                But, in case of Google, that still doesn't matter, as long as they identify themselves.

                Personally, I send an x-robots-tag http header that opts it out of all kinds of search and indexing, from crawlers that respect it (Google currently does). I still serve googlebot garbage, but that bot visits me like a handful of times a day.

                R This user is from outside of this forum
                R This user is from outside of this forum
                raulmatias@mstdn.social
                wrote last edited by
                #121

                @algernon @inthehands @joe @ShadSterling Are there any pre-defined templates available except the standard one?

                algernon@come-from.mad-scientist.clubA 1 Reply Last reply
                0
                • jedbrown@hachyderm.ioJ jedbrown@hachyderm.io

                  @inthehands It's important to note that search indexing is considered "transformative" and thus fair use *because* it does not supplant the market for the original content. That goes out the window when the product functions to capture traffic that would otherwise go to the cites. They are acting with impunity, but existing copyright law addresses this if courts find it to be not transformative.

                  haihappen@social.anoxinon.deH This user is from outside of this forum
                  haihappen@social.anoxinon.deH This user is from outside of this forum
                  haihappen@social.anoxinon.de
                  wrote last edited by
                  #122

                  @jedbrown @inthehands I can only go by German/EU law, hand here it is not transformative (becaise duh!). The reproduction is the key thing here: if you reproduce another's work outside of private use, you are violating Urheberrecht (creator's rights): priviledges enshrined in law to the creator of a work (some of which can be licensed out). One of these is distributing reproductions.
                  E.g. any time you upload an image to SM, their ToS say you grant them license to reproduce (amonh others).

                  1 Reply Last reply
                  0
                  • R raulmatias@mstdn.social

                    @algernon @inthehands @joe @ShadSterling Are there any pre-defined templates available except the standard one?

                    algernon@come-from.mad-scientist.clubA This user is from outside of this forum
                    algernon@come-from.mad-scientist.clubA This user is from outside of this forum
                    algernon@come-from.mad-scientist.club
                    wrote last edited by
                    #123

                    @raulmatias @inthehands @joe @ShadSterling There's the built-in one, and another - slightly more complex - in Nam-Shub of Enki.

                    There will be more templates coming in the next few months (and new scripts!).

                    But a lot of things are doable today, if someone takes the time and creates a suitable template.

                    1 Reply Last reply
                    0
                    • inthehands@hachyderm.ioI inthehands@hachyderm.io

                      Going with meta noindex for now. My thinking is that this actively tells Google to yank already-crawled content from their index, whereas they might take a robots.txt entry to mean “do not update, but keep showing last fetched.”

                      blogdiva@mastodon.socialB This user is from outside of this forum
                      blogdiva@mastodon.socialB This user is from outside of this forum
                      blogdiva@mastodon.social
                      wrote last edited by
                      #124

                      instead of no-index ―because this would affect all search engines, not just Google― isn’t there a way to target Google specifically in robots.txt?

                      there should be a list of all the major techbros crawlers ―Google, Microslop, Facebook, Amazon, X, etc.

                      @inthehands

                      inthehands@hachyderm.ioI 1 Reply Last reply
                      0
                      • blogdiva@mastodon.socialB blogdiva@mastodon.social

                        instead of no-index ―because this would affect all search engines, not just Google― isn’t there a way to target Google specifically in robots.txt?

                        there should be a list of all the major techbros crawlers ―Google, Microslop, Facebook, Amazon, X, etc.

                        @inthehands

                        inthehands@hachyderm.ioI This user is from outside of this forum
                        inthehands@hachyderm.ioI This user is from outside of this forum
                        inthehands@hachyderm.io
                        wrote last edited by
                        #125

                        @blogdiva
                        I believe that my various name=“___” values specifically target Google.

                        Based on what I’ve read, blocking them in robots.txt will only stop them from •updating• their scrape, whereas noindex means “do not use.” (I have long blocked their LLM-specific bots in robots.txt.)

                        blogdiva@mastodon.socialB 1 Reply Last reply
                        0
                        • inthehands@hachyderm.ioI inthehands@hachyderm.io

                          @blogdiva
                          I believe that my various name=“___” values specifically target Google.

                          Based on what I’ve read, blocking them in robots.txt will only stop them from •updating• their scrape, whereas noindex means “do not use.” (I have long blocked their LLM-specific bots in robots.txt.)

                          blogdiva@mastodon.socialB This user is from outside of this forum
                          blogdiva@mastodon.socialB This user is from outside of this forum
                          blogdiva@mastodon.social
                          wrote last edited by
                          #126

                          @inthehands TIL thanks

                          inthehands@hachyderm.ioI 1 Reply Last reply
                          0
                          • blogdiva@mastodon.socialB blogdiva@mastodon.social

                            @inthehands TIL thanks

                            inthehands@hachyderm.ioI This user is from outside of this forum
                            inthehands@hachyderm.ioI This user is from outside of this forum
                            inthehands@hachyderm.io
                            wrote last edited by
                            #127

                            @blogdiva

                            Keep it in pencil. I’m still learning myself, and not sure I understand everything correctly here.

                            1 Reply Last reply
                            0
                            Reply
                            • Reply as topic
                            Log in to reply
                            • Oldest to Newest
                            • Newest to Oldest
                            • Most Votes


                            • Login

                            • Login or register to search.
                            • First post
                              Last post
                            0
                            • Categories
                            • Recent
                            • Tags
                            • Popular
                            • World
                            • Users
                            • Groups