{"id":28392774,"url":"https://github.com/zetxtech/cloudfreed","last_synced_at":"2025-06-26T07:31:00.011Z","repository":{"id":282268702,"uuid":"897277982","full_name":"zetxtech/cloudfreed","owner":"zetxtech","description":"Forked from: https://github.com/akmal-abar/CloudFreed-CloudFlare-solver-bypass","archived":false,"fork":false,"pushed_at":"2025-03-14T14:18:32.000Z","size":2269,"stargazers_count":73,"open_issues_count":1,"forks_count":11,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-01T02:08:22.058Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zetxtech.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-02T10:59:35.000Z","updated_at":"2025-05-15T19:30:56.000Z","dependencies_parsed_at":"2025-03-13T17:48:40.822Z","dependency_job_id":"eac1b97e-70e0-4890-87c2-dce5e02a861e","html_url":"https://github.com/zetxtech/cloudfreed","commit_stats":null,"previous_names":["zetxtech/cloudfreed"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zetxtech/cloudfreed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zetxtech%2Fcloudfreed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zetxtech%2Fcloudfreed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zetxtech%2Fcloudfreed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zetxtech%2Fcloudfreed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zetxtech","download_url":"https://codeload.github.com/zetxtech/cloudfreed/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zetxtech%2Fcloudfreed/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262022044,"owners_count":23246240,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-05-31T15:08:13.319Z","updated_at":"2025-06-26T07:31:00.003Z","avatar_url":"https://github.com/zetxtech.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv style=\"text-align:center;\"\u003e\n  \u003cimg src=\"html/CloudFreed.png\" alt=\"CloudFreed Logo\" width=\"48\" style=\"float:left; margin-right:10px;\"\u003e\n  \u003ch1\u003eCloudFreed V4\u003c/h1\u003e\n\u003c/div\u003e\n\nCloudFreed 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.\n\n## Installation\n\nBefore using CloudFreed, ensure that you have Node.js installed on your system. If not, you can download and install it from [Node.js website](https://nodejs.org/).\n\nOnce Node.js is installed, follow these steps to set up CloudFreed:\n\n1. Clone or download the CloudFreed repository to your local machine, you can get the latest download [here](https://github.com/Akmal-CloudFreed/CloudFreed-CloudFlare-bypass/archive/refs/heads/main.zip).\n2. Extract the file.\n3. Open a terminal and navigate to the directory where you have cloned/downloaded CloudFreed.\n4. Run the following command to install dependencies:\n\n   ```\n   npm i\n   ```\n\n   alternatively, you can use:\n\n   ```\n   npm install\n   ```\n\n## Usage\n\nCloudFreed can be used either through command line examples or via its API interface.\n\n### Command Line Usage\n\nAfter installing dependencies, you can run the example scripts:\n\n```bash\nnode example.js cf-challenge\n```\n\nAvailable examples:\n\n- cf-challenge\n- cf-challenge-iuam (I am under attack mode)\n- turnstile\n- cloudflare-invisible\n- recaptcha-invisible\n\n### API Usage\n\nYou can also run CloudFreed as an API server:\n\n1. Start the API server:\n\n```bash\nnode api.js -k YOUR_CLIENT_KEY\n```\n\nAvailable options:\n- `-k, --clientKey`: Client API key (required)\n- `-m, --maxTasks`: Maximum concurrent tasks (default: 1)\n- `-p, --port`: Server port to listen (default: 3000)\n- `-h, --host`: Server host to listen (default: localhost)\n- `-t, --timeout`: Timeout per task in seconds (default: 60)\n\n2. Create a new task:\n\n```\nPOST http://localhost:3000/createTask\n\n{\n  \"clientKey\": \"YOUR_CLIENT_KEY\",\n  \"type\": \"CloudflareChallenge\",\n  \"url\": \"www.example.com\",\n  \"userAgent\": \"YOUR_USER_AGENT\",\n  \"proxy\": {\n    \"scheme\": \"socks5\",\n    \"host\": \"127.0.0.1\",\n    \"port\": 1080\n  }\n}\n```\n\nResponse Example:\n\n```\n{\n    \"taskId\": \"m7dobozwh6gucqy29dk\"\n}\n```\n\n3. Get task results:\n\n```\nPOST http://localhost:3000/getTaskResult\n\n{\n  \"clientKey\": \"YOUR_CLIENT_KEY\",\n  \"taskId\": \"YOUR_TASK_ID\"\n}\n```\n\nResponse Example:\n\n```\n{\n  \"status\": \"completed\",\n  \"result\": {\n    \"success\": true,\n    \"code\": 200,\n    \"response\": \"\u003ccf_clearance_or_token\u003e\",\n    \"data\": {\n      \"type\": \"CloudflareChallenge\",\n      \"url\": \"www.example.com\",\n      \"timeout\": 60,\n      \"userAgent\": \"YOUR_USER_AGENT\"\n    }\n  }\n}\n```\n\n## Note\n\nCloudFreed is intended for educational and research purposes only. Please use it responsibly and respect the terms of service of the websites you visit.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzetxtech%2Fcloudfreed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzetxtech%2Fcloudfreed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzetxtech%2Fcloudfreed/lists"}