Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jedisct1/ipgrep
Extract, defang, resolve names and IPs from text
https://github.com/jedisct1/ipgrep
Last synced: 29 days ago
JSON representation
Extract, defang, resolve names and IPs from text
- Host: GitHub
- URL: https://github.com/jedisct1/ipgrep
- Owner: jedisct1
- License: isc
- Created: 2016-04-28T05:47:19.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-12-31T14:43:50.000Z (11 months ago)
- Last Synced: 2024-10-05T04:33:44.663Z (about 1 month ago)
- Language: Python
- Size: 10.7 KB
- Stars: 22
- Watchers: 4
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
ipgrep
======`ipgrep` extracts possibly obfuscated host names and IP addresses from text,
resolves host names, and prints them, sorted by ASN.Example:
```bash
$ ipgrep
hxxp://lifeiscalling-sports[.]com/8759j3f434 - 199[.]88[.]59[.]22
mebdco .com - teyseerlab,com. - meow://www.]adgroup.]ae/8759j3f434
Be careful with www.rumbafalcon\.com, it used to serve malware
```
returns
```csv
107.180.51.235 teyseerlab.com. AS26496: AS-26496-GO-DADDY-COM-LLC - GoDaddy.com, LLC (US)
166.62.10.29 mebdco.com AS26496: AS-26496-GO-DADDY-COM-LLC - GoDaddy.com, LLC (US)
23.229.237.128 lifeiscalling-sports.com AS26496: AS-26496-GO-DADDY-COM-LLC - GoDaddy.com, LLC (US)
199.88.59.22 - AS40539: PROHCI - Hosting Consulting, Inc (US)
162.252.57.82 www.rumbafalcon.com. AS47869: NETROUTING-AS (NL)
194.170.187.46 www.adgroup.ae AS5384: EMIRATES-INTERNET Emirates Internet (AE)
```This is a trivial Python script, but I use it **a lot**, so I figured it might
be useful to others.Dependencies:
```bash
$ pip install pycares
```