Skip to content
KitploitKITPLOIT
HerramientasBlog
Enviar
HerramientasBlog
Enviar

¡Herramientas de Hacking, PenTest y Ciberseguridad para tu Arsenal de Seguridad!

Kitploit es un directorio de herramientas de hacking, ciberseguridad y pentesting. Descubre las últimas actualizaciones de proyectos para encontrar vulnerabilidades, analizar sistemas, automatizar pruebas y fortalecer tu seguridad.

··Feeds·Contacto·Privacidad·© 2026 Kitploit

Directorio de Herramientas

Categorías

Ver todas las categorías
Loading categories
IPGeoLocation — Recuperar información de geolocalización IP | Kitploit
Herramientas/GitHubGitHub/maldevel/ipgeolocation
OSINT (Inteligencia de Fuentes Abiertas)ReconocimientoRecopilación de Información
GitHubmaldevel/ipgeolocation

IPGeoLocation

Recuperar información de geolocalización IP

Ver Repositorio
9803482hace 9 añosRevisado por Kitploit

Más Populares

Ver todos →

Descubre las herramientas más usadas por nuestra comunidad.

Explora todas las herramientas

Explora nuestra colección de herramientas

Ver todas las herramientas →
Compartir

IPGeoLocation

====

  • Una herramienta para obtener información de geolocalización IP
  • Desarrollado por ip-api

Requisitos

  • Python 3.x
  • termcolor
  • colorama

Descarga/Instalación

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

si pip3 no está instalado:

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

Características

  • Obtener geolocalización de IP o Dominio.
  • Obtener tu propia geolocalización IP.
  • Obtener geolocalización para IPs o Dominios cargados desde un archivo. Cada objetivo en una nueva línea.
  • Define tu propia cadena de User-Agent personalizada.
  • Seleccionar cadenas de User-Agent aleatorias desde un archivo. Cada cadena de User-Agent en una nueva línea.
  • Soporte de proxy.
  • Seleccionar proxy aleatorio desde un archivo. Cada URL de proxy en una nueva línea.
  • Abrir geolocalización IP en Google Maps usando el navegador predeterminado.
  • Exportar resultados a formato csv, xml y txt.

Información de Geolocalización

  • ASN
  • City
  • Country
  • Country Code
  • ISP
  • Latitude
  • Longtitude
  • Organization
  • Region Code
  • Region Name
  • Timezone
  • Zip Code

Uso

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.

Ejemplos

Obtener tu geolocalización IP

  • ./ip2geolocation.py -m

Obtener geolocalización IP

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

Obtener geolocalización de Dominio

  • ./ip2geolocation.py -t example.com

No guardar archivos .log

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

Cadena de User-Agent personalizada

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

Usando Proxy

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

Usando Proxy aleatorio

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

Seleccionar cadena User-Agent aleatoriamente

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

Obtener geolocalización IP y abrir ubicación en Google Maps con el navegador predeterminado

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

Exportar resultados a archivo CSV

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

Exportar resultados a archivo XML

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

Exportar resultados a archivo TXT

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

Obtener geolocalización IP para múltiples objetivos

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

Obtener geolocalización IP para múltiples objetivos y exportar resultados a xml

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

No imprimir resultados en la terminal

  • ./ip2geolocation.py -m -e /path/to/results.txt --noprint
Descargar herramienta