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
IMSI-catcher — Questo programma ti mostra i numeri IMSI dei telefoni cellulari intorno a te. | Kitploit
Strumenti/GitHubGitHub/oros42/imsi-catcher
OSINT (Open Source Intelligence)RicognizioneMappatura della ReteRaccolta InformazioniSicurezza WirelessSicurezza Mobile
GitHuboros42/imsi-catcher

IMSI-catcher

Questo programma ti mostra i numeri IMSI dei telefoni cellulari intorno a te.

Vedi Repository
4.5k9062 mesi 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

IMSI-catcher

Questo programma ti mostra i numeri IMSI, il paese, il brand e l'operatore dei telefoni cellulari intorno a te.

/!\ Questo programma è stato creato per capire come funziona la rete GSM. Non per hacking dannoso !

screenshot0

Cosa ti serve

1 PC con Gnu/Linux. Testato con :

  • debian 10
  • Ubuntu 20.04/LinuxMint 22.2+
  • Kali 2025+

1 ricevitore SDR. Testato con :

  • Chiavetta USB DVB-T (RTL2832U) con antenna (meno di 15$)
  • Telefono OsmocomBB
  • HackRF
  • BladeRF

Installazione

root@kitploit:~
git clone https://github.com/Oros42/IMSI-catcher.git
cd IMSI-catcher

oppure

root@kitploit:~
wget https://github.com/Oros42/IMSI-catcher/archive/master.zip && unzip -q master.zip
cd IMSI-catcher-master
root@kitploit:~
sudo apt install python3-numpy python3-scipy python3-scapy gr-gsm

Attenzione : non usare python 3.9 (bug di ctypes)!

Importlib vs Imp

A partire da Python 3.1, Imp è sostituito da importlib. Imp è deprecato in Python 3.11, con i nuovi requisiti soddisfatti come segue.

root@kitploit:~
apt install python3-pip
pip install importlib

Installare gr-gsm con Docker (non consigliato)

root@kitploit:~
sudo xhost +local:docker
docker pull atomicpowerman/imsi-catcher
docker run -ti --net=host -e DISPLAY=$DISPLAY --privileged -v /dev/bus/usb:/dev/bus/usb  atomicpowerman/imsi-catcher bash

Esegui tutti i grgsm_* in questo docker.

Utilizzo

Usiamo grgsm_livemon per decodificare i segnali GSM e simple_IMSI-catcher.py per trovare gli IMSI.

root@kitploit:~
python3 simple_IMSI-catcher.py -h
root@kitploit:~
Usage: simple_IMSI-catcher.py: [options]

Options:
  -h, --help            show this help message and exit
  -a, --alltmsi         Show TMSI who haven't got IMSI (default  : false)
  -i IFACE, --iface=IFACE
                        Interface (default : lo)
  -m IMSI, --imsi=IMSI  IMSI to track (default : None, Example:
                        123456789101112 or "123 45 6789101112")
  -p PORT, --port=PORT  Port (default : 4729)
  -s, --sniff           sniff on interface instead of listening on port
                        (require root/suid access)
  -w SQLITE, --sqlite=SQLITE
                        Save observed IMSI values to specified SQLite file
  -t TXT, --txt=TXT     Save observed IMSI values to specified TXT file
  -z, --mysql           Save observed IMSI values to specified MYSQL DB (copy
                        .env.dist to .env and edit it)

Apri 2 terminali.

Nel terminale 1

root@kitploit:~
sudo python3 simple_IMSI-catcher.py -s

Nel terminale 2

root@kitploit:~
grgsm_livemon

Ora, cambia la frequenza finché non visualizzi, nel terminale, qualcosa del genere :

root@kitploit:~
15 06 21 00 01 f0 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b
25 06 21 00 05 f4 f8 68 03 26 23 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b
49 06 1b 95 cc 02 f8 02 01 9c c8 03 1e 57 a5 01 79 00 00 1c 13 2b 2b

Wireshark

Puoi osservare i pacchetti GSM con wireshark.

root@kitploit:~
sudo apt install wireshark
sudo wireshark -k -Y '!icmp && gsmtap' -i lo

Trovare le frequenze

root@kitploit:~
grgsm_scanner
root@kitploit:~
ARFCN:  974, Freq:  925.0M, CID:     2, LAC:   1337, MCC: 208, MNC:  20, Pwr: -41
ARFCN:  976, Freq:  925.4M, CID:  4242, LAC:   1007, MCC: 208, MNC:  20, Pwr: -45

Ora, puoi impostare la frequenza per grgsm_livemon :

root@kitploit:~
grgsm_livemon -f 925.4M

Oppure, per hackrf, scarica il tool kalibrate-hackrf così:

root@kitploit:~
sudo apt-get install automake autoconf libhackrf-dev
git clone https://github.com/scateu/kalibrate-hackrf
cd kalibrate-hackrf/
./bootstrap
./configure
make
sudo make install

Esegui

root@kitploit:~
kal -s GSM900
root@kitploit:~
kal: Scanning for GSM-900 base stations.
GSM-900:
	chan:   14 (937.8MHz + 10.449kHz)	power: 3327428.82
	chan:   15 (938.0MHz + 4.662kHz)	power: 3190712.41
...

Registrare i dati in mysql

Usa db-example.sql per creare il tuo DB.

root@kitploit:~
cp .env.dist .env
nano .env
# set your config
sudo apt install python-decouple python3-mysqldb
root@kitploit:~
sudo python3 simple_IMSI-catcher.py -s --mysql

scan-and-livemon (non più utilizzato)

Scansiona le frequenze e ascolta la prima trovata :
Nel terminale 1

root@kitploit:~
python3 scan-and-livemon

Nel terminale 2

root@kitploit:~
python3 simple_IMSI-catcher.py

Collegamenti

Installazione di Gr-Gsm : https://osmocom.org/projects/gr-gsm/wiki/Installation e https://github.com/velichkov/gr-gsm
Frequenza : http://www.worldtimezone.com/gsm.html e https://fr.wikipedia.org/wiki/Global_System_for_Mobile_Communications
Mobile Network Code : https://en.wikipedia.org/wiki/Mobile_Network_Code
Scapy : http://secdev.org/projects/scapy/doc/usage.html
IMSI : https://fr.wikipedia.org/wiki/IMSI
Realtek RTL2832U : https://osmocom.org/projects/sdr/wiki/rtl-sdr e http://doc.ubuntu-fr.org/rtl2832u e http://doc.ubuntu-fr.org/rtl-sdr

Dona

Per sostenere il mio lavoro, una mancia sarebbe gradita ;-)
https://liberapay.com/Oros/

Scarica lo strumento