get_public_submissions
Retrieve publicly available malware analysis submissions from Threat.Zone with pagination controls to browse through results systematically.
Instructions
Get public submissions with pagination.
Args: page: Page number (default: 1) jump: Number of items per page (default: 10)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
jump | No | ||
page | No |
Input Schema (JSON Schema)
{
"properties": {
"jump": {
"default": 10,
"title": "Jump",
"type": "integer"
},
"page": {
"default": 1,
"title": "Page",
"type": "integer"
}
},
"type": "object"
}