FYI admins

cross-posted from: https://quokk.au/c/fediverse/p/1066667/tesseract-dev-injects-malicious-code-into-browser-to-illegally-ddos-the-dbzer0-instance

As part of the devs farewell message on their site, they have included malicious code to make each visitor sends 2,000 requests to the dbzer0 servers in an attempt to DDOS and take the instance offline.

dubvee.org is down

Blegh. I made some effort to get to this instance and I'm not even on the list!

It just gets worse and worse. I figured that the goodbye message he posted wouldn't be the end of it. Thankfully it seems to be down now so it's not causing harm anymore directly but still.

Actual lmao

"Tesseract dev found to have world's smallest and most rancid penis."

Im sure some shitlibs will still defend this

Where is @Kirk@startrek.website when you need him most?

not convinced that's not a sock puppet, from all the stuff I've seen so far

He kept claiming they're AP, but refused to provide proof. Not sure but as it happens, startrek.website defederated us as soon as we banned him.

Huh, weird how the framing of the defedederation lines up so well to what ap and Kirk would say.

https://startrek.website/post/42709922

If you’re not familiar with how Lemmy/the Fediverse works, basically everything you read at StarTrek.website is hosted by us, even if the content originated elsewhere. That means we are responsible for everything here and we have to decide if we are comfortable boosting content from other instances.

If you’re curious, the final straw here was learning that db0 explicitly allows hosting discussions about hurting people, which needless to say goes against our instance values and we simply don’t have the manpower to moderate that volume of content incoming from their server to a degree that we feel meets our quality standards, which left defederating as the only viable option.

In keeping in line with past trends we’re announcing this because is is a larger instance and don’t want to leave any of the crew confused as to why something may be missing.

I'm confused. dubvee.org is down and the tesseract repo was also pulled. How is this being deployed? What instances are hosting this version of tesseract?

I would like to see this javascript myself because DDOSing with open source code in your name is a whole new level of unwise.

Also wtf is up with the 100 - 1 + 1 expression? Is this some weird JavaScript quirk?

Dubvee is down down now (server not responding), but prior to that the site had a really bitchy "farewell" message. The DDOS was embedded javascript code your browser would run when you visited dubvee.org and viewed the message.

Archive.org has a snapshot of it, but it still has that javascript embedded so I'm not going to link to it. Here's a screenshot of the site when this code was included.

Also wtf is up with the 100 - 1 + 1 expression? Is this some weird JavaScript quirk?

If searching online for a JS random number generator code, something like Math.floor(Math.random() * (max - min + 1) ) + min; is the most common result. If you're lazy or don't care, you just fill in the min and max and get that 100 - 1 + 1

I don't think the DDoS code was FOSS. I think their frontpage index.html was set to a static html file just for the flounce.

So individual tesseract instances all reference the same static remote HTML file hosted by the the tesseract dev instead of one shipped with each instance?

Gotta say, I've enjoyed this whole drama. This seems like the end of the story arc. It's been fun guys. Better than beans.

Yeah, also this makes me really happy that we're on the fediverse. Turns out some part of the system is run by a strange control freak? Swiftly replace the part and everyone moves along.

Well said.

I hope it's the end but like the piefed stuff we think it's done then something else comes up.

Plus the dev/user/admin of dubvee has said a few times they're leaving only to be back soon after saying that. Hell there were two or three announcements tesseract work was stopped 🤷

What is the piefed stuff?

Piefed dev doing something similar on the flagship instance, and has some odd philosophies on what should be filtered out in the code.

When people started pointing it out and asking questions called it harassment and tried to get instances to instance ban them all.

Best part was insulting everyone looking at the code if you didn't ask on their specific comm.

Gotta leave the door open for a next season sequel with a sneaky post credits scene.

Ironic Twist:

  • It's a Journey Of The Hero story and this part was just the initial fall of the Hero.

"doubt"

X

Me too.

It would surely be ironic, though.

Agreed. I usually don’t care about online drama at all, but at least this has been… amusing.

The memes have been fresh!

You deserve more credit. Thanks for bringing it to everyone’s attention!

I dunno, this opens the author up to a lot of consequences other people might choose to pursue.

What a loser. Tiny whiny loser.

Fabulous reaction time from db0 & team!

So who is this loser, I mean it's a tiny whiny bit illegal what he did it seems...

What a sad individual.

I mean it, I'm not being sarcastic. I genuinely feel sorry for them. The fact they feel they had to do this, probably knowing they'd get caught.

It's a classic cry for help. This dev is not in a good place. Perhaps they have found themselves isolated.

Of course that often happens when you act like a tiny dicked loser.

Sometimes the kind of crap done by people who are selfish wankers is just that - crap - not a cry for help.

Certainly in my personal experience people who haven't actually grown up as persons to become mature adults don't actually see the problems that they repeateadly get into with everybody else because of having the emotional complexity and impulse control of toddlers as their fault, but rather as the fault of others.

There's no cry for help in their actions because they don't think they need help.

why body shame

It's a metaphorical tiny dick, unrelated to any actual body.

Like small dick energy, you know?

But thanks for policing me there pal, I appreciate that.

Yeah, tiny dick is an attitude not limited to penis havers nor defined by penis size so we say “main character syndrome”.

Thanks, that's a better way of explaining it.

I'd gather that he is a massive control freak. Hard to feel sorry for him right now really but I agree it must be a sad life.

This whole thing reminds me of the guy (Angled/LMAO) 3 years ago that was all butthurt after he got busted trying to take all the good sublemmy names, and responded by posting a bunch of disgusting stuff with alts and DOSing lemmy.world.

Edit https://lemmy.world/post/1720870

This was a blast from the past.

@db0@lemmy.dbzer0.com You need to see this

Already known and mitigated.

Not to expose anything that’s best left internal, but is this something the proof of work check handles? Is it something that’s been implemented in advance? Just curious, if you can talk about it at all. I’m woefully undereducated on the actual ins and outs of the web.

They can block requests from a specific origin or implement tailored rate limiting rules or disable CORS from that instance. Probably more too

The problem is that this is a client side javascript-based attack - meaning your browser sends these malicious requests. So a DDOS, not "just" a regular (centralized) DOS. Anyone opening the page with javascript turned on (which is 99% of real users, however for Lemmy the statistic's surely a bit better) is an "attacker".

You can - once you know of the nature of the attack (this one's relatively simplistic), just react to any realistic-looking request and ~~block~~ ignore the malicious ones - in this case garbled rng output.

Rate limiting would only lead to what the attacker wants - legit users (who are unknowingly sending these malicious requests) being blocked from accessing the site.

For this kind of stuff you can easily ask an llm and it will give you a pretty decent rundown of mitigation tactics

Just thought it would be the cherry on top if this final outburst was automatically blocked by a mitigation measure that was already there.

Wow lmao. This is crazy levels of petty

Your link 404s

Try https://lemmy.world/post/49947403

What the actual fuck? This idiot may have his braindead opinions and do to his OSS project whatever he wants (so sag I wasn't on the list), but that is just such a fucked up thing to do.

I wonder if you could actually track him down and prosecute him for it...

The domain seems to be registered to SquareSpace so his details are hidden from public view but there is a SquareSpace abuse email and US phone number.

I suspect in the first instance if db0 complained to them the site would be shutdown and SquareSpace would then have to comply with any legal action.

INAL but I strongly suspect that the DDOS would constitute a crime in the US where the domain is registered.

Yup. Anyone knowingly assisting would also be implicated. Afaik, the precedent was set about 20 years ago with the whole LOIC/anonymous ddos.

Nah he's hosted on inmotion. I already bipped 'em

The domain is registered to SquareSpace: https://who.is/whois/dubvee.org

The IP associated with the domain points to Inmotion: https://who.is/whois-ip/ip-address/107.161.30.39

Looks like both are true, hopefully Inmotion will take appropriate action based on your report. Worthwhile reporting to SquareSpace too so he can't just rehost an attack elsewhere.

Registrar and hosting are different things.

Registrar is who you bought and manage the domain name you use on your site through. Hosting is where it lives.

Most domain name registrars do not give a single shit what you do with a domain name, unless they're somehow on the hook. Hosting on the other hand.....

I understand how it works.

All I'm saying is the registrar should also be notified otherwise the site can be moved to another hosting platform.

If the registrar can be convinced to take action, at least the domain can't be used for future attacks.

Idk what this tesseract is and at this point I'm too afraid to ask

midwest.social

Rules

  1. No porn.
  2. No bigotry, hate speech.
  3. No ads / spamming.
  4. No conspiracies / QAnon / antivaxx sentiment
  5. No zionists
  6. No fascists

Chat Room

Matrix chat room: https://matrix.to/#/#midwestsociallemmy:matrix.org

Communities

Communities from our friends:

Donations

LiberaPay link: https://liberapay.com/seahorse