Spyke

Posts

diducthis·Did you see this?byklieg2323

WARNING: Lemmy Self-Hosters, There Have Been CSAM Attacks taking place against [email protected]

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

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.

View original on lemmy.piperservers.net
0
diducthis·Did you see this?byklieg2323

Has anyone defederated your instance? Introducing Defederation Investigator

cross-posted from: https://discuss.tchncs.de/post/2137736

cross-posted from: https://lemmy.basedcount.com/post/113726

I couldn't find any tools to check this, so I built one myself.

This is a little site I built: the Defederation Investigator defed.xyz. With it, you can get a comprehensive view of which instances have blocked yours, as well as which ones you are federated with.

The tool is open source and available on GitHub. Hopefully someone will find it useful, enjoy.

https://defed.xyz/Open linkView original on lemmy.piperservers.net
2
diducthis·Did you see this?byklieg2323

Reiverr: A clean UI for Jellyfin, TMDB, Sonarr and Radarr, as well as a replacement to Overseerr

cross-posted from: https://lemmy.dbzer0.com/post/1908082

Hey ya all,


> 
> Reiverr is a project of mine that I’ve decided to release to the public today. It’s a self-hosted website similar to the content discovery app Overseerr, with the added features of managing and watching your content library through Sonarr, Radarr and Jellyfin integrations. The motivation behind the project was the lack of a unified modern UI that could be used to discover, manage and watch content in a single place.

Currently, the project is in very early stages of development, but it is mostly usable in its current state. If you want to try it out, you can find the installation instructions in the project’s GitHub page:
> 
>

https://github.com/aleksilassila/reiverr

Also: For the project to reach its fullest potential, it could use contributions! If you’d like to contribute code, designs (I’m not a UI designer, please help me), documentation or anything else, first of all, thank you!, and you can find an extensive list of planned features & fixes at the Reiverr Taskboard. It’s also a great place to just get a sense of what’s being done if you’re curious.
> 
>

Cheers guys!

View original on lemmy.piperservers.net
2
diducthis·Did you see this?byklieg2323

India's Defence Ministry to switch from Windows to locally built Ubuntu fork 'Maya' over security concerns

cross-posted from: https://sh.itjust.works/post/2523551

Due to increasing concerns over cyberattacks and malware, India's Defence Ministry has decided to replace Microsoft's OS with a locally made Ubuntu fork named Maya (meaning 'deception' in Sanskrit). Maya will have an interface similar to Windows to ease the transition, and an end-point detection and protection system called Chakravyuh. The three armed services are also expected to follow suit, with the Navy already having cleared the OS for deployment.

The Indian government has long had a policy to transfer all government systems to open-source software, with the Railways and the Bombay Stock Exchange having switched to Red Hat and educational institutions using distributions such as Debian-based BOSS and Ubuntu-based KITE.

India's Defence Ministry to switch from Windows to locally built Ubuntu fork 'Maya' over security concernshttps://www.thehindu.com/article67172875.eceOpen linkView original on lemmy.piperservers.net
6
diducthis·Did you see this?byklieg2323

PSA for Lemmy instance admins: in backend v0.18.3 there is a bug that causes your instance to stop federating properly and to stop sending out outgoing messages

cross-posted from: https://yiffit.net/post/868741

This new version introduced a system so that your instance stops sending out content to other instances that are supposedly dead / offline.

Unfortunately for some reason there's false positives. When I checked comparing the results from a curl request vs the information in our Lemmy database I found over 350+ false positives.

In the DB there is a table called "instance" which has a column called "updated". If the date on that column is older than 3 days, your server will stop sending any content to those instances.

For some reason I had entries that were dated as last being alive in July, while actually they were always up. If an entry is incorrect, you can fix it by manually using an update statement and adding today's date. If your instance is not too large you can safely update all entries to today's date and check if everything works as expected from then on any new content created on your instances.

The dead instances won't have an impact unless your instance is larger and generates more content, thus it might be easier to simply update all entries and have Lemmy believe they're all alive if you start noticing wonky behavior and don't want to check one by one.

If you don't know how to access the database run this command where domaincom is your instance domain without the dot.

  1. docker exec -it domaincom_postgres_1 busybox /bin/sh

  2. psql -U

(The default user is 'lemmy') You could technically do this is one single step, but it's good to know the command to get shell access to the container itself if you didn't know how to.

This should give you access to a postgres CLI interface. Use \c to connect, \dt to list tables and \d+ tablename to list table definition. You can also run SQL queries from there.

Try with this query: SELECT * from instance to list all instances and their updated date.

You can use other SQL queries to get better results or correct false positives. Just be careful with what you execute since there's no undo.

View original on lemmy.piperservers.net
3