-
Notifications
You must be signed in to change notification settings - Fork 233
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ipinfo.io to add #600
Comments
I looked at the API responses and noticed there are some fields we cannot really parse. Here are fields we could integrate, when it makes sense, with additions to MISP object templates or contextual data:
The full response for the highest paid plan looks like the following: {
"ip": "8.8.8.8",
"hostname": "dns.google",
"city": "Mountain View",
"region": "California",
"country": "US",
"loc": "37.4056,-122.0775",
"postal": "94043",
"timezone": "America/Los_Angeles",
"asn": {
"asn": "AS15169",
"name": "Google LLC",
"domain": "google.com",
"route": "8.8.8.0/24",
"type": "business"
},
"company": {
"name": "Google LLC",
"domain": "google.com",
"type": "business"
},
"privacy": {
"vpn": false,
"proxy": false,
"tor": false,
"relay": false,
"hosting": false,
"service": ""
},
"abuse": {
"address": "US, CA, Mountain View, 1600 Amphitheatre Parkway, 94043",
"country": "US",
"email": "network-abuse@google.com",
"name": "Abuse",
"network": "8.8.8.0/24",
"phone": "+1-650-253-0000"
},
"domains": {
"ip": "8.8.8.8",
"total": 10524,
"domains": [
"41.cn",
"mcqs.az",
"etempurl.com",
"ftempurl.com",
"proxyie.cn"
]
}
} There are also additional API endpoints that could be used to extend even further the enrichment information on the given initial IP address, like:
Ultimately, there are 2 additional API endpoints that could be interesting (?):
Besides |
- First version addressing the request from #600 - Straight forward parsing of the `geolocation`, `domain-ip` and `asn` information returned by the standard API endpoint (ipinfo.io/{ip_address})
Oh cool! the domains key is interesting it seems like a weak passive dns. |
So we could create a new |
No description provided.
The text was updated successfully, but these errors were encountered: