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.

you are viewing a single comment's thread
view the rest of the comments
[–] 29 points 1 month ago (4 children)

Expert dev. Doesn't even know the attribute for setting the language in the script tag is type, not lang. Not to mention that you are encouraged to omit the attribute altogether if the script tag contains JavaScript...

Petty, and a bad dev. Big yikes.

  • source
  • parent
  • hideshow 8 child comments
  • [–] 19 points 1 month ago (3 children)

    The random strikes me as curious too. I don't see the point in doing (100 - 1 + 1), you could express a random number between 1 and 100 in a simpler manner. Then he gets another random number and reuses that three times, for whatever reason.

    Then again, none of his other decisions make much sense to me so why would this?

  • source
  • parent
  • hideshow 6 child comments
  • [–] 19 points 1 month ago* (1 child)

    Yeah the - 1 + 1 was weird to me too, serves no purpose.

    I can see how choosing a new random number for each fetch would prevent the server from caching the response, I suppose.

    I can't imagine this code was written in any other fashion than completely rage-induced, with shaking fingers and high blood pressure. 😂 What a putz.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 9 points 1 month ago

    I can't imagine this code was written in any other fashion than completely rage-induced, with shaking fingers and high blood pressure. 😂 What a putz.

    lmfao

    I've drunk coded before (gotta hit the Ballmer Peak) but I don't know if I've ever rage coded before.

  • source
  • parent
  • [–] 11 points 1 month ago

    I guess it's just a pattern to easily get a number between a and b, going (b - a + 1). Or maybe this is just vibecoded lol

    Seeing (100 - 1 + 1) definitely bothers my brain lmao

    Looking closer, the whole calculation bothers me now. Why do floor() + 1 instead of just using ceil ... arghhhh

  • source
  • parent
  • [–] 12 points 1 month ago* (last edited 1 month ago) (3 children)

    To be fair, it's not as if it supports languages other than fucking Javascript anyway, so it mostly doesn't matter.

    Edit: I don't want to split hairs about modules or json or whatever; I just want to be salty about how we could've had Scheme or Python in the browser.

  • source
  • parent
  • hideshow 6 child comments
  • [–] 10 points 1 month ago

    The type attribute is not only to specify the language. It's like one case out of several. It definitely matters in those contexts where you want to do the other things you can do with the type attribute.

  • source
  • parent