Categories > Coding > C++ >
Is there any hCAPTCHA library for C/C++?
Posted
I'm working on a project called Discard which is written in C, that allows me to automate the creation of Discord accounts, and I did some really basic reverse engineering on the Discord login page using inspect element to figure out the API for registering a Discord account.
I created a function that calls this API using libcurl & cJSON, which then returns the hCAPTCHA sitekey. Is there any C/C++ (preferably C) library that allows me to display the CAPTCHA on-screen so that I can solve it manually? I can't seem to find any library that does this.
Cancel
Post
Contribute to Express, an open-source ROBLOX exploit written fully in C.
Replied
best way is to make the code host a localhost html website with the hcaptcha then use a post request to send the hcaptcha token to the client
Cancel
Post
https://media.discordapp.net/attachments/1074297826219139153/1118491534581567568/Mask_group.png
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Comments
lilbiden69 3 Reputation
Commented
I'll try that, thanks (I found some documentation on how to render a hCAPTCHA dialog in HTML).
Time to write an HTTP server...
0