How can I add deathbycaptcha to a program I already have?

Th3Heap

Newbie
Joined
Aug 5, 2012
Messages
17
Reaction score
0
Hi BHW,

This might sound crazy but I'm wanting to know if there's a software or how to breakdown a program that I already have to get the coding and add deathbycaptcha's api code. If that sounds confusing, what I'm trying to do is basically recreate this program that I already have to use deathbycaptcha. The program is an account creator. It works great but its slow because I have to type in the captcha. I purchased some captcha's from Deathbycaptcha and I would like to add the api to the coding. I have no idea how to create a program. I'm new to this whole thing so if I could break the software down and grab the coding it would be a lot easier than starting from scratch. If there's anyway to do this please let me know. Thank you.
 
Short answer: You can't (unless you can actually write code and are a reverse engineer :))
 
You basically have to reverse engineer that program.. but honestly, many times it's less hassle to just build a new one from scratch.

There are a few ways to do this, but it depends on so many factors that it's impossible for anyone here to explain you what to do.

Either ask the original developer to include captcha support, or post the program(if it's not on the banned list) for members to have a look.
 
Last edited:
If it's .NET it's easy.

Download .NET reflector and use the reflexil addon. Use reflexil to deobfuscate the app if needed and then use reflexil to add your own objects to the assembly, you'll need to patch bits of the original code to incorporate but MSIL isn't exactly hard to master.

Good luck!
 
Back
Top