analyze_file
Submit files for security analysis to detect potential threats using Kaspersky's OpenTIP API. This tool provides basic file scanning to identify malicious content and security risks.
Instructions
Submit a file for basic analysis using the OpenTIP API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | ||
full_file_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
},
"full_file_path": {
"title": "Full File Path",
"type": "string"
}
},
"required": [
"filename",
"full_file_path"
],
"type": "object"
}