CVE-2025-8671
This commit is contained in:
Francisco Santibañez
2025-08-18 16:41:52 -06:00
parent d16008a7d1
commit cb6408ad12
2 changed files with 4 additions and 4 deletions

View File

@@ -30,7 +30,7 @@ def print_banner():
{Style.RESET_ALL}
"""
print(banner)
print(f"{Fore.YELLOW}[ HTTP/2 DDoS Heuristic Tester | CVE-2023-44487 & CVE-2025-25063 ]{Style.RESET_ALL}\n")
print(f"{Fore.YELLOW}[ HTTP/2 DDoS Heuristic Tester | CVE-2023-44487 & CVE-2025-8671 ]{Style.RESET_ALL}\n")
print(f"{Fore.WHITE}[ m10sec@proton.me | m10sec 2025 ]{Style.RESET_ALL}\n")
def check_http2_support(host, port=443, tls=True, timeout=5.0):
"""Devuelve True si el host negocia HTTP/2 vía ALPN."""

View File

@@ -4,7 +4,7 @@ Pruebas automáticas para detectar heurísticamente la presencia de vulnerabilid
Desarrollado por **m10sec**.
- **CVE-2023-44487 Rapid Reset**
- **CVE-2025-25063 MadeYouReset**
- **CVE-2025-8671 MadeYouReset**
- **Comparativa combinada**
Incluye **menú interactivo**, ejecución vía **CLI**, soporte para **archivos TXT con múltiples targets** y exportación en **JSON/CSV**.
@@ -16,8 +16,8 @@ Incluye **menú interactivo**, ejecución vía **CLI**, soporte para **archivos
Clona el repositorio y crea un entorno virtual:
```bash
git clone https://github.com/moften/CVE-2025-25063-MadeYouReset-HTTP-2-DDoS.git
cd CVE-2025-25063-MadeYouReset-HTTP-2-DDoS
git clone https://github.com/moften/CVE-2025-8671-MadeYouReset-HTTP-2-DDoS
cd CVE-2025-8671-MadeYouReset-HTTP-2-DDoS
python3 -m venv venv
source venv/bin/activate
```