CyberSiARA
CyberSiARA is a bot detection and CAPTCHA service that uses slide-to-verify challenges to distinguish human users from automated traffic. It is deployed on a variety of websites for account registration, login, and transaction protection. The challenge requires a user to slide a puzzle piece into position, and upon successful completion, a verification token is generated for server-side validation.
Supported Types
Section titled “Supported Types”| Type | Proxy Required | Description |
|---|---|---|
CyberSiARAToken | Yes | Solves the challenge using your proxy. Use when the target site validates the solver’s IP. |
CyberSiARATokenProxyLess | No | Solves the challenge without a proxy. Recommended for most use cases. |
Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
type | string | Yes | CyberSiARAToken or CyberSiARATokenProxyLess |
websiteURL | string | Yes | The URL of the page containing the CyberSiARA challenge |
websiteKey | string | Yes | The site key found in the CyberSiARA widget configuration (the MasterUrlId or API key parameter) |
Proxy Parameters
Section titled “Proxy Parameters”Required when using the CyberSiARAToken type:
| Parameter | Type | Required | Description |
|---|---|---|---|
proxyType | string | Yes | http, socks4, or socks5 |
proxyAddress | string | Yes | Proxy IP or hostname |
proxyPort | integer | Yes | Proxy port |
proxyLogin | string | No | Proxy username |
proxyPassword | string | No | Proxy password |
Create Task Request
Section titled “Create Task Request”{ "clientKey": "YOUR_API_KEY", "task": { "type": "CyberSiARATokenProxyLess", "websiteURL": "https://example.com/register", "websiteKey": "tpMOiAanxossiMAzBckquzAh" }}With proxy:
{ "clientKey": "YOUR_API_KEY", "task": { "type": "CyberSiARAToken", "websiteURL": "https://example.com/register", "websiteKey": "tpMOiAanxossiMAzBckquzAh", "proxyType": "http", "proxyAddress": "1.2.3.4", "proxyPort": 8080, "proxyLogin": "user", "proxyPassword": "pass" }}Response
Section titled “Response”{ "errorId": 0, "taskId": "550e8400-e29b-41d4-a716-446655440000", "status": "processing"}Solution Object
Section titled “Solution Object”{ "token": "P3FnEiV2y8oScEj..."}| Field | Type | Description |
|---|---|---|
token | string | The CyberSiARA verification token to submit with the form |
How to Use
Section titled “How to Use”- Find the CyberSiARA site key on the target page. Look for the
MasterUrlIdparameter in the CyberSiARA script initialization or in network requests to the CyberSiARA API endpoints. - Submit the task and poll for the solution.
- Use the returned
tokenin the form submission. The token is typically submitted as a hidden field or passed to the CyberSiARA callback function. - Submit the form. The server will validate the token against the CyberSiARA verification service.
Code Examples
Section titled “Code Examples”Python
Section titled “Python”import requestsimport time
API_KEY = "YOUR_API_KEY"
response = requests.post("https://api.ucaptcha.net/createTask", json={ "clientKey": API_KEY, "task": { "type": "CyberSiARATokenProxyLess", "websiteURL": "https://example.com/register", "websiteKey": "tpMOiAanxossiMAzBckquzAh" }})task_id = response.json()["taskId"]
while True: result = requests.post("https://api.ucaptcha.net/getTaskResult", json={ "clientKey": API_KEY, "taskId": task_id }).json() if result["status"] == "ready": token = result["solution"]["token"] print("Solution:", token)
# Submit the form with the CyberSiARA token form_data = { "cybersiara_token": token, "email": "user@example.com", "password": "securepassword" } response = requests.post("https://example.com/register", data=form_data) print("Status:", response.status_code) break elif result["status"] == "failed": print("Error:", result.get("errorDescription")) break time.sleep(5)JavaScript
Section titled “JavaScript”const API_KEY = "YOUR_API_KEY";
const { taskId } = await fetch("https://api.ucaptcha.net/createTask", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ clientKey: API_KEY, task: { type: "CyberSiARATokenProxyLess", websiteURL: "https://example.com/register", websiteKey: "tpMOiAanxossiMAzBckquzAh" } })}).then(r => r.json());
while (true) { const result = await fetch("https://api.ucaptcha.net/getTaskResult", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ clientKey: API_KEY, taskId }) }).then(r => r.json());
if (result.status === "ready") { console.log("Solution:", result.solution.token); break; } else if (result.status === "failed") { console.error("Error:", result.errorDescription); break; } await new Promise(r => setTimeout(r, 5000));}# Create the taskcurl -X POST https://api.ucaptcha.net/createTask \ -H "Content-Type: application/json" \ -d '{ "clientKey": "YOUR_API_KEY", "task": { "type": "CyberSiARATokenProxyLess", "websiteURL": "https://example.com/register", "websiteKey": "tpMOiAanxossiMAzBckquzAh" } }'
# Poll for the result (replace TASK_ID with the returned taskId)curl -X POST https://api.ucaptcha.net/getTaskResult \ -H "Content-Type: application/json" \ -d '{ "clientKey": "YOUR_API_KEY", "taskId": "TASK_ID" }'Provider Coverage
Section titled “Provider Coverage”- 2Captcha
Aliases
Section titled “Aliases”No backward-compatible aliases. Use CyberSiARAToken or CyberSiARATokenProxyLess directly.