{"id":15442750,"url":"https://github.com/zombiegeek0/geophone","last_synced_at":"2026-04-29T18:34:17.085Z","repository":{"id":227821495,"uuid":"772448804","full_name":"ZombieGeeK0/GeoPhone","owner":"ZombieGeeK0","description":"Este es un programa en Python que geolocaliza números de teléfono a través de la API de OpenCage","archived":false,"fork":false,"pushed_at":"2024-03-15T15:53:21.000Z","size":56,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-18T13:15:08.745Z","etag":null,"topics":["bash","geo","geolocalize","geophone","install","latitud","longithub","number","opencage","phone","py","python","sh","zombiegeek"],"latest_commit_sha":null,"homepage":"https://zombiegeek0.github.io","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ZombieGeeK0.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-15T08:03:25.000Z","updated_at":"2024-05-06T14:06:43.000Z","dependencies_parsed_at":null,"dependency_job_id":"5ecc4a28-5df5-4b3c-b90d-389eba6fe49a","html_url":"https://github.com/ZombieGeeK0/GeoPhone","commit_stats":{"total_commits":32,"total_committers":1,"mean_commits":32.0,"dds":0.0,"last_synced_commit":"7cab3e660e17148a7776548d6d2d89aff0e9b022"},"previous_names":["zombiegeek0/geophone"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZombieGeeK0%2FGeoPhone","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZombieGeeK0%2FGeoPhone/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZombieGeeK0%2FGeoPhone/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZombieGeeK0%2FGeoPhone/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ZombieGeeK0","download_url":"https://codeload.github.com/ZombieGeeK0/GeoPhone/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245986697,"owners_count":20705261,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bash","geo","geolocalize","geophone","install","latitud","longithub","number","opencage","phone","py","python","sh","zombiegeek"],"created_at":"2024-10-01T19:29:51.704Z","updated_at":"2026-04-29T18:34:17.054Z","avatar_url":"https://github.com/ZombieGeeK0.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GeoPhone\n\n`[+]` Este es un programa en `Python` para geolocalizar `números de teléfono.`\n\n`[+]` Está probado en `Kali Linux,` y la nueva versión incorporará un ejecutable para `Windows.`\n\n`[+]` Fuente `utilizada:` [Calvin S](https://patorjk.com/software/taag/#p=display\u0026f=Calvin%20S\u0026t=GeoPhone).\n\n\u003chr\u003e\n\n| Sistema operativo  | Soporte |\n| ------------- | ------------- |\n| Linux (Debian)  | ✅ |\n| Windows  | :x: |\n| Android | :x: |\n| MacOS | :x: |\n| Apple IOS | :x: |\n\n\u003chr\u003e\n\n## 🔴 CONFIGURACIÓN 🔴\n\n`[+]` Obtención de las `APIKeys:`\n\n- Registrarse en [Numverify](https://numverify.com/), en [OpenCageData](https://opencagedata.com/) y en [GoogleMapsDeveloppers](https://developers.google.com/maps/documentation/geocoding/get-api-key).\n- Obtener las APIKeys.\n- Escribirlas en orden correspondiente en el archivo [config.json](https://github.com/ZombieGeeK0/GeoPhone/blob/main/config.json).\n- En el caso de la APIKey de GoogleMaps, hay que escribirla directamente en el código del archivo [main.py](https://github.com/ZombieGeeK0/GeoPhone/blob/main/main.py) en la línea `104`.\n\n\u003chr\u003e\n\n`[+]` Instalación en `Linux (Debian):`\n\n`[+]` Ejecutar el siguiente `comando:`\n\n    sudo apt update -y \u0026\u0026 sudo apt upgrade -y \u0026\u0026 git clone https://github.com/ZombieGeeK0/GeoPhone \u0026\u0026 cd GeoPhone \u0026\u0026 chmod +x install.sh \u0026\u0026 chmod 777 install.sh \u0026\u0026 sudo bash install.sh\n\n\u003chr\u003e\n\n## 🏁 FUNCIONAMIENTO 🏁\n\n`[+]` Se importan las `librerías:`\n\n```python\nimport os, opencage, phonenumbers, json, requests, random, time, sys\nfrom opencage.geocoder import OpenCageGeocode\nfrom phonenumbers import geocoder\nfrom googlesearch import search\nfrom colorama import Fore, Back\n```\n\n`[+]` Se definen los `dominios:`\n\n```python\ndom = [\"com\",\"com.tw\",\"co.in\",\"be\",\"de\",\"co.uk\",\"co.ma\",\"dz\",\"ru\",\"ca\"]\n```\n\n`[+]` Hacemos el setup de `OpenCage:`\n\n```python\ngeo = OpenCageGeocode(configuracion_dat['OpencageKey'])\nphone = phonenumbers.parse(numero)\nlocation = geocoder.description_for_number(phone, 'en')\nquery = str(location)\nresults = geo.geocode(query)\nlat = results[0]['geometry']['lat']\nlng = results[0]['geometry']['lng']\n```\n\n## 🥇 CREDITS 🥇\n\n- [ZombieGeek0](https://www.github.com/ZombieGeek0): El proyecto [GeoPhone](https://www.github.com/ZombieGeek0/GeoPhone).\n- [Euronymou5](https://www.github.com/Euronymou5): Por el proyecto [Dark-Hydro](https://www.github.com/Euronymou5/Dark-Hydro).\n\n\u003chr\u003e\n\n![geophone](https://github.com/ZombieGeeK0/GeoPhone/assets/158185295/8275aba2-2e71-4760-9bf9-6c09dc64b153)\n\n\u003chr\u003e\n\n`[ 📬 ]` Contacta conmigo a través de `Discord` mandando una invitación a `qwfkr.`\n\n    qwfkr\n`[ 📬 ]` Si lo prefieres, mándame un correo a `3xpl017.contact@proton.me.`\n\n    3xpl017.contact@proton.me.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzombiegeek0%2Fgeophone","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzombiegeek0%2Fgeophone","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzombiegeek0%2Fgeophone/lists"}