cross-posted from: https://jamie.moe/post/113630

There have been users spamming CSAM content in [email protected] causing it to federate to other instances. If your instance is subscribed to this community, you should take action to rectify it immediately. I recommend performing a hard delete via command line on the server.

I deleted every image from the past 24 hours personally, using the following command: sudo find /srv/lemmy/example.com/volumes/pictrs/files -type f -ctime -1 -exec shred {} \;

Note: Your local jurisdiction may impose a duty to report or other obligations. Check with these, but always prioritize ensuring that the content does not continue to be served.

Update

Apparently the Lemmy Shitpost community is shut down as of now.

  • Ebby@lemmy.ssba.com
    cake
    link
    fedilink
    English
    arrow-up
    9
    ·
    10 months ago

    Could someone please ELI5 that script. I’m all for keeping things clean, but old enough to remember the days of console based trolling.

    • RegalPotoo@lemmy.world
      link
      fedilink
      English
      arrow-up
      13
      ·
      10 months ago

      Looks fairly sane, finds every file in the given directory that was created in the last 24 hours and deletes them. Personally if you are dealing with CSAM I’d be using shred instead of just rm

    • UnlimitedRumination [he/him]@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      9
      ·
      edit-2
      10 months ago

      sudo

      As root

      find /srv/lemmy/example.com/volumes/pictrs/files

      Find files in /srv/lemmy... that:

      -type f

      Are plain files (not directories, symlinks, etc; includes images)

      -ctime -1

      And were created within an amount of time (probably last day, haven’t used this flag in a while)

      -exec rm {} \\;

      For each matching file found execute rm on it (delete it).

    • mordred@lemmy.world
      link
      fedilink
      English
      arrow-up
      7
      ·
      10 months ago

      sudo find /srv/lemmy/example.com/volumes/pictrs/files -type f -ctime -1 -exec rm {} \;

      • sudo: run as root
      • find /srv/lemmy/example.com/volumes/pictrs/files -type f: find files (f) in directory
      • -ctime -1: which have been created in the last day
      • -exec rm {} ; execute the command rm (remove) on each of them