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. Pleased to share a page and explainer for the AI tarpit project Science is Poetry, with legal statement, rationale(s), and a few deployment notes:

Pleased to share a page and explainer for the AI tarpit project Science is Poetry, with legal statement, rationale(s), and a few deployment notes:

Scheduled Pinned Locked Moved Uncategorized
bigtech
180 Posts 56 Posters 81 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.
  • julianoliver@mastodon.socialJ julianoliver@mastodon.social

    Here's a thing I did in a couple of mins to ban all IPs in the parasites.txt serverside. You could ofc REJECT rather than DROP to send a message.

    ---
    #!/bin/bash

    while read parasite;
    do
    if [[ "$parasite" == *"."* ]]; then
    iptables -I INPUT -s "$parasite" -j DROP
    elif [[ "$parasite" == *":"* ]]; then
    ip6tables -I INPUT -s "$parasite" -j DROP
    fi
    done < /path/to/parasites.txt
    ---

    julianoliver@mastodon.socialJ This user is from outside of this forum
    julianoliver@mastodon.socialJ This user is from outside of this forum
    julianoliver@mastodon.social
    wrote last edited by
    #112

    Actual hits dropping slightly, but more data is pulled from the tarpit day on day. This is reflected by a higher proportion of HTTP 200's - so less bad req's. Less reaching for what isn't there, just want the madness.

    Unclear why this has changed.

    Link Preview Image
    julianoliver@mastodon.socialJ 1 Reply Last reply
    0
    • dzwiedziu@mastodon.socialD dzwiedziu@mastodon.social

      @tseitr
      I'm curious about this also.

      Edit: if all I need to do is add the A and AAAA records, then the answer could be “yes”.

      @JulianOliver

      julianoliver@mastodon.socialJ This user is from outside of this forum
      julianoliver@mastodon.socialJ This user is from outside of this forum
      julianoliver@mastodon.social
      wrote last edited by
      #113

      @dzwiedziu @tseitr Thanks both! Yes as simple as picking any unused domain (canonical or sub) and setting these records to point to the server:

      A: 95.216.76.85
      AAAA: 2a01:4f9:2b:c83::2

      Then, DM or toot me the domain. Once set, I'll let you know, and then it's time to share your tarpit domain liberally: link in the footer of your site, landing page a friendly wiki you want to protect, blog post etc.

      Ideally should be toward the front of the content.

      dzwiedziu@mastodon.socialD 1 Reply Last reply
      0
      • julianoliver@mastodon.socialJ julianoliver@mastodon.social

        @dzwiedziu @tseitr Thanks both! Yes as simple as picking any unused domain (canonical or sub) and setting these records to point to the server:

        A: 95.216.76.85
        AAAA: 2a01:4f9:2b:c83::2

        Then, DM or toot me the domain. Once set, I'll let you know, and then it's time to share your tarpit domain liberally: link in the footer of your site, landing page a friendly wiki you want to protect, blog post etc.

        Ideally should be toward the front of the content.

        dzwiedziu@mastodon.socialD This user is from outside of this forum
        dzwiedziu@mastodon.socialD This user is from outside of this forum
        dzwiedziu@mastodon.social
        wrote last edited by
        #114

        @JulianOliver
        Then I'll set up mine either very quickly or in a matter of weeks (WIP moving between countries).

        @tseitr

        julianoliver@mastodon.socialJ 1 Reply Last reply
        0
        • dzwiedziu@mastodon.socialD dzwiedziu@mastodon.social

          @JulianOliver
          Then I'll set up mine either very quickly or in a matter of weeks (WIP moving between countries).

          @tseitr

          julianoliver@mastodon.socialJ This user is from outside of this forum
          julianoliver@mastodon.socialJ This user is from outside of this forum
          julianoliver@mastodon.social
          wrote last edited by
          #115

          @dzwiedziu @tseitr Been there a few times - no rush!

          1 Reply Last reply
          0
          • julianoliver@mastodon.socialJ This user is from outside of this forum
            julianoliver@mastodon.socialJ This user is from outside of this forum
            julianoliver@mastodon.social
            wrote last edited by
            #116

            @retech That's the word for it. Computationally, environmentally, culturally, infrastructurally - an obscenity.

            1 Reply Last reply
            0
            • julianoliver@mastodon.socialJ julianoliver@mastodon.social

              Here's a thing I did in a couple of mins to ban all IPs in the parasites.txt serverside. You could ofc REJECT rather than DROP to send a message.

              ---
              #!/bin/bash

              while read parasite;
              do
              if [[ "$parasite" == *"."* ]]; then
              iptables -I INPUT -s "$parasite" -j DROP
              elif [[ "$parasite" == *":"* ]]; then
              ip6tables -I INPUT -s "$parasite" -j DROP
              fi
              done < /path/to/parasites.txt
              ---

              pertho@mastodon.bsd.cafeP This user is from outside of this forum
              pertho@mastodon.bsd.cafeP This user is from outside of this forum
              pertho@mastodon.bsd.cafe
              wrote last edited by
              #117

              @JulianOliver
              block return on egress from <parasites>

              (in pf)

              That's what I'm using and:

              @32 block drop in log quick on egress from <parasites:2323> to any
              [ Evaluations: 125476 Packets: 351 Bytes: 20702 States: 0 ]
              [ Inserted: uid 0 pid 75290 State Creations: 0 ]

              Not seen much traffic from them on my machine.
              👍

              1 Reply Last reply
              0
              • pertho@mastodon.bsd.cafeP This user is from outside of this forum
                pertho@mastodon.bsd.cafeP This user is from outside of this forum
                pertho@mastodon.bsd.cafe
                wrote last edited by
                #118

                @neoluddite @JulianOliver At work we noticed that when we changed from html generated search links (nofollow was ignored) to JavaScript generated links, a lot of bots stopped coming back but there were some (mainly from residential proxies) that appear to have cached the URLs and came back for more.

                1 Reply Last reply
                0
                • julianoliver@mastodon.socialJ julianoliver@mastodon.social

                  If you're interested in learning more about implementations of resistance in this era of unchecked Big AI, direct action strategies and the techno-politics therein, be sure to check out ASRG's site (https://algorithmic-sabotage.gitlab.io/asrg/) and give them a follow here on Mastodon (@asrg).

                  They've put a lot of heartbeats and neurons - human stuff - into this area.

                  caleb@pub.calebhearth.comC This user is from outside of this forum
                  caleb@pub.calebhearth.comC This user is from outside of this forum
                  caleb@pub.calebhearth.com
                  wrote last edited by
                  #119

                  @JulianOliver @asrg@tldr.nettime.org What happened to this account/website?

                  julianoliver@mastodon.socialJ 1 Reply Last reply
                  0
                  • julianoliver@mastodon.socialJ julianoliver@mastodon.social

                    Actual hits dropping slightly, but more data is pulled from the tarpit day on day. This is reflected by a higher proportion of HTTP 200's - so less bad req's. Less reaching for what isn't there, just want the madness.

                    Unclear why this has changed.

                    Link Preview Image
                    julianoliver@mastodon.socialJ This user is from outside of this forum
                    julianoliver@mastodon.socialJ This user is from outside of this forum
                    julianoliver@mastodon.social
                    wrote last edited by
                    #120

                    Great article https://dreckiger.schleimpilz.ch/blog/hasnt/digitizer%20provided%20obsoleteness

                    Link Preview Image
                    scott@sfba.socialS superball@norcal.socialS themadhatter@mastodon.socialT julianoliver@mastodon.socialJ 4 Replies Last reply
                    0
                    • julianoliver@mastodon.socialJ julianoliver@mastodon.social

                      Great article https://dreckiger.schleimpilz.ch/blog/hasnt/digitizer%20provided%20obsoleteness

                      Link Preview Image
                      scott@sfba.socialS This user is from outside of this forum
                      scott@sfba.socialS This user is from outside of this forum
                      scott@sfba.social
                      wrote last edited by
                      #121

                      @JulianOliver peer-reviewed just isn’t what it used to be 😅

                      julianoliver@mastodon.socialJ 1 Reply Last reply
                      0
                      • scott@sfba.socialS scott@sfba.social

                        @JulianOliver peer-reviewed just isn’t what it used to be 😅

                        julianoliver@mastodon.socialJ This user is from outside of this forum
                        julianoliver@mastodon.socialJ This user is from outside of this forum
                        julianoliver@mastodon.social
                        wrote last edited by
                        #122

                        @scott haha

                        1 Reply Last reply
                        0
                        • caleb@pub.calebhearth.comC caleb@pub.calebhearth.com

                          @JulianOliver @asrg@tldr.nettime.org What happened to this account/website?

                          julianoliver@mastodon.socialJ This user is from outside of this forum
                          julianoliver@mastodon.socialJ This user is from outside of this forum
                          julianoliver@mastodon.social
                          wrote last edited by
                          #123

                          @caleb oh dear, I don't know. Perhaps down while working on it?

                          1 Reply Last reply
                          0
                          • julianoliver@mastodon.socialJ julianoliver@mastodon.social

                            Great article https://dreckiger.schleimpilz.ch/blog/hasnt/digitizer%20provided%20obsoleteness

                            Link Preview Image
                            superball@norcal.socialS This user is from outside of this forum
                            superball@norcal.socialS This user is from outside of this forum
                            superball@norcal.social
                            wrote last edited by
                            #124

                            @JulianOliver
                            That’s beautiful 🍄

                            1 Reply Last reply
                            0
                            • julianoliver@mastodon.socialJ julianoliver@mastodon.social

                              Do you have an unused domain that you would be happy to donate to a counter-offensive against unchecked & unregulated AI crawlers that scrape human-made content to simulate & deceive for profit?

                              If so, pls reply to this post. Your domain would become an entrypoint to the AI tarpit & Poison-as-a-Service project below, allowing concerned public to choose to use it on their sites, helping make the project more resilient to blacklisting.

                              Link Preview Image
                              Science is Poetry

                              favicon

                              (julianoliver.com)

                              #ai #bigtech #tacticalmedia

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

                              @JulianOliver several, hit me up

                              julianoliver@mastodon.socialJ 1 Reply Last reply
                              0
                              • julianoliver@mastodon.socialJ julianoliver@mastodon.social

                                It's approaching DoS at this point. This just one of the VMs, and just OpenAI's parasite.

                                Threading's holding up but need some more tuning of rate limits and burst. Trying sending 429's now to ask them to play nice.

                                To think the www was built for people.

                                And here we are

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

                                @JulianOliver could you explain what we are seeing here , for dummies ;-))) Is this different to cookies , and “normal” background web activity as a result of search.

                                julianoliver@mastodon.socialJ 1 Reply Last reply
                                0
                                • paulhanrahan@mastodon.socialP paulhanrahan@mastodon.social

                                  @JulianOliver could you explain what we are seeing here , for dummies ;-))) Is this different to cookies , and “normal” background web activity as a result of search.

                                  julianoliver@mastodon.socialJ This user is from outside of this forum
                                  julianoliver@mastodon.socialJ This user is from outside of this forum
                                  julianoliver@mastodon.social
                                  wrote last edited by
                                  #127

                                  @paulhanrahan Sure! This is log output captured on the server itself, not a local machine. Each line is a page read (an 'HTTP GET' request) by an AI crawler. At the time this was captured, the crawlers were predominantly those of OpenAI, Meta and Anthropic. If you look closely at the log output, you will be able to pick out the 'user agent' strings (declared client identities) of those bots.

                                  1 Reply Last reply
                                  0
                                  • julianoliver@mastodon.socialJ julianoliver@mastodon.social

                                    Great article https://dreckiger.schleimpilz.ch/blog/hasnt/digitizer%20provided%20obsoleteness

                                    Link Preview Image
                                    themadhatter@mastodon.socialT This user is from outside of this forum
                                    themadhatter@mastodon.socialT This user is from outside of this forum
                                    themadhatter@mastodon.social
                                    wrote last edited by
                                    #128

                                    @JulianOliver found another great one. Maybe the greatest of all time:

                                    https://madhattercorp.com/blog/hasnt/digitizer%20provided%20obsoleteness

                                    Link Preview Image
                                    julianoliver@mastodon.socialJ 1 Reply Last reply
                                    0
                                    • themadhatter@mastodon.socialT themadhatter@mastodon.social

                                      @JulianOliver found another great one. Maybe the greatest of all time:

                                      https://madhattercorp.com/blog/hasnt/digitizer%20provided%20obsoleteness

                                      Link Preview Image
                                      julianoliver@mastodon.socialJ This user is from outside of this forum
                                      julianoliver@mastodon.socialJ This user is from outside of this forum
                                      julianoliver@mastodon.social
                                      wrote last edited by
                                      #129

                                      @themadhatter yes that's beautiful alright!

                                      1 Reply Last reply
                                      0
                                      • julianoliver@mastodon.socialJ julianoliver@mastodon.social

                                        Great article https://dreckiger.schleimpilz.ch/blog/hasnt/digitizer%20provided%20obsoleteness

                                        Link Preview Image
                                        julianoliver@mastodon.socialJ This user is from outside of this forum
                                        julianoliver@mastodon.socialJ This user is from outside of this forum
                                        julianoliver@mastodon.social
                                        wrote last edited by
                                        #130

                                        My log analysis shows that what these AI crawlers do is swarm content to get around rate limiting; with many end-points each can be limited to sane human defaults and their automation can still harvest content at massive scales from the same source in little time.

                                        I noticed however that (for unknown reasons) Anthropic started reducing the number of crawler endpoints, tapering down traffic from them. So I doubled the rate to 2/s. This added over 100k hits to the logs in a day.

                                        Link Preview Image
                                        psysal@mastodon.socialP julianoliver@mastodon.socialJ 2 Replies Last reply
                                        0
                                        • julianoliver@mastodon.socialJ julianoliver@mastodon.social

                                          If you're interested in learning more about implementations of resistance in this era of unchecked Big AI, direct action strategies and the techno-politics therein, be sure to check out ASRG's site (https://algorithmic-sabotage.gitlab.io/asrg/) and give them a follow here on Mastodon (@asrg).

                                          They've put a lot of heartbeats and neurons - human stuff - into this area.

                                          xurizaemon@toot.cafeX This user is from outside of this forum
                                          xurizaemon@toot.cafeX This user is from outside of this forum
                                          xurizaemon@toot.cafe
                                          wrote last edited by
                                          #131

                                          @JulianOliver both links here are 404s as of today - but i will make a note of this name 🙂

                                          julianoliver@mastodon.socialJ 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