XEvil FunVerification

Cellarac

Well-known member
Joined
Jul 20, 2019
Messages
194
I have the newest XEvil software installed and I want to learn how to solve FunCAPTCHA using the latest XEvil Beta-7 software. I need to know what parameters to send to the API through the XEvil API, similar to 2captcha.com. Can you provide an example? Thanks!
 
The resolution time is pretty slow, but the developer is working hard on fixes since it’s still in beta. XE mostly auto-captures on localhost, and they have API documentation on their site. There aren’t many references online for this.

Good luck!
 
Can anyone share a code example with parameter values for calling or sending a request to the in.php API endpoint to solve FunCAPTCHA using XEvil?

You can try using a translator and see if you have any luck on the BotMasterLabs Russian forums if you don’t find anything here.
 
I figured out how to solve the issue. Here's the solution:

Turn the image into base64 and send it to the XEvil server using the API’s "base64" method.
Set the "recaptcha" parameter to 1 with API recaptcha=1.
Provide the "imginstructions" parameter from the image in step 1.
That's it!
 
I figured out how to solve the issue. Here's the solution:

Turn the image into base64 and send it to the XEvil server using the API’s "base64" method.
Set the "recaptcha" parameter to 1 with API recaptcha=1.
Provide the "imginstructions" parameter from the image in step 1.
That's it!

Can you give me an example? Thanks!
 
Can you give me an example? Thanks!

Take a screenshot of the captcha image and change it into a base64 string like this.

image 1.webp

  1. Open XEvil > Cores > Turn on FunCaptcha.Compare
image 2.webp

Go to Settings, choose 2captcha.com, and click +Hosts to connect the 2captcha service (0.0.0.0:8080 is just an example, you should use the default value).

image 3.webp

  1. Get the image instructions from the captcha, like "Select the picture of the brick cone and the checkered cube"...
  2. Send a POST request with multiple parts to http://2captcha.com/in.php

key" => "770974g9726f13e022c811e964e1f17b"
"method" => "base64"
"body" => "base64 image string from step 1"
"imginstructions" => "Image instructions from 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";
Select 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";
770974f9726f13e022c811e964e1f16b
--zqdhhqqmfjnausxwikdvgyynwlmydpbsghfxdvbh--
  1. Get the result ID from the response, then send a GET request to https://2captcha.com/get.php to fetch the result (You can find the documentation at https://2captcha.com/2captcha-api#solving_normal_captcha).
 
I’ve been solving funcaptchas using Death by Captcha. I tried using Xevil about a year ago, but it wasn’t supported back then.
 
The fix time is a bit slow, but the creator is working on it in beta. XE automatically captures on local servers and the API, with guides available on their website.
 
It's better than paying for every 1k solved! I've been using xevil for quite a while, and it works great.
 
Back
Top Bottom