scan_file_cdr
Submit files for Content Disarm and Reconstruction to remove potentially malicious content while preserving functionality, supporting archives with password protection and entry point specification.
Instructions
Submit a file for CDR (Content Disarm and Reconstruction) processing.
Args: file_path: Path to the file to process 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"
}