當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。