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


Python clx.osi.slashnext.SlashNextClient.host_reputation用法及代码示例


用法:

host_reputation(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_reputation('google.com')
>>> type(response_list[0])
<class 'dict'>

相关用法


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