用法:
query_rdata_ip(rdata_ip, before=None, after=None)
查詢以查找與給定時間範圍內的特定 IP 地址匹配的 DNSDB 記錄。
- rdata_ip:(
str
) - VALUE 是 IPv4 或 IPv6 單一地址之一,具有前綴長度或地址範圍。如果提供了前綴,則網絡地址和前綴長度之間的分隔符是單個逗號 (“,”) 字符,而不是通常的斜杠 (“/”) 字符,以避免與 HTTP URI 路徑名稱分隔符衝突。 - before:(
UNIX timestamp
) - 在此之前看到的輸出結果。 - after:(
UNIX timestamp
) - 在此時間之後看到的輸出結果。
- rdata_ip:(
回複
參數:
返回:
返回類型:
例子:
>>> from clx.osi.farsight import FarsightLookupClient >>> client = FarsightLookupClient("https://localhost", "your-api-key", limit=1) >> client.query_rdata_ip("100.0.0.1") {"status_code": 200,...} >>> client.query_rdata_ip("100.0.0.1", before=1428433465, after=1538014110) {"status_code": 200,...}
相關用法
- Python clx.osi.farsight.FarsightLookupClient.query_rdata_name用法及代碼示例
- Python clx.osi.farsight.FarsightLookupClient.query_rrset用法及代碼示例
- Python clx.osi.virus_total.VirusTotalClient.file_rescan用法及代碼示例
- Python clx.osi.virus_total.VirusTotalClient.url_report用法及代碼示例
- Python clx.osi.virus_total.VirusTotalClient.ipaddress_report用法及代碼示例
- Python clx.osi.virus_total.VirusTotalClient.file_scan用法及代碼示例
- Python clx.osi.virus_total.VirusTotalClient.scan_big_file用法及代碼示例
- Python clx.osi.slashnext.SlashNextClient.host_reputation用法及代碼示例
- Python clx.osi.slashnext.SlashNextClient.api_quota用法及代碼示例
- Python clx.osi.virus_total.VirusTotalClient.domain_report用法及代碼示例
- Python clx.osi.slashnext.SlashNextClient.url_scan用法及代碼示例
- Python clx.osi.virus_total.VirusTotalClient.url_scan用法及代碼示例
- Python clx.osi.whois.WhoIsLookupClient.whois用法及代碼示例
- Python clx.osi.slashnext.SlashNextClient.scan_report用法及代碼示例
- Python clx.osi.slashnext.SlashNextClient.host_report用法及代碼示例
- Python clx.osi.slashnext.SlashNextClient.download_screenshot用法及代碼示例
- Python clx.osi.virus_total.VirusTotalClient.put_comment用法及代碼示例
- Python clx.osi.slashnext.SlashNextClient.url_scan_sync用法及代碼示例
- Python clx.osi.slashnext.SlashNextClient.download_html用法及代碼示例
- Python clx.osi.slashnext.SlashNextClient.verify_connection用法及代碼示例
注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 clx.osi.farsight.FarsightLookupClient.query_rdata_ip。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。