@@ -57,6 +57,7 @@ def scan(
57
57
asn : str | NotGiven = NOT_GIVEN ,
58
58
date_end : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
59
59
date_start : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
60
+ hash : str | NotGiven = NOT_GIVEN ,
60
61
hostname : str | NotGiven = NOT_GIVEN ,
61
62
ip : str | NotGiven = NOT_GIVEN ,
62
63
is_malicious : bool | NotGiven = NOT_GIVEN ,
@@ -97,6 +98,8 @@ def scan(
97
98
98
99
date_start: Filter scans requested after date (inclusive).
99
100
101
+ hash: Filter scans by hash of any html/js/css request made by the webpage.
102
+
100
103
hostname: Filter scans by hostname of _any_ request made by the webpage.
101
104
102
105
ip: Filter scans by IP address (IPv4 or IPv6) of _any_ request made by the webpage.
@@ -146,6 +149,7 @@ def scan(
146
149
"asn" : asn ,
147
150
"date_end" : date_end ,
148
151
"date_start" : date_start ,
152
+ "hash" : hash ,
149
153
"hostname" : hostname ,
150
154
"ip" : ip ,
151
155
"is_malicious" : is_malicious ,
@@ -189,6 +193,7 @@ async def scan(
189
193
asn : str | NotGiven = NOT_GIVEN ,
190
194
date_end : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
191
195
date_start : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
196
+ hash : str | NotGiven = NOT_GIVEN ,
192
197
hostname : str | NotGiven = NOT_GIVEN ,
193
198
ip : str | NotGiven = NOT_GIVEN ,
194
199
is_malicious : bool | NotGiven = NOT_GIVEN ,
@@ -229,6 +234,8 @@ async def scan(
229
234
230
235
date_start: Filter scans requested after date (inclusive).
231
236
237
+ hash: Filter scans by hash of any html/js/css request made by the webpage.
238
+
232
239
hostname: Filter scans by hostname of _any_ request made by the webpage.
233
240
234
241
ip: Filter scans by IP address (IPv4 or IPv6) of _any_ request made by the webpage.
@@ -278,6 +285,7 @@ async def scan(
278
285
"asn" : asn ,
279
286
"date_end" : date_end ,
280
287
"date_start" : date_start ,
288
+ "hash" : hash ,
281
289
"hostname" : hostname ,
282
290
"ip" : ip ,
283
291
"is_malicious" : is_malicious ,
0 commit comments