Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jreisinger/checkip
Get (security) info about IP addresses
https://github.com/jreisinger/checkip
cli go ipaddress security tool
Last synced: 7 days ago
JSON representation
Get (security) info about IP addresses
- Host: GitHub
- URL: https://github.com/jreisinger/checkip
- Owner: jreisinger
- License: mit
- Created: 2020-04-20T19:00:20.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-17T13:44:06.000Z (5 months ago)
- Last Synced: 2024-08-02T15:03:35.417Z (3 months ago)
- Topics: cli, go, ipaddress, security, tool
- Language: Go
- Homepage:
- Size: 6.28 MB
- Stars: 230
- Watchers: 4
- Forks: 25
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Go Reference](https://pkg.go.dev/badge/github.com/jreisinger/checkip.svg)](https://pkg.go.dev/github.com/jreisinger/checkip)
[![Go Report Card](https://goreportcard.com/badge/github.com/jreisinger/checkip)](https://goreportcard.com/report/github.com/jreisinger/checkip)
[![StandWithUkraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg)](https://github.com/vshymanskyy/StandWithUkraine/blob/main/docs/README.md)# checkip
Sometimes I come across an IP address, for example when reviewing logs. And I'd like to find out more about this numerical label. Checkip is CLI tool and Go [library](https://pkg.go.dev/github.com/jreisinger/checkip/check) that provides information on and security posture of IP addresses. Most checks are passive. Active checks (like ping and tls) are not aggressive.
## Quick start
```
go install github.com/jreisinger/checkip@latest
checkip 1.1.1.1
```## Usage examples
Check an IP address:
```
❯ checkip 91.228.166.47
--- 91.228.166.47 ---
db-ip.com Petržalka, Slovakia
dns name skh1-webredir01-v.eset.com
iptoasn.com ESET-AS
is on AWS false
isc.sans.edu attacks: 0, abuse contact: [email protected]
ping 100% packet loss (5/0), avg round-trip 0 ms
tls TLS 1.3, exp. 2024/01/02!!, www.eset.com, eset.com
malicious prob. 8% (1/12) ✅
```Check multiple IP addresses coming from STDIN:
```
❯ dig +short eset.sk | checkip
--- 91.228.167.128 ---
db-ip.com Petržalka, Slovakia
dns name h3-webredir02-v.eset.com
iptoasn.com ESET-AS
is on AWS false
isc.sans.edu attacks: 0, abuse contact: [email protected]
ping 100% packet loss (5/0), avg round-trip 0 ms
tls TLS 1.3, exp. 2024/01/02!!, www.eset.com, eset.com
malicious prob. 9% (1/11) ✅
--- 91.228.166.47 ---
db-ip.com Petržalka, Slovakia
dns name skh1-webredir01-v.eset.com
iptoasn.com ESET-AS
is on AWS false
isc.sans.edu attacks: 0, abuse contact: [email protected]
ping 100% packet loss (5/0), avg round-trip 0 ms
tls TLS 1.3, exp. 2024/01/02!!, www.eset.com, eset.com
malicious prob. 8% (1/12) ✅
```Use detailed JSON output to filter out those checks that consider the IP address to be malicious:
```
❯ checkip -j 91.228.166.47 | jq '.checks[] | select(.ipAddrIsMalicious == true)'
{
"description": "tls",
"type": "InfoAndIsMalicious",
"ipAddrIsMalicious": true,
"ipAddrInfo": {
"SAN": [
"www.eset.com",
"eset.com"
],
"Version": 772,
"Expiry": "2024-01-02T23:59:59Z"
}
}
```Continuously generate [random IP addresses](https://github.com/jreisinger/checkip/blob/master/randip) and check them (hit Ctrl-C to stop):
```
❯ while true; do ./randip; sleep 2; done | checkip 2> /dev/null
--- 155.186.85.125 ---
db-ip.com Ashburn, United States
dns name syn-155-186-085-125.res.spectrum.com
iptoasn.com CHARTER-20115
is on AWS false
isc.sans.edu attacks: 0, abuse contact: [email protected]
ping 100% packet loss (5/0), avg round-trip 0 ms
malicious prob. 0% (0/10) ✅
--- 115.159.53.216 ---
db-ip.com Shenzhen (Futian Qu), China
iptoasn.com TENCENT-NET-AP Shenzhen Tencent Computer Systems Company Limited
is on AWS false
isc.sans.edu attacks: 0, abuse contact: [email protected]
ping 100% packet loss (5/0), avg round-trip 0 ms
malicious prob. 0% (0/10) ✅
```Generate 100 random IP addresses and select Russian or Chinese:
```
❯ ./randip 100 | checkip -p 20 -j 2> /dev/null | jq -r '.ipAddr as $ip | .checks[] | select (.description == "db-ip.com" and (.ipAddrInfo.iso_code == "RU" or .ipAddrInfo.iso_code == "CN")) | $ip'
218.19.226.129
119.32.13.38
139.210.45.205
```Find out who is trying to SSH into your Linux system:
```
❯ sudo journalctl --unit ssh --since "1 hour ago" | \
∙ grep 'Bye Bye' | perl -wlne '/from ([\d\.]+)/ && print $1' | sort | uniq | \
∙ checkip 2> /dev/null
--- 167.172.105.64 ---
db-ip.com Frankfurt am Main, Germany
iptoasn.com DIGITALOCEAN-ASN
ping 0% packet loss (5/5), avg round-trip 21 ms
tls TLS 1.3, exp. 2024/12/27, portal.itruck.com.sa, www.portal.itruck.com.sa
malicious prob. 43% (3/7) 🤏
--- 180.168.95.234 ---
db-ip.com Shanghai, China
iptoasn.com CHINANET-SH-AP China Telecom Group
ping 0% packet loss (5/5), avg round-trip 213 ms
malicious prob. 50% (3/6) 🚫
```## Installation
To install the CLI tool
```
# optional; to install inside a container
docker run --rm -it golang /bin/bashgo install github.com/jreisinger/checkip@latest
```or download a [release](https://github.com/jreisinger/checkip/releases) binary (from under "Assets") for your system and architecture.
## Configuration
For some checks to start working you need to register and get an API (LICENSE) key. See the service web site for how to do that. An absent key is not reported as an error, the check is simply not executed and `missingCredentials` JSON field is set.
Store the keys in `$HOME/.checkip.yaml` file:
```
ABUSEIPDB_API_KEY: aaaaaaaabbbbbbbbccccccccddddddddeeeeeeeeffffffff11111111222222223333333344444444
MAXMIND_LICENSE_KEY: abcdef1234567890
SHODAN_API_KEY: aaaabbbbccccddddeeeeffff11112222
URLSCAN_API_KEY: abcd1234-a123-4567-678z-a2b3c4b5d6e7
VIRUSTOTAL_API_KEY: aaaaaaaabbbbbbbbccccccccddddddddeeeeeeeeffffffff1111111122222222
```You can also use environment variables with the same names.
Data used by some checks are downloaded (cached) to `$HOME/.checkip/` folder. They are periodically re-downloaded so they are fresh.
## Development
Checkip is easy to extend. If you want to add a new way of checking IP addresses:
1. Write a function of type [check.Func](https://pkg.go.dev/github.com/jreisinger/checkip/check#Func).
2. Add it to [check.Funcs](https://pkg.go.dev/github.com/jreisinger/checkip/check#Funcs) variable.Typical workflow:
```
make run # test and rungit commit
git tag | sort -V | tail -1
git tag -a v0.2.0 -m "new check func"git push --follow-tags # will build a new release on GitHub
```