kekeds / funcaptcha-solver

18 stars 8 forks source link

Arkose Funcaptcha Solver

Funcaptcha Solver made by kek! 🚀 https://t.me/kokandg

Features

Usage

To implement this script in your project, you can follow a similar approach as shown below:

import requests

session=requests.Session()

task=session.post("http://127.0.0.1:8003/funcaptcha/createTask",json={
    "preset": "outlook_register",
    "chrome_version": "130",
    "proxy": self.proxy,
    "blob": blob,
}).json()

while True:
    token=session.post("http://127.0.0.1:8003/funcaptcha/getTask",json={
        "task_id": task["task_id"]
    }).json()

    if token["status"]=="completed":
        return token["captcha"]["token"]

    time.sleep(1)

Showcase

Showcase

Remember: This doesnt include the image classification. If you want classification you can for example use XEvil