Java - Using DeathByCaptcha

Netami

Newbie
Joined
Apr 16, 2016
Messages
2
Reaction score
0
Hey all, first post here and I'm having some issues using DeathByCaptcha to solve reCaptchas for an account creator I'm working on. For some reason, my program will always hang on my client declaration line:
Code:
[COLOR=#A9B7C6][FONT=Courier New]SocketClient client = [/FONT][/COLOR][COLOR=#CC7832][FONT=Courier New]new [/FONT][/COLOR][COLOR=#A9B7C6][FONT=Courier New]SocketClient([/FONT][/COLOR][COLOR=#6A8759][FONT=Courier New]"Netami"[/FONT][/COLOR][COLOR=#CC7832][FONT=Courier New],[/FONT][/COLOR][COLOR=#6A8759][FONT=Courier New]"$password"[/FONT][/COLOR][COLOR=#A9B7C6][FONT=Courier New])[/FONT][/COLOR][COLOR=#CC7832][FONT=Courier New];[/FONT][/COLOR]
I'm messaged their support team, but naturally there's been no response. Any ideas?
 
PHP:
You need change SocketClient by Client if you are using the DBC API for solve the problem
// Put your DBC username & password here:
 Client client = (Client) (new SocketClient("USERNAME", "PASS"));
 
Last edited:
PHP:
You need change SocketClient by Client if you are using the DBC API for solve the problem
// Put your DBC username & password here:
 Client client = (Client) (new SocketClient("USERNAME", "PASS"));
I have also tried this, with the same results.
 
So just go through all the standard debugging techniques and you will find the cause of the problem. What exceptions are being thrown? If u are logging, what is in the logs? Can u put a breakpoint in and step through it in a debugger? Etc.
 
Back
Top