@@ -58,6 +58,7 @@ def scan(
5858 asn : str | NotGiven = NOT_GIVEN ,
5959 date_end : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
6060 date_start : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
61+ hash : str | NotGiven = NOT_GIVEN ,
6162 hostname : str | NotGiven = NOT_GIVEN ,
6263 ip : str | NotGiven = NOT_GIVEN ,
6364 is_malicious : bool | NotGiven = NOT_GIVEN ,
@@ -98,6 +99,8 @@ def scan(
9899
99100 date_start: Filter scans requested after date (inclusive).
100101
102+ hash: Filter scans by hash of any html/js/css request made by the webpage.
103+
101104 hostname: Filter scans by hostname of _any_ request made by the webpage.
102105
103106 ip: Filter scans by IP address (IPv4 or IPv6) of _any_ request made by the webpage.
@@ -147,6 +150,7 @@ def scan(
147150 "asn" : asn ,
148151 "date_end" : date_end ,
149152 "date_start" : date_start ,
153+ "hash" : hash ,
150154 "hostname" : hostname ,
151155 "ip" : ip ,
152156 "is_malicious" : is_malicious ,
@@ -190,6 +194,7 @@ async def scan(
190194 asn : str | NotGiven = NOT_GIVEN ,
191195 date_end : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
192196 date_start : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
197+ hash : str | NotGiven = NOT_GIVEN ,
193198 hostname : str | NotGiven = NOT_GIVEN ,
194199 ip : str | NotGiven = NOT_GIVEN ,
195200 is_malicious : bool | NotGiven = NOT_GIVEN ,
@@ -230,6 +235,8 @@ async def scan(
230235
231236 date_start: Filter scans requested after date (inclusive).
232237
238+ hash: Filter scans by hash of any html/js/css request made by the webpage.
239+
233240 hostname: Filter scans by hostname of _any_ request made by the webpage.
234241
235242 ip: Filter scans by IP address (IPv4 or IPv6) of _any_ request made by the webpage.
@@ -279,6 +286,7 @@ async def scan(
279286 "asn" : asn ,
280287 "date_end" : date_end ,
281288 "date_start" : date_start ,
289+ "hash" : hash ,
282290 "hostname" : hostname ,
283291 "ip" : ip ,
284292 "is_malicious" : is_malicious ,
0 commit comments