🤖AWS WAF Captcha Proxyless

AWS WAF Solver Task (Solved with our in-house proxies) & Required Parameters

Rest API Endpoint: https://captcha.datalabs.net/createTask

Creating The Task

POST https://captcha.datalabs.net/createTask
Host: captcha.datalabs.net
Content-Type: application/json

{
  "clientKey": "DATALABS_API_KEY",
  "task": {
    "type": "AntiAwsWafTaskProxyLess",
    "websiteURL": "https://efw47fpad9.execute-api.us-east-1.amazonaws.com/latest"
    "awsKey": "AQIDAHjcYu/GjX+QlghicBg......shMIKvZswZemrVVqA==",
    "awsIv": "CgAAFDIlckAAAAid",
    "awsContext": "7DhQfG5CmoY90ZdxdHCi8WtJ3z......njNKULdcUUVEtxTk=",
    "awsChallengeJS": "https://41bcdd4fb3cb.610cd090.us-east-1.token.awswaf.com/41bcdd4fb3cb/0d21de737ccb/cd77baa6c832/challenge.js"
    },
}

Task Parameter Table

ParametersRequiredDescription

type

true

AntiAwsWafTaskProxyLess

websiteURL

true

The website address in which you're solving the captcha for.

awsKey

false

Required to be sent only when the page returns a status code of 405 or 202.

awsIv

false

Required to be sent only when the page returns a status code of 405 or 202.

awsContext

false

Required to be sent only when the page returns a status code of 405 or 202.

awsChallengeJS

false

Required to be sent only when the page returns a status code of 405 or 202.

Task Created Response

{
  "errorId":0,
  "taskId":997993082
}
ParametersDescription

errorId

0: Without error. 1: Error with request.

errorCode

Short code for error type.

errorDescription

More detailed description of the error that occurred.

taskId

Task ID, provided for synchronous tasks to be pushed to /getTaskResult

Retrieving the Solution

POST https://captcha.datalabs.net/getTaskResult
Host: captcha.datalabs.net
Content-Type: application/json

{
  "clientKey": "DATALABS_API_KEY",
  "taskId": "997993082"
}

Successful Solution Response

{
  "errorId":0,
  "status":"ready",
  "solution": {
    "cookie": "223d1f60-0e9f-4238-ac0a-e766b15a778e:EQoAf0APpGIKAAAA:AJam3OWp..."
  }
}
ParametersDescription

cookie

The solutions cookie result.

Last updated