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
IPGeoLocation — Recupera informazioni di geolocalizzazione IP | Kitploit
Strumenti/GitHubGitHub/maldevel/ipgeolocation
OSINT (Open Source Intelligence)RicognizioneRaccolta Informazioni
GitHubmaldevel/ipgeolocation

IPGeoLocation

Recupera informazioni di geolocalizzazione IP

Vedi Repository
9803489 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

IPGeoLocation

====

  • Uno strumento per recuperare informazioni di geolocalizzazione IP
  • Alimentato da ip-api

Requisiti

  • Python 3.x
  • termcolor
  • colorama

Download/Installazione

  • git clone https://github.com/maldevel/IPGeoLocation
  • pip3 install -r requirements.txt --user

se pip3 è mancante:

  • apt-get install python3-setuptools
  • easy_install3 pip
  • pip3 install -r requirements.txt

Caratteristiche

  • Recupera la geolocalizzazione di IP o Dominio.
  • Recupera la geolocalizzazione del tuo IP.
  • Recupera la geolocalizzazione per IP o Domini caricati da file. Ogni destinazione su una nuova riga.
  • Definisci la tua stringa User Agent personalizzata.
  • Seleziona stringhe User-Agent casuali da file. Ogni stringa User Agent su una nuova riga.
  • Supporto proxy.
  • Seleziona proxy casuale da file. Ogni URL proxy su una nuova riga.
  • Apri la geolocalizzazione IP in Google Maps usando il browser predefinito.
  • Esporta i risultati in formato csv, xml e txt.

Informazioni di geolocalizzazione

  • ASN
  • Città
  • Paese
  • Codice Paese
  • ISP
  • Latitudine
  • Longitudine
  • Organizzazione
  • Codice Regione
  • Nome Regione
  • Fuso Orario
  • Codice Postale

Utilizzo

root@kitploit:~
$ ./ip2geolocation.py
usage: ipgeolocation.py [-h] [-m] [-t TARGET] [-T file] [-u User-Agent]
                        [-U file] [-g] [--noprint] [-v] [--nolog] [-x PROXY]
                        [-X file] [-e file] [-ec file] [-ex file]

IPGeolocation 2.0.4

--[ Retrieve IP Geolocation information from ip-api.com
--[ Copyright (c) 2015-2016 maldevel (@maldevel)
--[ ip-api.com service will automatically ban any IP addresses doing over 150 requests per minute.

optional arguments:
  -h, --help            show this help message and exit
  -m, --my-ip           Get Geolocation info for my IP address.
  -t TARGET, --target TARGET
                        IP Address or Domain to be analyzed.
  -T file, --tlist file
                        A list of IPs/Domains targets, each target in new line.
  -u User-Agent, --user-agent User-Agent
                        Set the User-Agent request header (default: IP2GeoLocation 2.0.3).
  -U file, --ulist file
                        A list of User-Agent strings, each string in new line.
  -g                    Open IP location in Google maps with default browser.
  --noprint             IPGeolocation will print IP Geolocation info to terminal. It is possible to tell IPGeolocation n
ot to print results to terminal with this option.
  -v, --verbose         Enable verbose output.
  --nolog               IPGeolocation will save a .log file. It is possible to tell IPGeolocation not to save those log
files with this option.
  -x PROXY, --proxy PROXY
                        Setup proxy server (example: http://127.0.0.1:8080)
  -X file, --xlist file
                        A list of proxies, each proxy url in new line.
  -e file, --txt file   Export results.
  -ec file, --csv file  Export results in CSV format.
  -ex file, --xml file  Export results in XML format.

Esempi

Recupera la geolocalizzazione del tuo IP

  • ./ip2geolocation.py -m

Recupera geolocalizzazione IP

  • ./ip2geolocation.py -t x.x.x.x

Recupera geolocalizzazione dominio

  • ./ip2geolocation.py -t example.com

Non salvare file .log

  • ./ip2geolocation.py -t example.com --nolog

Stringa User Agent personalizzata

  • ./ip2geolocation.py -t x.x.x.x -u "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko"

Utilizzo proxy

  • ./ip2geolocation.py -t x.x.x.x -x http://127.0.0.1:8080

Utilizzo proxy casuale

  • ./ip2geolocation.py -t x.x.x.x -X /path/to/proxies/filename.txt

Scegli stringa User-Agent casualmente

  • ./ip2geolocation.py -t x.x.x.x -U /path/to/user/agent/strings/filename.txt

Recupera geolocalizzazione IP e apri posizione in Google Maps con browser predefinito

  • ./ip2geolocation.py -t x.x.x.x -g

Esporta risultati in file CSV

  • ./ip2geolocation.py -t x.x.x.x --csv /path/to/results.csv

Esporta risultati in file XML

  • ./ip2geolocation.py -t x.x.x.x --xml /path/to/results.xml

Esporta risultati in file TXT

  • ./ip2geolocation.py -t x.x.x.x -e /path/to/results.txt

Recupera geolocalizzazione IP per molti obiettivi

  • ./ip2geolocation.py -T /path/to/targets/targets.txt

Recupera geolocalizzazione IP per molti obiettivi ed esporta risultati in xml

  • ./ip2geolocation.py -T /path/to/targets/targets.txt --xml /path/to/results.xml

Non stampare risultati sul terminale

  • ./ip2geolocation.py -m -e /path/to/results.txt --noprint
Scarica lo strumento