Skip to main content

Shodan v2

This Integration is part of the Shodan Pack.#

A search engine used for searching Internet-connected devices.

Configure Shodan v2 on Cortex XSOAR#

  1. Navigate to Settings > Integrations > Servers & Services.

  2. Search for Shodan v2.

  3. Click Add instance to create and configure a new integration instance.

    ParameterRequired
    Api KeyTrue
    Base url to Shodan APITrue
    Trust any certificate (not secure)False
    Use system proxy settingsFalse
  4. Click Test to validate the URLs, token, and connection.

Commands#

You can execute these commands from the Cortex XSOAR CLI, as part of an automation, or in a playbook. After you successfully execute a command, a DBot message appears in the War Room with the command details.

search#


Searches Shodan using facets to get summary information on properties.

Base Command#

search

Input#

Argument NameDescriptionRequired
queryThe query for searching the database of banners. The search query supports filtering using the "filter:value" format to narrow your search. For example, the query "apache country:DE" returns Apache web servers located in Germany.Required
facetsA CSV list of properties on which to get summary information. The search query supports filtering using the "property:count" format to define the number of facets to return for a property. For example, the query "country:100" returns the top 100 countries.Optional
pageThe page number of the fetched results. Each page contains a maximum of 100 results. Default is 1.Optional

Context Output#

PathTypeDescription
Shodan.Banner.OrgStringThe name of the organization to which the space of the IP address space for the searched device is assigned.
Shodan.Banner.IspStringThe Internet Service Provider that provides the organization with the IP address space for the searched device.
Shodan.Banner.TransportStringThe IP address transport protocol used to fetch the summary information. Can be "UDP" or "TCP".
Shodan.Banner.AsnStringThe Autonomous System Number. For example, "AS4837".
Shodan.Banner.IPStringThe IP address of the host as a string.
Shodan.Banner.PortNumberThe port number on which the service is operating.
Shodan.Banner.Ssl.versionsStringThe list of SSL versions that are supported by the server. Unsupported versions are prefixed with a "-". For example, ["TLSv1", "-SSLv2"] means that the server supports TLSv1, but does not support SSLv2.
Shodan.Banner.HostnamesStringAn array of strings containing all of the host names that have been assigned to the IP address for the searched device.
Shodan.Banner.Location.CityStringThe city in which the searched device is located.
Shodan.Banner.Location.LongitudeNumberThe longitude of the geolocation of the searched device.
Shodan.Banner.Location.LatitudeNumberThe latitude of the geolocation of the searched device.
Shodan.Banner.Location.CountryStringThe country in which the searched device is located.
Shodan.Banner.TimestampDateThe timestamp in UTC format indicating when the banner was fetched from the searched device.
Shodan.Banner.DomainsStringAn array of strings containing the top-level domains for the host names of the searched device. It is a utility property for filtering by a top-level domain instead of a subdomain. It supports handling global top-level domains that have several dots in the domain. For example, "co.uk".
Shodan.Banner.OSStringThe operating system that powers the searched device.

Command Example#

!search query="country:HK org:RLL-HK -port:80 -port:443 -port:21 -port:25 has_ssl:false" using-brand=Shodan_v2

Context Example#

{
"Shodan": [
{
"Banner": {
"Asn": "AS9311",
"Domains": [],
"Hostnames": [],
"IP": "1.2.3.4",
"Isp": "HITRON TECHNOLOGY INC.",
"Location": {
"City": "Hong Kong",
"Country": "Hong Kong",
"Latitude": 22.27832,
"Longitude": 114.17469
},
"OS": null,
"Org": "RLL-HK",
"Port": 5353,
"Ssl": {
"versions": []
},
"Timestamp": "2021-08-17T03:33:07.392394",
"Transport": "udp"
}
},
{
"Banner": {
"Asn": "AS9919",
"Domains": [],
"Hostnames": [],
"IP": "1.2.3.4",
"Isp": "New Century InfoComm Tech Co., Ltd.",
"Location": {
"City": "Hong Kong",
"Country": "Hong Kong",
"Latitude": 22.27832,
"Longitude": 114.17469
},
"OS": null,
"Org": "RLL-HK",
"Port": 5353,
"Ssl": {
"versions": []
},
"Timestamp": "2021-08-17T03:21:00.992437",
"Transport": "udp"
}
},
{
"Banner": {
"Asn": "AS9311",
"Domains": [],
"Hostnames": [],
"IP": "1.2.3.4",
"Isp": "HITRON TECHNOLOGY INC.",
"Location": {
"City": "Hong Kong",
"Country": "Hong Kong",
"Latitude": 22.27832,
"Longitude": 114.17469
},
"OS": null,
"Org": "RLL-HK",
"Port": 5353,
"Ssl": {
"versions": []
},
"Timestamp": "2021-08-17T03:13:54.617598",
"Transport": "udp"
}
}
]
}

Human Readable Output#

Search results for query "country:HK org:RLL-HK -port:80 -port:443 -port:21 -port:25 has_ssl:false" - page 1, facets: None |IP|Port|Timestamp| |---|---|---| | 1.2.3.4 | 5353 | 2021-08-17T03:13:54.617598 |

ip#


Returns all services that have been found on the IP address of the searched host.

Base Command#

ip

Input#

Argument NameDescriptionRequired
ipThe IP address of the host.Required

Context Output#

PathTypeDescription
IP.ASNUnknownThe Autonomous System Number.
IP.AddressUnknownThe IP address.
IP.Geo.CountryUnknownThe country of a given IP address.
IP.Geo.DescriptionUnknownThe description of the location.
IP.Geo.LocationUnknownThe latitude and longitude of an IP address.
IP.HostnameUnknownThe hostname of the IP address.
IP.RelationshipsUnknownThe relationships between the ip and it's CVEs.
Shodan.IP.TagsStringThe tags associated with the IP address.
Shodan.IP.LatitudeNumberThe latitude of the geolocation of the searched device.
Shodan.IP.OrgStringThe name of the organization to which the IP space for the searched device is assigned.
Shodan.IP.ASNStringThe Autonomous System Number. For example, "AS4837".
Shodan.IP.ISPStringThe Internet Service Provider that provides the organization with the IP space for the searched device.
Shodan.IP.LongitudeNumberThe longitude of the geolocation of the searched device.
Shodan.IP.LastUpdateDateThe timestamp in UTC format indicating when the banner was fetched from the searched device.
Shodan.IP.CountryNameStringThe country in which the searched device is located.
Shodan.IP.OSStringThe operating system on which the searched device is running.
Shodan.IP.PortNumberThe port number on which the service is operating.
Shodan.IP.AddressStringThe IP address of the host as a string.
Shodan.IP.VulnerabilitiesUnknownA list of Vulnerabilities.
DBotScore.IndicatorStringThe indicator value.
DBotScore.ScoreNumberThe indicator score according to the vendor.
DBotScore.TypeStringThe indicator type.
DBotScore.VendorStringThe vendor name.

Command Example#

!ip ip="8.8.8.8" using-brand="Shodan_v2"

Context Example#

{
"IP": {
"ASN": "AS15169",
"Address": "8.8.8.8",
"Geo": {
"Country": "United States",
"Location": "37.406,-122.078"
},
"Hostname": "dns.google",
"Relationships": [
{
"EntityA": "8.8.8.8",
"EntityAType": "IP",
"EntityB": "CVE-2016-11111",
"EntityBType": "CVE",
"Relationship": "related-to"
}
]
},
"Shodan": {
"IP": {
"ASN": "AS15169",
"Address": "8.8.8.8",
"CountryName": "United States",
"ISP": "Google LLC",
"LastUpdate": "2021-08-20T17:13:07.423800",
"Latitude": 37.4056,
"Longitude": -122.0775,
"OS": null,
"Org": "Google LLC",
"Port": [
53
],
"Tag": [],
"Vulnerabilities": ["CVE-2016-11111"]
}
},
"DBotScore": {
"Indicator": "8.8.8.8",
"Score": 0,
"Type": "ip",
"Vendor": "Shodan_v2"
}
}

Human Readable Output#

Shodan details for IP 8.8.8.8 |ASN|Country|Hostname|ISP|Location|Ports| |---|---|---|---|---|---| | AS15169 | United States | dns.google | Google LLC | 37.406,-122.078 | 53 |

shodan-search-count#


Returns the total number of results that match only the specified query or facet settings. This command does not return host results. This command does not consume query credits.

Base Command#

shodan-search-count

Input#

Argument NameDescriptionRequired
queryThe query for searching the database of banners. The search query supports filtering using the "filter:value" format to narrow your search. For example, the query "apache country:DE" returns Apache web servers located in Germany.Required

Context Output#

PathTypeDescription
Shodan.Search.ResultCountNumberThe number of results matched in the search query.

Command Example#

!shodan-search-count query="country:HK product:Apache"

Context Example#

{
"Shodan": {
"Search": {
"ResultCount": 498645
}
}
}

Human Readable Output#

498645 results for query "country:HK product:Apache"

shodan-scan-ip#


Requests Shodan to crawl a network.

Base Command#

shodan-scan-ip

Input#

Argument NameDescriptionRequired
ipsA CSV list of IP addresses or netblocks for Shodan to crawl defined in CIDR notation.Required

Context Output#

PathTypeDescription
Shodan.Scan.IDStringThe unique ID of the scan.
Shodan.Scan.StatusStringThe status of the scan.

Command Example#

!shodan-scan-ip ips=8.8.8.8

Context Example#

{
"Shodan": {
"Scan": {
"ID": "wQEp0bIIEHklpAwa",
"Status": "PROCESSING"
}
}
}

Human Readable Output#

Scanning results for scan wQEp0bIIEHklpAwa |ID|Status| |---|---| | wQEp0bIIEHklpAwa | PROCESSING |

shodan-scan-internet#


Requests for Shodan to perform a scan on the specified port and protocol.

Base Command#

shodan-scan-internet

Input#

Argument NameDescriptionRequired
portThe port for which Shodan crawls the Internet.Required
protocolThe name of the protocol used to interrogate the port.Required

Context Output#

PathTypeDescription
Shodan.Scan.IDStringThe ID of the initial scan.

Command Example#

Human Readable Output#

shodan-scan-status#


Checks the progress of a previously submitted scan request on the specified port and protocol.

Base Command#

shodan-scan-status

Input#

Argument NameDescriptionRequired
scanIDThe unique ID of the initial scan.Required

Context Output#

PathTypeDescription
Shodan.Scan.IdStringThe unique ID of the scan request checked for progress.
Shodan.Scan.StatusStringThe status of the scan job checked for progress.

Command Example#

!shodan-scan-status scanID=7rbp1CAtx91BMwcg

Context Example#

{
"Shodan": {
"Scan": {
"ID": "7rbp1CAtx91BMwcg",
"Status": "DONE"
}
}
}

Human Readable Output#

Scanning results for scan 7rbp1CAtx91BMwcg |ID|Status| |---|---| | 7rbp1CAtx91BMwcg | DONE |

shodan-create-network-alert#


Creates a network alert for a defined IP address or netblock used for subscribing to changes or events that are discovered within the netblock's range.

Base Command#

shodan-create-network-alert

Input#

Argument NameDescriptionRequired
alertNameThe name of the network alert.Required
ipA list of IP addresses or network ranges defined in CIDR notation.Required
expiresThe number of seconds for the network alert to remain active.Optional

Context Output#

PathTypeDescription
Shodan.Alert.IDStringThe ID of the subscription of the specified network alert.
Shodan.Alert.ExpiresStringThe number of seconds that the specified network alert remains active.

Command Example#

!shodan-create-network-alert alertName="test_alert" ip="1.1.1.1"

Context Example#

{
"Shodan": {
"Alert": {
"Expires": 0,
"ID": "CB68M776ICCMS36L"
}
}
}

Human Readable Output#

Alert ID CB68M776ICCMS36L |Expires|IP|Name| |---|---|---| | 0 | 1.1.1.1 | test_alert |

shodan-network-get-alert-by-id#


Gets the details of a network alert.

Base Command#

shodan-network-get-alert-by-id

Input#

Argument NameDescriptionRequired
alertIDThe ID of the network alert.Required

Context Output#

PathTypeDescription
Shodan.Alert.IDStringThe ID of the subscription of the network alert.
Shodan.Alert.ExpiresStringThe number of seconds that the network alert remains active.

Command Example#

!shodan-network-get-alert-by-id alertID="0EKRH38BBQEHTQ3E"

Context Example#

{
"Shodan": {
"Alert": {
"Expires": 0,
"ID": "0EKRH38BBQEHTQ3E"
}
}
}

Human Readable Output#

Alert ID 0EKRH38BBQEHTQ3E |Expires|IP|Name| |---|---|---| | 0 | 1.2.3.4 | test_alert |

shodan-network-get-alerts#


Gets a list of all created network alerts.

Base Command#

shodan-network-get-alerts

Input#

There are no input arguments for this command.

Context Output#

PathTypeDescription
Shodan.Alert.IDStringThe IDs of the subscriptions of the network alerts.
Shodan.Alert.ExpiresStringThe number of seconds that the network alerts remain active.

Command Example#

!shodan-network-get-alerts

Context Example#

{
"Shodan": [
{
"Alert": {
"Expires": 0,
"ID": "0EKRH38BBQEHTQ3E"
}
},
{
"Alert": {
"Expires": 0,
"ID": "CB68M776ICCMS36L"
}
},
{
"Alert": {
"Expires": 0,
"ID": "HTWLPTVPUHN5VAGA"
}
},
{
"Alert": {
"Expires": 0,
"ID": "VXGB6CZ536X5AWE6"
}
}
]
}

Human Readable Output#

Alert ID VXGB6CZ536X5AWE6 |Expires|IP|Name| |---|---|---| | 0 | 1.1.1.1 | test_alert |

shodan-network-delete-alert#


Removes the specified network alert.

Base Command#

shodan-network-delete-alert

Input#

Argument NameDescriptionRequired
alertIDThe ID of the network alert to remove.Required

Context Output#

There is no context output for this command.

Command Example#

!shodan-network-delete-alert alertID="0EKRH38BBQEHTQ3E"

Human Readable Output#

Deleted alert 0EKRH38BBQEHTQ3E

shodan-network-alert-set-trigger#


Enables receiving notifications for network alerts that are set off by the specified triggers.

Base Command#

shodan-network-alert-set-trigger

Input#

Argument NameDescriptionRequired
alertIDThe ID of the network alert for which to enable notifications.Required
TriggerThe name of the trigger.Required

Context Output#

There is no context output for this command.

Command Example#

!shodan-network-alert-set-trigger alertID="0EKRH38BBQEHTQ3E" Trigger=any

Human Readable Output#

Set trigger "any" for alert 0EKRH38BBQEHTQ3E

shodan-network-alert-remove-trigger#


Disables receiving notifications for network alerts that are set off by the specified triggers.

Base Command#

shodan-network-alert-remove-trigger

Input#

Argument NameDescriptionRequired
alertIDThe ID of the network alert for which to disable notifications.Required
TriggerThe name of the trigger.Required

Context Output#

There is no context output for this command.

Command Example#

!shodan-network-alert-remove-trigger alertID="0EKRH38BBQEHTQ3E" Trigger="any"

Human Readable Output#

Deleted trigger "any" for alert 0EKRH38BBQEHTQ3E

shodan-network-alert-whitelist-service#


Ignores the specified services for network alerts that are set off by the specified triggers.

Base Command#

shodan-network-alert-whitelist-service

Input#

Argument NameDescriptionRequired
alertIDThe ID of the network alert for which to ignore the specified services.Required
triggerThe name of the trigger.Required
serviceThe service specified in the "ip:port" format. For example, "1.1.1.1:80".Required

Context Output#

There is no context output for this command.

Command Example#

!shodan-network-alert-whitelist-service alertID="0EKRH38BBQEHTQ3E" trigger="any" service="1.1.1.1:80"

Human Readable Output#

Whitelisted service "1.1.1.1:80" for trigger any in alert 0EKRH38BBQEHTQ3E

shodan-network-alert-remove-service-from-whitelist#


Resumes receiving notifications for network alerts that are set off by the specified triggers.

Base Command#

shodan-network-alert-remove-service-from-whitelist

Input#

Argument NameDescriptionRequired
alertIDThe ID of the alert for which to resume the specified services.Required
triggerThe name of the trigger.Required
serviceThe service specified in the "ip:port" format. For example, "1.1.1.1:80".Required

Context Output#

There is no context output for this command.

Command Example#

!shodan-network-alert-remove-service-from-whitelist alertID="0EKRH38BBQEHTQ3E" trigger="any" service="1.1.1.1:80"

Human Readable Output#

Removed service "1.1.1.1:80" for trigger any in alert 0EKRH38BBQEHTQ3E from the allow list