Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/JavierOlmedo/ipdiscover
🔍 A simple tool to obtain long lists of ips from domains using goroutines
https://github.com/JavierOlmedo/ipdiscover
bugbounty bughunter domain hacking-tool ip recon
Last synced: 22 days ago
JSON representation
🔍 A simple tool to obtain long lists of ips from domains using goroutines
- Host: GitHub
- URL: https://github.com/JavierOlmedo/ipdiscover
- Owner: JavierOlmedo
- License: mit
- Created: 2019-07-29T11:38:18.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-07-29T12:44:23.000Z (over 5 years ago)
- Last Synced: 2024-08-05T17:31:39.832Z (4 months ago)
- Topics: bugbounty, bughunter, domain, hacking-tool, ip, recon
- Language: Go
- Homepage: https://hackpuntes.com
- Size: 3.91 KB
- Stars: 22
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-hacking-lists - JavierOlmedo/ipdiscover - 🔍 A simple tool to obtain long lists of ips from domains using goroutines (Go)
README
ipdiscover
🔍 A simple tool to obtain long lists of ips from domains using goroutines
## About ipdiscover
ipdiscover is a golang tool designed to obtain long lists of IPs from domains. It helps penetration tester and bug bounty hunters to quickly collect IPs to work with other tools, for example, nmap.## Install
```
▶ go get -u github.com/JavierOlmedo/ipdiscover
```## Usage
ipdiscover accepts line-delimited domains on `stdin`:
```
▶ cat domains.txt
google.es
google.net
google.com
google.edu
▶ cat domains.txt | ipdiscover
google.es;172.217.16.227
google.net;216.58.211.36
google.com;172.217.17.14
google.edu;Unknown
```Only one domain:
```
▶ ipdiscover google.es
google.es;172.217.16.227
```## Concurrency
You can set the concurrency level with the `-t` flag and specifying a number (default 23 concurrencies):
```
▶ cat domains.txt | ipdiscover -t 99
```## All IPs Nslookup
You can get all ips of a domain that solves nslookup using the `-a` flag:
```
▶ cat domains.txt | ipdiscover -a
```## Credit
This tool was inspired by @tomnomnom [scripts](https://github.com/tomnomnom?utf8=%E2%9C%93&tab=repositories&q=&type=&language=go). Thanks to them I learned to program in Go!> *Made with ❤️ in Spain*