XEvil FunCAPTCHA

fcb

Newbie
Joined
Dec 28, 2023
Messages
2
Reaction score
1
I have the latest XEvil software installed and I want to know how to solve FunCAPTCHA through the latest XEvil Beta-6 software. Basically I want to know what parameters to send to the API via the 2captcha.com style XEvil API, please provide example. Thanks!
 
Resolve time is really slow author is doing their best for fixes since its on beta state still. XE mostly auto captures on localhost and via API they have documentation on their site there are no many reference on internet for that.

Good luck :)
 
Can anyone provide code example with parameter values to calling or sending request to in.php API endpoint to solve funcaptcha through XEvil?

You can use a translator and try your luck on the botmasterlabs russian forums if you get nothing here
 
I managed to solve the problem. The solution below...

1. Convert the image to base64 and send it to the XEvil server in base64 by using API's "base64" method.
2. Enable "recaptcha" parameter to 1 via API recaptcha=1.
3. Provide "imginstructions" parameter from the image in step 1.
4. Done...

:)
 
I managed to solve the problem. The solution below...

1. Convert the image to base64 and send it to the XEvil server in base64 by using API's "base64" method.
2. Enable "recaptcha" parameter to 1 via API recaptcha=1.
3. Provide "imginstructions" parameter from the image in step 1.
4. Done...

:)
can give me example . thank you
 
can give me example . thank you

1. Capture captcha image then convert it to base64 string like this.
1709808316306.png



2. Open XEvil > Cores > Enable FunCaptcha.Compare
1709808375200.png


3. Go Settings choose 2captcha.com, click +Hosts to patch 2captcha service (0.0.0.0:8080 is example, you should set default value)
1709808446416.png


4. Get Image Instruction text in Captcha
"Pick the image of the brick cone and the checkered cube" ...

5. Send POST request multipart to http://2captcha.com/in.php

Code:
"key" => "770973f9726f13e022c811e964e1f16a"
"method" => "base64"
"body" => "base64 image string at step 1"
"imginstructions" => "Image instructions at step 4"

Code:
Url: http://2captcha.com/in.php
Method: POST

Content-Type: multipart/form-data; boundary=zqdhhqqmfjnausxwikdvgyynwlmydpbsghfxdvbh
Accept: */*



--zqdhhqqmfjnausxwikdvgyynwlmydpbsghfxdvbh
Content-Disposition: form-data; name="method";

base64
--zqdhhqqmfjnausxwikdvgyynwlmydpbsghfxdvbh
Content-Disposition: form-data; name="imginstructions";

Pick the image of the brick cone and the checkered cube
--zqdhhqqmfjnausxwikdvgyynwlmydpbsghfxdvbh
Content-Disposition: form-data; name="body";

/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0........... (chunked)
--zqdhhqqmfjnausxwikdvgyynwlmydpbsghfxdvbh
Content-Disposition: form-data; name="recaptcha";

1
--zqdhhqqmfjnausxwikdvgyynwlmydpbsghfxdvbh
Content-Disposition: form-data; name="key";

770973f9726f13e022c811e964e1f16a
--zqdhhqqmfjnausxwikdvgyynwlmydpbsghfxdvbh--

6. Get result id from response then send GET request to https://2captcha.com/get.php to get result (You can get docs from https://2captcha.com/2captcha-api#solving_normal_captcha)
 
I've been solving funcaptchas with death by captcha. Tried like a year ago with Xevil but wasn't supported.
 
Resolve time is slow, but author is fixing it in beta. XE auto-captures on localhost and API with documentation on their site.
 
its better than paying for every 1k solved:) Im using xevil long long time and it works very well
 
Xevil is so good, I have just bought it. http://botmasterlabs.net/buy_xevil/
 
Back
Top