mirror of
https://github.com/reconurge/flowsint.git
synced 2026-07-15 21:23:01 -05:00
25 lines
384 B
YAML
25 lines
384 B
YAML
name: shodan_ip_lookup
|
|
category: Ip
|
|
version: 1.0
|
|
type: request
|
|
input:
|
|
type: Ip
|
|
key: address
|
|
request:
|
|
method: DELETE
|
|
url: http://ip-api.com/json/{{address}}
|
|
headers:
|
|
Authorization: "Bearer {{secrets.SHODAN_API_KEY}}"
|
|
|
|
output:
|
|
type: Ip
|
|
|
|
response:
|
|
expect: json
|
|
map:
|
|
lat: Ip.latitute
|
|
lon: Ip.longitude
|
|
country: Ip.country
|
|
city: Ip.city
|
|
isp: Ip.isp
|