CAPSOLVER

AWS WAF Solucionador de captcha

awswaf

¿Qué es AWS WAF

La solución de resolución de captchas impulsada por IA de CapSolver está diseñada específicamente para la eficiencia, permitiendo un manejo sin interrupciones de los captchas de AWS WAF durante el raspado de datos públicos. Alimentada por tecnología de IA avanzada, garantiza una recolección de datos ininterrumpida y ayuda a las empresas a lograr una automatización eficiente y confiable.

AWS WAF La mejor solución de resolución: CapSolver

CapSolver es el solucionador de AWS WAF más económico y rápido para evadir el AWS WAF.

CapSolver utiliza algoritmos de resolución de Captcha impulsados por IA, lo que resulta en una velocidad de resolución más rápida y costos significativamente reducidos, brindando una excelente experiencia para los desarrolladores.

Altamente confiable

Tenemos la velocidad de actualización más rápida entre proveedores similares.

Sin riesgos

Solo pagas por los captchas resueltos. Una revisión de cooperación estricta prohibirá cualquier actividad ilegal.

AI impulsado

Utilizamos IA para la resolución completamente automatizada de captchas.

Compatibilidad

CapSolver funciona con las API de servicios populares de reconocimiento manual de captchas.

Soluciones diversas

CapSolver ofrece servicio de API y extensión en Chrome.

Confiable

Más de 1000 plataformas han integrado nuestra API.

El método para resolver problemas de captcha con CapSolver es el siguiente:

Después de usar el servicio de CapSolver, cuando los usuarios encuentran problemas de captcha, envían solicitudes a CapSolver. Al recibir la solicitud para el problema de captcha correspondiente, CapSolver resuelve eficientemente y rápidamente el problema de captcha para los usuarios.

</> API del solucionador de AWS WAF:

(Más bibliotecas de terceros en github)
SolucionesPrecios
AWS WAF

AntiAwsWafTask

AntiAwsWafTaskProxyLess

$2/1000 requests
AWS WAF Image Recognition

AWSWafClassification

$0.6/1000 requests

Cómo evadir AWS WAF - Guía de API

El servicio de resolución automática de captchas de CapSolver puede pasar fácilmente AWS WAF. CapSolver ofrece dos servicios de resolución de captchas que te ayudan a resolver AWS WAF.

Uno de los servicios es utilizar CapSolver's API El otro servicio es descargar la extensión en Chrome extensión en Chrome

Registrándose en CapSolver y obteniendo nuestros servicios de captcha

Step 1 : Creating a Task

To solve AWS WAF, you first need to create a task using the createTask method.

Here's the structure of the task object:

  • type: Required. This should be AntiAwsWafTask or AntiAwsWafTaskProxyLess.
  • websiteURL: Required. The url of the page that returns captcha related information.
  • proxy: Optional. If you're using a proxy, you can include it here.
  • awsKey: Optional. The key value returned by the captcha page
  • awsIv: Optional. The iv value returned by the captcha page
  • awsContext: Optional. The context value returned by the captcha page
  • awsChallengeJS: Optional. The challenge.js link returned by the captcha page
  • awsApiJs: Optional. The jsapi.js link returned by the captcha page
  • awsProblemUrl: Optional. The problem endpoint url containing keywords like problem, num_solutions_required, etc.
  • awsApiKey: Optional. The api_key value of the problem endpoint
  • awsExistingToken: Optional. The aws-waf-token used for the last verification

Here's an example request:

json Copy
{
  "clientKey": "YOUR_API_KEY",
  "task": {
    "type": "AntiAwsWafTask", // AntiAwsWafTaskProxyLess
    "websiteURL": "https://efw47fpad9.execute-api.us-east-1.amazonaws.com/latest", // Required
    "awsKey": "AQIDAHjcYu/GjX+QlghicBg......shMIKvZswZemrVVqA==", // Optional
    "awsIv": "CgAAFDIlckAAAAid", // Optional
    "awsContext": "7DhQfG5CmoY90ZdxdHCi8WtJ3z......njNKULdcUUVEtxTk=", // Optional
    "awsChallengeJS": "https://41bcdd4fb3cb.610cd090.us-east-1.token.awswaf.com/41bcdd4fb......a6c832/challenge.js", // Optional
    "awsApiJs": "https://9175c2fd4189.edge.captcha-sdk.awswaf.com/9175c2fd4189/jsapi.js", // Optional
    "awsProblemUrl": "https://ait...awswaf.com/ait/ait/ait/problem?kind=visual&...&problem=gridcaptcha-5-0.1-0&num_solutions_required=2", // Optional
    "awsApiKey": "Sps+L2gV...", // Optional
    "awsExistingToken": "5na16dg6-216a-...", // Optional
    "proxy": "http:ip:port:user:pass" // socks5:ip:port:user:pass
  }
}

Once the task is successfully submitted, you'll receive a Task ID in the response:

json Copy
{
  "errorId": 0,
  "errorCode": "",
  "errorDescription": "",
  "taskId": "61138bb6-19fb-11ec-a9c8-0242ac110006"
}

Step 2 : Getting Results

Once you have the Task ID, you can use it to retrieve the solution. Submit the Task ID with the getTaskResult method. The results should be ready within an interval of 1s to 10s.

Here's an example request:

json Copy
{
  "clientKey": "YOUR_API_KEY",
  "taskId": "61138bb6-19fb-11ec-a9c8-0242ac110006"
}

The response will include the solution token:

json Copy
{
  "errorId": 0,
  "taskId": "61138bb6-19fb-11ec-a9c8-0242ac110006",
  "status": "ready",
  "solution": {
    "cookie": "223d1f60-0e9f-4238-ac0a-e766b15a778e:EQoAf0APpGIKAAAA:AJam3OWpff1VgKIJxH4lGMMHxPVQ0q0R3CNtgcMbR4VvnIBSpgt1Otbax4kuqrgkEp0nFKanO5oPtwt9+Butf7lt0JNe4rZQwZ5IrEnkXvyeZQPaCFshHOISAFLTX7AWHldEXFlZEg7DjIc="
  }
}

Resolviendo AWS WAF utilizando CapSolver SDK

Captcha populares admitidos

Utiliza fácilmente CapSolver para resolver CAPTCHAs

Nos aseguramos de que integrar nuestros productos en tu infraestructura de sea lo más sencillo posible. Con soporte para múltiples lenguajes y ejemplos de código listos para usar, te garantizamos un inicio rápido y fácil para tu proyecto de web.

Documentación para desarrolladores

# pip install --upgrade capsolver
# export CAPSOLVER_API_KEY='...'

import capsolver

# capsolver.api_key = "..."
solution = capsolver.solve({
    "type": "AntiAwsWafTask",
    "websiteURL": "https://efw47fpad9.execute-api.us-east-1.amazonaws.com/latest",
    "proxy": "ip:port:user:pass"
})
package main

import (
    "fmt"
    capsolver_go "github.com/capsolver/capsolver-go"
    "log"
)

func main() {
    // first you need to install sdk
    //go get github.com/capsolver/capsolver-go

    capSolver := capsolver_go.CapSolver{ApiKey: "..."}
    solution, err := capSolver.Solve(map[string]any{
        "type": "AntiAwsWafTask",
        "websiteURL": "https://efw47fpad9.execute-api.us-east-1.amazonaws.com/latest",
        "proxy":"ip:port:user:pass",
    })
    if err != nil {
        log.Fatal(err)
        return
    }
    fmt.Println(solution)
}

Cómo evadirExtensión de evasión de AWS WAF

Captcha Solving Extension supported in Chrome and Firefox browsers
Nuestra extensión de navegador le permite resolver automáticamente el reconocimiento de imágenes o el Reconocimiento Óptico de Caracteres (OCR).

Prueba gratuita

Reconocer más de 15 tipos de captcha