Skip to content
KitploitKITPLOIT
HerramientasBlog
Enviar
HerramientasBlog
Enviar

¡Herramientas de Hacking, PenTest y Ciberseguridad para tu Arsenal de Seguridad!

Kitploit es un directorio de herramientas de hacking, ciberseguridad y pentesting. Descubre las últimas actualizaciones de proyectos para encontrar vulnerabilidades, analizar sistemas, automatizar pruebas y fortalecer tu seguridad.

··Feeds·Contacto·Privacidad·© 2026 Kitploit

Directorio de Herramientas

Categorías

Ver todas las categorías
Loading categories
awswaf — AWS WAF Solver, reversión completa implementada en 100% Python y Golang. | Kitploit
Herramientas/GitHubGitHub/xkiian/awswaf
Evasión de IDS/IPSExplotación de Aplicaciones WebEvasión de WAFSeguridad WebAnti-BotBypass de CAPTCHA
GitHubxkiian/awswaf

awswaf

AWS WAF Solver, reversión completa implementada en 100% Python y Golang.

Ver Repositorio
35166hace 1 añoRevisado por Kitploit

Más Populares

Ver todos →

Descubre las herramientas más usadas por nuestra comunidad.

Explora todas las herramientas

Explora nuestra colección de herramientas

Ver todas las herramientas →
Compartir

Solucionador de AWS WAF (Amazon Web Services Web Application Firewall)

wakatime

Resumen

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


⭐️ Muestra tu apoyo

Por favor, da estrella al repositorio si te resulta útil. ¡Tu apoyo ayuda a mejorar el proyecto! ❤️


Uso

Golang

root@kitploit:~
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


Python

root@kitploit:~
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


Licencia

Este proyecto está licenciado bajo la Licencia MIT - consulte el archivo LICENSE para más detalles.


Historial de estrellas

Star History Chart

Aviso legal

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.

Descargar herramienta