
AWS WAF Solver, reverse completo implementato al 100% in Python e Golang.
Questo progetto fornisce un solver basato su Golang e Python per la sfida AWS WAF. Supporta sia il tipo "token" / "Invisible" che il tipo "Captcha" utilizzando gemini
Metti una stella al repository se lo trovi utile! Il tuo supporto aiuta a migliorare il progetto. ❤️
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
}
Vedi main.go per un esempio completo
from awswaf.aws import AwsWaf
token = AwsWaf(goku, endpoint, "www.binance.com")()
# the token is the aws-waf-token cookie
Vedi main.py per un esempio completo
Questo progetto è concesso in licenza sotto la MIT License - vedi il file LICENSE per i dettagli.
Questo pacchetto è non ufficiale e non è affiliato a Amazon o AWS. Usalo in modo responsabile e in conformità con i termini di servizio di AWS.