CloudFreed is a powerful tool designed to bypass Cloudflare anti-bot protection, allowing users to access websites without being restricted by captchas or Cloudflare's security measures.
Before using CloudFreed, ensure that you have Node.js installed on your system. If not, you can download and install it from Node.js website.
Once Node.js is installed, follow these steps to set up CloudFreed:
-
Clone or download the CloudFreed repository to your local machine, you can get the latest download here.
-
Extract the file.
-
Open a terminal and navigate to the directory where you have cloned/downloaded CloudFreed.
-
Run the following command to install dependencies:
npm ialternatively, you can use:
npm install
CloudFreed can be used either through command line examples or via its API interface.
After installing dependencies, you can run the example scripts:
node example.js cf-challengeAvailable examples:
- cf-challenge
- cf-challenge-iuam (I am under attack mode)
- turnstile
- cloudflare-invisible
- recaptcha-invisible
You can also run CloudFreed as an API server:
- Start the API server:
node api.js -k YOUR_CLIENT_KEYAvailable options:
-k, --clientKey: Client API key (required)-m, --maxTasks: Maximum concurrent tasks (default: 1)-p, --port: Server port to listen (default: 3000)-h, --host: Server host to listen (default: localhost)-t, --timeout: Timeout per task in seconds (default: 60)
- Create a new task:
POST http://localhost:3000/createTask
{
"clientKey": "YOUR_CLIENT_KEY",
"type": "CloudflareChallenge",
"url": "www.example.com",
"userAgent": "YOUR_USER_AGENT",
"proxy": {
"scheme": "socks5",
"host": "127.0.0.1",
"port": 1080
}
}
Response Example:
{
"taskId": "m7dobozwh6gucqy29dk"
}
- Get task results:
POST http://localhost:3000/getTaskResult
{
"clientKey": "YOUR_CLIENT_KEY",
"taskId": "YOUR_TASK_ID"
}
Response Example:
{
"status": "completed",
"result": {
"success": true,
"code": 200,
"response": "<cf_clearance_or_token>",
"data": {
"type": "CloudflareChallenge",
"url": "www.example.com",
"timeout": 60,
"userAgent": "YOUR_USER_AGENT"
}
}
}
CloudFreed is intended for educational and research purposes only. Please use it responsibly and respect the terms of service of the websites you visit.