
AWS WAF Solver。100% Python と Golang で実装された完全リバースエンジニアリングです。
このプロジェクトは、AWS WAF チャレンジ用の Golang および Python ベースのソルバーを提供します。gemini を使用して、「token」/「Invisible」タイプと「Captcha」タイプの両方をサポートします。
便利だと感じられたら、リポジトリにスターを付けてください!あなたのサポートがプロジェクトの改善に役立ちます。❤️
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
}
完全な例については main.go を参照してください
from awswaf.aws import AwsWaf
token = AwsWaf(goku, endpoint, "www.binance.com")()
# the token is the aws-waf-token cookie
完全な例については main.py を参照してください
このプロジェクトは MIT ライセンス の下でライセンスされています。詳細は LICENSE ファイルを参照してください。
このパッケージは非公式であり、Amazon または AWS とは提携していません。責任を持って、AWS の利用規約に従って使用してください。