scan_url
Analyze URLs for security threats and malicious content to identify potential risks before accessing suspicious links.
Instructions
Analyze a URL for threats and malicious content.
Args: url: The URL to analyze is_public: Whether the scan results should be public
Input Schema
Name | Required | Description | Default |
---|---|---|---|
is_public | No | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"is_public": {
"default": false,
"title": "Is Public",
"type": "boolean"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}