You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Returns back list of the realtime domain risk feed.
1198
+
Contains realtime domain risk information for apex-level domains, regardless of observed traffic.
1199
+
1200
+
domain: str: Filter for an exact domain or a substring contained within a domain by prefixing or suffixing your substring with "*". Check the documentation for examples
1201
+
1202
+
before: str: Filter for records before the given time value inclusive or time offset relative to now
1203
+
1204
+
after: str: Filter for records after the given time value inclusive or time offset relative to now
1205
+
1206
+
headers: bool: Use in combination with Accept: text/csv headers to control if headers are sent or not
1207
+
1208
+
sessionID: str: A custom string to distinguish between different sessions
1209
+
1210
+
top: int: Limit the number of results to the top N, where N is the value of this parameter.
# headers param is allowed only in Feed API and CSV format
1217
+
kwargs.pop("headers", None)
1218
+
1219
+
returnself._results(
1220
+
f"domain-risk-({source})",
1221
+
f"v1/{endpoint}/domainrisk/",
1222
+
response_path=(),
1223
+
cls=FeedsResults,
1224
+
**kwargs,
1225
+
)
1226
+
1227
+
defdomainhotlist(self, **kwargs) ->FeedsResults:
1228
+
"""Returns back list of domain hotlist feed.
1229
+
Contains high-risk, apex-level domains that are observed by DomainTools' global sensor network to be active within 24 hours.
1230
+
1231
+
domain: str: Filter for an exact domain or a substring contained within a domain by prefixing or suffixing your substring with "*". Check the documentation for examples
1232
+
1233
+
before: str: Filter for records before the given time value inclusive or time offset relative to now
1234
+
1235
+
after: str: Filter for records after the given time value inclusive or time offset relative to now
1236
+
1237
+
headers: bool: Use in combination with Accept: text/csv headers to control if headers are sent or not
1238
+
1239
+
sessionID: str: A custom string to distinguish between different sessions
1240
+
1241
+
top: int: Limit the number of results to the top N, where N is the value of this parameter.
c.FEEDS_DOMAINRDAP: "Returns changes to global domain registration information, populated by the Registration Data Access Protocol (RDAP).",
68
69
c.FEEDS_DOMAINDISCOVERY: "Returns new domains as they are either discovered in domain registration information, observed by our global sensor network, or reported by trusted third parties.",
70
+
c.FEEDS_REALTIME_DOMAIN_RISK: "Returns realtime domain risk information for apex-level domains, regardless of observed traffic.",
0 commit comments