search_by_hash
Search malware analysis submissions using file hashes (MD5, SHA1, SHA256) to retrieve threat intelligence and analysis results from Threat.Zone's database.
Instructions
Search submissions by file hash (MD5, SHA1, or SHA256).
Args: hash: File hash to search for page: Page number (default: 1) jump: Number of items per page (default: 10)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hash | Yes | ||
jump | No | ||
page | No |
Input Schema (JSON Schema)
{
"properties": {
"hash": {
"title": "Hash",
"type": "string"
},
"jump": {
"default": 10,
"title": "Jump",
"type": "integer"
},
"page": {
"default": 1,
"title": "Page",
"type": "integer"
}
},
"required": [
"hash"
],
"type": "object"
}