179
Jerboa app and Lemmy 0.18
(lemmy.world)
This Community is intended for posts about the Lemmy.world server by the admins.
For support with issues at Lemmy.world, go to the Lemmy.world Support community.
Any support requests are best sent to info@lemmy.world e-mail.
If you would like to make a donation to support the cost of running this platform, please do so at the following donation URLs.
If you can, please use / switch to Ko-Fi, it has the lowest fees for us
Why was captcha even removed in the 1sr place?
Captchas depended on websockets which were removed.
https://github.com/LemmyNet/lemmy/issues/3200#issuecomment-1600505757
No need for a database table, just encrypt the solution and encode it in the filename.
You don't want to provide any more info to the client that you need to. Otherwise someone can write a robot that decrypts that filename and breaks the captcha.
Encrypted means encrypted with real cryptography, using a secret key known only to the server. If a random robot can break that, we are all in trouble. Almost all internet security depends on basically similar cryptography.