Captcha system with Javascript disabled : programming | Torhoo darknet markets
I'm trying to develop a captcha system with basic html. I can't use javascript or it won't work due to most people having it disabled. Is there any way I can achive this? It can be a simple insert the text from the image, Or it can be something similar to the deCAPTCHA that dread uses.
For the frontend, you could view page source and see how dread implements it's captcha(lots of cool CSS tricks). You could do this for the latest version of endgame too. Your gonna have to implement the backend on your own though. Playing around with the inspection tool should give of an idea of whats happening on the backend. I would recommend you save the captured network packets as a HAR file, so you could view the requests with a text editor. There is a module for vscode that allows you to view HAR files as requests and responses from the server. Be sure not to login to your account though as your username and password would be stored in plaintext.
You need to create a series of images, and then you need to add layers of color, text, shapes to make it more difficult for ML to figure out what's going on.
Then when a user gets captcha you set a session or cookie allowing the request to further proceed.
You see it's not just a captcha, the captcha is the foundation to you session control.
The captcha dread uses isn't something simple. There is a lot that goes into it, especially when no js can be used.
I would really like to look at dreads captcha under the hood. /u/Hugbunter has done a really solid job. He's got a really good understanding of what he can achieve with ingenuity. Like the iframe vote solution.