Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hakluke/hakip2host
hakip2host takes a list of IP addresses via stdin, then does a series of checks to return associated domain names.
https://github.com/hakluke/hakip2host
bugbounty hacking osint recon
Last synced: about 1 month ago
JSON representation
hakip2host takes a list of IP addresses via stdin, then does a series of checks to return associated domain names.
- Host: GitHub
- URL: https://github.com/hakluke/hakip2host
- Owner: hakluke
- Created: 2022-04-20T14:31:33.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-04-27T00:46:55.000Z (over 2 years ago)
- Last Synced: 2024-08-05T17:29:44.345Z (4 months ago)
- Topics: bugbounty, hacking, osint, recon
- Language: Go
- Homepage: https://hakluke.com
- Size: 8.79 KB
- Stars: 411
- Watchers: 9
- Forks: 62
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - hakluke/hakip2host - hakip2host takes a list of IP addresses via stdin, then does a series of checks to return associated domain names. (Go)
README
# hakip2host
hakip2host takes a list of IP addresses via stdin, then does a series of checks to return associated domain names.Current supported checks are:
- DNS PTR lookups
- Subject Alternative Names (SANs) on SSL certificates
- Common Names (CNs) on SSL certificates## Installation
Install golang, then:
```
go install github.com/hakluke/hakip2host@latest
```## Help
```
./hakip2host --help
```## Example usage
```
hakluke$ prips 173.0.84.0/24 | ./hakip2host
[DNS-PTR] 173.0.84.23 new-creditcenter.paypal.com.
[DNS-PTR] 173.0.84.11 slc-a-origin-www-1.paypal.com.
[DNS-PTR] 173.0.84.10 admin.paypal.com.
[DNS-PTR] 173.0.84.30 ss-www.paypal.com.
[DNS-PTR] 173.0.84.5 www.gejscript-paypal.com.
[DNS-PTR] 173.0.84.24 slc-a-origin-demo.paypal.com.
[DNS-PTR] 173.0.84.20 origin-merchantweb.paypal.com.
[SSL-SAN] 173.0.84.67 uptycspay.paypal.com
[SSL-SAN] 173.0.84.67 a.paypal.com
[SSL-CN] 173.0.84.67 api.paypal.com
[SSL-SAN] 173.0.84.76 svcs.paypal.com
[SSL-SAN] 173.0.84.76 uptycshon.paypal.com
[SSL-SAN] 173.0.84.76 uptycshap.paypal.com
[SSL-SAN] 173.0.84.76 uptycsven.paypal.com
[SSL-SAN] 173.0.84.76 uptycsize.paypal.com
[SSL-SAN] 173.0.84.76 uptycspay.paypal.com
[SSL-CN] 173.0.84.76 svcs.paypal.com
```