OBJECT
ThreatHuntingObjectFileMatch
Description
Data for a matched file.
link GraphQL Schema definition
- type ThreatHuntingObjectFileMatch {
- # Time at which the file was created in the system.
- : DateTime
- # Earliest snapshot date containing a match.
- : DateTime
- # Matched file name.
- : String!
- # Matched filepath.
- : String!
- # IOCs matching the file.
- : [ThreatHuntIocDetails!]!
- # Specifies if the file is quarantined.
- : Boolean!
- # Latest snapshot date containing a match.
- : DateTime
- # Latest snapshot date not containing a match.
- : DateTime
- # ID of the matched file being returned.
- : Long!
- # MD5 hash of the matched file.
- : String!
- # SHA1 hash of the matched file.
- : String!
- # SHA256 hash of the matched file.
- : String!
- # Information about the snapshots where the file was matched.
- : [MatchedSnapshot!]!
- # Time at which the file was last modified in the system.
- : DateTime
- # Total number of snapshots that included the matched file.
- : Long!
- # Total snapshots where the file was scanned.
- : Long!
- }
link Require by
- ThreatHuntingObjectFileMatchConnectionPaginated list of ThreatHuntingObjectFileMatch objects. Each page of the results includes at most 1000 entries. Query the `pageInfo.hasNextPage` field to know whether all objects were returned.
- ThreatHuntingObjectFileMatchEdgeWrapper around the ThreatHuntingObjectFileMatch object. This wrapper is used for pagination.