this post was submitted on 28 Aug 2023
555 points (99.3% liked)

Selfhosted

39194 readers
434 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

I noticed a bit of panic around here lately and as I have had to continuously fight against pedos for the past year, I have developed tools to help me detect and prevent this content.

As luck would have it, we recently published one of our anti-csam checker tool as a python library that anyone can use. So I thought I could use this to help lemmy admins feel a bit more safe.

The tool can either go through all your images via your object storage and delete all CSAM, or it canrun continuously and scan and delete all new images as well. Suggested option is to run it using --all once, and then run it as a daemon and leave it running.

Better options would be to be able to retrieve exact images uploaded via lemmy/pict-rs api but we're not there quite yet.

Let me know if you have any issue or improvements.

EDIT: Just to clarify, you should run this on your desktop PC with a GPU, not on your lemmy server!

you are viewing a single comment's thread
view the rest of the comments
[–] crunchpaste@lemmy.dbzer0.com 9 points 1 year ago (1 children)

Well, we have hashing algorithms that do exactly that, like phash for example.

[–] dan@upvote.au 2 points 1 year ago (1 children)

Definitely. A lot of the good algorithms used by big services are proprietary though, unfortunately.

[–] crunchpaste@lemmy.dbzer0.com 0 points 1 year ago (2 children)

Can you point me to some of them? I'm quite interested in visual hashing.

[–] dan@upvote.au 3 points 1 year ago* (last edited 1 year ago)

Microsoft's PhotoDNA is probably the most well-known. Every major service that has user-generated content uses it. Last I checked, it wasn't open-source.

Meta has some algorithms that are open-source: https://about.fb.com/news/2019/08/open-source-photo-video-matching/

Google has CSAI Match for hash-matching of videos and Google Content Safety API for classification of new content, but both are proprietary.

[–] db0@lemmy.dbzer0.com 1 points 1 year ago* (last edited 1 year ago)

There's better approaches than hashing. For comparing images I am calculating "distance" in tensors between them. This can match even when compression artifacts are involved or the images are slightly altered.