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


Python clx.osi.slashnext.SlashNextClient.host_report用法及代碼示例


用法:

host_report(host)

查詢 SlashNext 雲數據庫並檢索詳細報告。

參數

host(str) - 在 SlashNext 威脅情報數據庫中查找的主機。可以是域名或 IPv4 地址。

:return 查詢響應作為列表。 :rtype: 列表

例子

>>> from clx.osi.slashnext import SlashNextClient
>>> api_key = 'slashnext_cloud_apikey'
>>> snx_ir_workspace_dir = 'snx_ir_workspace'
>>> slashnext = SlashNextClient(api_key, snx_ir_workspace_dir)
>>> response_list = slashnext.host_report('google.com')
>>> type(response_list[0])
<class 'dict'>

相關用法


注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 clx.osi.slashnext.SlashNextClient.host_report。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。