{"id":20859075,"url":"https://github.com/blackxploit-404/iptracerx","last_synced_at":"2026-01-02T10:36:50.409Z","repository":{"id":252396709,"uuid":"840322701","full_name":"blackXploit-404/IPTracerX","owner":"blackXploit-404","description":"IPTracerX  is a command-line tool that fetches IP address details and shows locations on Google Maps from the terminal.","archived":false,"fork":false,"pushed_at":"2024-08-24T14:54:32.000Z","size":13,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-08-24T15:59:49.522Z","etag":null,"topics":["command-line","ip","ipinfo","iplookup","iptracking","kali-linux-tools","tracker"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/blackXploit-404.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"code_of_conduct":null,"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},"funding":{"buy_me_a_coffee":"sensurajit"}},"created_at":"2024-08-09T12:54:56.000Z","updated_at":"2024-08-24T15:59:56.609Z","dependencies_parsed_at":"2024-08-11T20:38:26.334Z","dependency_job_id":null,"html_url":"https://github.com/blackXploit-404/IPTracerX","commit_stats":null,"previous_names":["devsurajit-codes/iptracerx","blackxploit-404/iptracerx"],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackXploit-404%2FIPTracerX","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackXploit-404%2FIPTracerX/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackXploit-404%2FIPTracerX/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackXploit-404%2FIPTracerX/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blackXploit-404","download_url":"https://codeload.github.com/blackXploit-404/IPTracerX/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225130742,"owners_count":17425506,"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":["command-line","ip","ipinfo","iplookup","iptracking","kali-linux-tools","tracker"],"created_at":"2024-11-18T04:48:34.066Z","updated_at":"2026-01-02T10:36:50.381Z","avatar_url":"https://github.com/blackXploit-404.png","language":"Shell","funding_links":["https://buymeacoffee.com/sensurajit"],"categories":[],"sub_categories":[],"readme":"\n\n# IPTracerX\n\n**IPTracerX** is a command-line tool designed to provide detailed information about IP addresses, including geographical location, city, region, and country. It also allows users to visualize IP locations on Google Maps directly from the terminal. Whether you're a network administrator, security expert, or just curious about IP details, IPTracerX delivers quick and accurate IP insights.\n\n## Features\n\n- 🌍 **Fetch Detailed Information**: Get comprehensive details about any IP address.\n- 🆔 **Retrieve Your IP**: Find information about your own public IP address.\n- 📍 **Location Data**: Displays city, region, country, latitude, and longitude.\n- 🗺️ **Google Maps Integration**: Option to view the IP location on Google Maps directly from the terminal.\n- 🖥️ **User-Friendly Interface**: Simple menu system for easy navigation.\n- 🧹 **Clear Screen**: Option to clear the terminal screen.\n- ❓ **Help Functionality**: Provides guidance on using the script.\n\n## Installation\n\n### Prerequisites\n\n- `curl` – For making API requests.\n- `jq` (optional) – For parsing JSON data. Can be replaced with other methods if not available.\n\n### Installation Steps\n\n1. **Clone the Repository**\n\n   ```bash\n   git clone https://github.com/blackXploit-404/IPTracerX.git\n   ```\n\n2. **Navigate to the Directory**\n\n   ```bash\n   cd IPTracerX\n   ```\n\n3. **Make the Script Executable**\n\n   ```bash\n   chmod +x trace.sh\n   ```\n\n## Usage\n\nRun the script using:\n\n```bash\n./trace.sh\n```\n\n### Menu Options\n\n1. **Get Information for a Specific IP**  \n   Enter any IP address to fetch and display its information.\n\n2. **Get Information for Your Own IP**  \n   Retrieve and display information about your current public IP address.\n\n3. **Clear Screen**  \n   Clears the terminal screen for a cleaner interface.\n\n4. **Help**  \n   Displays help information about the script and its features.\n\n5. **Exit**  \n   Exits the script.\n\n### Example\n\n```bash\n./trace.sh\n```\n\n**Output:**\n\n```\nIP Information Script\n1. Get information for a specific IP\n2. Get information for your own IP\n3. Clear screen\n4. Help\n5. Exit\nChoose an option [1-5]: 1\nEnter the IP address: xx.xx.xx.xxx\nFetching information for IP: xx.xx.xx.xxx\nCity: SomeCity\nRegion: SomeRegion\nCountry: SomeCountry\nLatitude: 12.3456\nLongitude: 65.4321\nWould you like to open this location in Google Maps? (y/n): y\nOpening Google Maps for the location...\n```\n\n## Contributing\n\nContributions are welcome! If you'd like to contribute, please follow these steps:\n\n1. **Fork the Repository**.\n2. **Create a New Branch** (`git checkout -b feature/YourFeature`).\n3. **Make Your Changes and Commit Them** (`git commit -am 'Add new feature'`).\n4. **Push to the Branch** (`git push origin feature/YourFeature`).\n5. **Create a New Pull Request**.\n\n## License\n\nThis project is licensed under the MIT License – see the [LICENSE](LICENSE) file for details.\n\n## Contact\n\nFor any questions or suggestions, please open an issue or contact me directly at getsensurajit@gmail.com\n\n---\n\nFeel free to adapt or add any specific details or features relevant to your project!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblackxploit-404%2Fiptracerx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblackxploit-404%2Fiptracerx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblackxploit-404%2Fiptracerx/lists"}