
AWS WAF Solver, reversión completa implementada en 100% Python y Golang.
Este proyecto proporciona un solucionador basado en Golang y Python para el desafío de AWS WAF. Soporta tanto el tipo "token" / "Invisible" como el tipo "Captcha" usando gemini
Por favor, da estrella al repositorio si te resulta útil. ¡Tu apoyo ayuda a mejorar el proyecto! ❤️
package main
import (
"awswaf/internal/aws"
"log"
)
func main() {
// host & gokuProps are obtained from the initial response
// and can be extracted using aws.Extract(body)
// proxy can be "" to use no proxy at all
waf, err := aws.NewAwsWaf(
host,
"www.binance.com",
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36",
gokuProps, proxy,
)
if err != nil {
log.Println(err)
return
}
token, err := waf.Run()
if err != nil {
log.Println(err)
return
}
// the token is the aws-waf-token cookie
}
Vea main.go para un ejemplo completo
from awswaf.aws import AwsWaf
token = AwsWaf(goku, endpoint, "www.binance.com")()
# the token is the aws-waf-token cookie
Vea main.py para un ejemplo completo
Este proyecto está licenciado bajo la Licencia MIT - consulte el archivo LICENSE para más detalles.
Este paquete no es oficial y no está afiliado a Amazon ni AWS. Úselo de manera responsable y de acuerdo con los términos de servicio de AWS.