scan_file_static
Submit files for static malware analysis to detect security threats without execution. Handles archives with optional entrypoints and passwords while controlling result visibility.
Instructions
Submit a file for static analysis.
Args: file_path: Path to the file to analyze is_public: Whether the scan results should be public entrypoint: File to execute within archive (if applicable) password: Password for archive files (if applicable)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entrypoint | No | ||
file_path | Yes | ||
is_public | No | ||
password | No |
Input Schema (JSON Schema)
{
"properties": {
"entrypoint": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Entrypoint"
},
"file_path": {
"title": "File Path",
"type": "string"
},
"is_public": {
"default": false,
"title": "Is Public",
"type": "boolean"
},
"password": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Password"
}
},
"required": [
"file_path"
],
"type": "object"
}