
AWS WAF Solver, reverse completo implementado em 100% Python e Golang.
Este projeto fornece um solucionador baseado em Golang e Python para o desafio AWS WAF. Suporta tanto o tipo "token" / "Invisível" quanto o tipo "Captcha" usando gemini
Por favor, dê uma estrela no repositório se achá-lo útil! Seu apoio ajuda a melhorar o projeto. ❤️
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
}
Veja main.go para um exemplo completo
from awswaf.aws import AwsWaf
token = AwsWaf(goku, endpoint, "www.binance.com")()
# the token is the aws-waf-token cookie
Veja main.py para um exemplo completo
Este projeto está licenciado sob a Licença MIT - veja o arquivo LICENSE para detalhes.
Este pacote é não oficial e não está afiliado à Amazon ou AWS. Use-o de forma responsável e de acordo com os termos de serviço da AWS.