QuickInternetScannerIntelligence

SecurityThreat IntelligenceCybersecurityIP ReputationVulnerability ManagementNetwork TelemetrySOC AutomationPublic APIs

Properties

Name Type Description
found boolean Indicates if the IP was observed scanning the GreyNoise sensor network. Also referred to as 'noise'.
classification string The classification of the IP address, either "benign", "malicious", or "unknown", based on the activity observed by GreyNoise.
View JSON Schema on GitHub

JSON Schema

greynoise-quick-internet-scanner-intelligence-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/greynoise/json-schema/greynoise-quick-internet-scanner-intelligence-schema.json",
  "title": "QuickInternetScannerIntelligence",
  "type": "object",
  "properties": {
    "found": {
      "type": "boolean",
      "description": "Indicates if the IP was observed scanning the GreyNoise sensor network. Also referred to as 'noise'.\n",
      "example": false
    },
    "classification": {
      "type": "string",
      "description": "The classification of the IP address, either \"benign\", \"malicious\",\nor \"unknown\", based on the activity observed by GreyNoise.\n",
      "enum": [
        "benign",
        "malicious",
        "unknown"
      ],
      "example": "benign"
    }
  }
}