
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 की सेवा की शर्तों के अनुसार उपयोग करें।