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