check_ip_threats
Analyze IP addresses using the URLhaus blacklist to identify potential security threats in real-time network traffic. Enhance threat detection and network diagnostics with actionable insights.
Instructions
Check a given IP address against URLhaus blacklist for IOCs
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ip | Yes | IP address to check (e.g., 192.168.1.1) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ip": {
"description": "IP address to check (e.g., 192.168.1.1)",
"pattern": "\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\b",
"type": "string"
}
},
"required": [
"ip"
],
"type": "object"
}