当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python clx.osi.virus_total.VirusTotalClient.file_report用法及代码示例


用法:

file_report(*resource)

检索文件扫描报告

参数

*resource-

资源参数可以是您要检索的文件的 MD5、SHA-1 或 SHA-256

最新的防病毒报告。您还可以指定 /file/scan 端点返回的 scan_id。 :type *resource: str :return: 响应 :rtype: dict

例子

>>> from clx.osi.virus_total import VirusTotalClient
>>> client = VirusTotalClient(api_key='your-api-key')
>>> client.file_report(["99017f6eebbac24f351415dd410d522d"])
{'status_code': 200, 'json_resp': {'scans': {'Bkav': {'detected': True, 'version': '1.3.0.9899', 'result': 'W32.AIDetectVM.malware1'...}}

相关用法


注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 clx.osi.virus_total.VirusTotalClient.file_report。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。