Filter: FindingLocationFilter

Filter type for FindingLocation.

All fields in this type are and-combined; see the or field for or-combination.


Input Fields

NameTypeDescription
ANDFindingLocationFilter

A field that checks if all filters in the list apply

If the list is empty, this filter applies to all objects.

ORFindingLocationFilter

A field that checks if any of the filters in the list apply.

If the list is empty, this filter applies to no objects.

Note that only the items in the list or-combined; this complete OR field is and-combined with outer fields in the parent filter type.

createdAtDateTime

Checks if createdAt equals a specified value.

If an index exists on createdAt, it can be used.

The instant this object has been created

createdAt_gtDateTime

Checks if createdAt is greater than a specified value.

The instant this object has been created

createdAt_gteDateTime

Checks if createdAt is greater or equal a specified value.

The instant this object has been created

createdAt_inDateTime

Checks if createdAt is equal to one of the specified values.

The instant this object has been created

createdAt_ltDateTime

Checks if createdAt is less than a specified value.

The instant this object has been created

createdAt_lteDateTime

Checks if createdAt is less or equal a specified value.

The instant this object has been created

createdAt_notDateTime

Checks if createdAt does not equal a specified value

The instant this object has been created

createdAt_not_inDateTime

Checks if createdAt is not equal to one of the specified values.

The instant this object has been created

fileHashes_emptyBoolean

Checks if fileHashes is an empty list (true) or a non-empty list or null (false).

fileHashes_everyHashFilter

Makes sure all items in fileHashes match a certain filter.

fileHashes_noneHashFilter

Makes sure none of the items in fileHashes match a certain filter.

Note that you can specify the empty object for this filter to make sure fileHashes has no items.

fileHashes_someHashFilter

Makes sure at least one of the items in "fileHashes" matches a certain filter.

Note that you can specify the empty object for this filter to make sure fileHashes has at least one item.

fileOffsetAddressInt

Checks if fileOffsetAddress equals a specified value.

If an index exists on fileOffsetAddress, it can be used.

Number of bytes into file for the finding location

fileOffsetAddress_gtInt

Checks if fileOffsetAddress is greater than a specified value.

Number of bytes into file for the finding location

fileOffsetAddress_gteInt

Checks if fileOffsetAddress is greater or equal a specified value.

Number of bytes into file for the finding location

fileOffsetAddress_inInt

Checks if fileOffsetAddress is equal to one of the specified values.

Number of bytes into file for the finding location

fileOffsetAddress_ltInt

Checks if fileOffsetAddress is less than a specified value.

Number of bytes into file for the finding location

fileOffsetAddress_lteInt

Checks if fileOffsetAddress is less or equal a specified value.

Number of bytes into file for the finding location

fileOffsetAddress_notInt

Checks if fileOffsetAddress does not equal a specified value

Number of bytes into file for the finding location

fileOffsetAddress_not_inInt

Checks if fileOffsetAddress is not equal to one of the specified values.

Number of bytes into file for the finding location

filePathString

Checks if filePath equals a specified string, case-sensitively.

If an index exists on filePath, it can be used.

See also like for a case-insensitive filter.

File path associated with the finding (could be a full file path within a file system, a relative file path in a source code repository, or path within a container image)

filePath_containsString

Checks if filePath contains a specified string, case-sensitively.

File path associated with the finding (could be a full file path within a file system, a relative file path in a source code repository, or path within a container image)

filePath_ends_withString

Checks if filePath ends with a specified string, case-sensitively.

File path associated with the finding (could be a full file path within a file system, a relative file path in a source code repository, or path within a container image)

filePath_gtString

Checks if filePath is greater than a specified value.

File path associated with the finding (could be a full file path within a file system, a relative file path in a source code repository, or path within a container image)

filePath_gteString

Checks if filePath is greater or equal a specified value.

File path associated with the finding (could be a full file path within a file system, a relative file path in a source code repository, or path within a container image)

filePath_inString

Checks if filePath is equal to one of the specified values.

File path associated with the finding (could be a full file path within a file system, a relative file path in a source code repository, or path within a container image)

filePath_likeString

Matches filePath against a pattern case-insensitively with the following placeholders:

% matches any sequence of characters, including the empty string; _ matches exactly one character; \ can be used to escape the placeholders (use \\ for a literal backslash);

If an index exists on filePath, it can be used for the literal prefix (the part until the first placeholder).

File path associated with the finding (could be a full file path within a file system, a relative file path in a source code repository, or path within a container image)

filePath_ltString

Checks if filePath is less than a specified value.

File path associated with the finding (could be a full file path within a file system, a relative file path in a source code repository, or path within a container image)

filePath_lteString

Checks if filePath is less or equal a specified value.

File path associated with the finding (could be a full file path within a file system, a relative file path in a source code repository, or path within a container image)

filePath_notString

Checks if filePath does not equal a specified string, case-sensitively.

File path associated with the finding (could be a full file path within a file system, a relative file path in a source code repository, or path within a container image)

filePath_not_containsString

Checks if filePath does not contain a specified string, case-sensitively.

File path associated with the finding (could be a full file path within a file system, a relative file path in a source code repository, or path within a container image)

filePath_not_ends_withString

Checks if filePath does not end with a specified string, case-sensitively.

File path associated with the finding (could be a full file path within a file system, a relative file path in a source code repository, or path within a container image)

filePath_not_inString

Checks if filePath is not equal to one of the specified values.

File path associated with the finding (could be a full file path within a file system, a relative file path in a source code repository, or path within a container image)

filePath_not_likeString

Checks if filePath does not match a pattern case-insensitively with the following placeholders:

% matches any sequence of characters, including the empty string; _ matches exactly one character; \ can be used to escape the placeholders (use \\ for a literal backslash);

File path associated with the finding (could be a full file path within a file system, a relative file path in a source code repository, or path within a container image)

filePath_not_starts_withString

Checks if filePath does not start with a specified string, case-sensitively.

Never uses an index. Consider using not_like (with the % placeholder) for a case-insensitive filter that can use an index.

File path associated with the finding (could be a full file path within a file system, a relative file path in a source code repository, or path within a container image)

filePath_starts_withString

Checks if filePath starts with a specified string, case-sensitively.

Never uses an index. Consider using like (with the % placeholder) for a case-insensitive filter that can use an index.

File path associated with the finding (could be a full file path within a file system, a relative file path in a source code repository, or path within a container image)

functionNameString

Checks if functionName equals a specified string, case-sensitively.

If an index exists on functionName, it can be used.

See also like for a case-insensitive filter.

Name of the function affected by the Finding

functionName_containsString

Checks if functionName contains a specified string, case-sensitively.

Name of the function affected by the Finding

functionName_ends_withString

Checks if functionName ends with a specified string, case-sensitively.

Name of the function affected by the Finding

functionName_gtString

Checks if functionName is greater than a specified value.

Name of the function affected by the Finding

functionName_gteString

Checks if functionName is greater or equal a specified value.

Name of the function affected by the Finding

functionName_inString

Checks if functionName is equal to one of the specified values.

Name of the function affected by the Finding

functionName_likeString

Matches functionName against a pattern case-insensitively with the following placeholders:

% matches any sequence of characters, including the empty string; _ matches exactly one character; \ can be used to escape the placeholders (use \\ for a literal backslash);

If an index exists on functionName, it can be used for the literal prefix (the part until the first placeholder).

Name of the function affected by the Finding

functionName_ltString

Checks if functionName is less than a specified value.

Name of the function affected by the Finding

functionName_lteString

Checks if functionName is less or equal a specified value.

Name of the function affected by the Finding

functionName_notString

Checks if functionName does not equal a specified string, case-sensitively.

Name of the function affected by the Finding

functionName_not_containsString

Checks if functionName does not contain a specified string, case-sensitively.

Name of the function affected by the Finding

functionName_not_ends_withString

Checks if functionName does not end with a specified string, case-sensitively.

Name of the function affected by the Finding

functionName_not_inString

Checks if functionName is not equal to one of the specified values.

Name of the function affected by the Finding

functionName_not_likeString

Checks if functionName does not match a pattern case-insensitively with the following placeholders:

% matches any sequence of characters, including the empty string; _ matches exactly one character; \ can be used to escape the placeholders (use \\ for a literal backslash);

Name of the function affected by the Finding

functionName_not_starts_withString

Checks if functionName does not start with a specified string, case-sensitively.

Never uses an index. Consider using not_like (with the % placeholder) for a case-insensitive filter that can use an index.

Name of the function affected by the Finding

functionName_starts_withString

Checks if functionName starts with a specified string, case-sensitively.

Never uses an index. Consider using like (with the % placeholder) for a case-insensitive filter that can use an index.

Name of the function affected by the Finding

idID

Checks if id equals a specified value.

If an index exists on id, it can be used.

An auto-generated string that identifies this child entity uniquely within this collection of child entities

id_gtID

Checks if id is greater than a specified value.

An auto-generated string that identifies this child entity uniquely within this collection of child entities

id_gteID

Checks if id is greater or equal a specified value.

An auto-generated string that identifies this child entity uniquely within this collection of child entities

id_inID

Checks if id is equal to one of the specified values.

An auto-generated string that identifies this child entity uniquely within this collection of child entities

id_ltID

Checks if id is less than a specified value.

An auto-generated string that identifies this child entity uniquely within this collection of child entities

id_lteID

Checks if id is less or equal a specified value.

An auto-generated string that identifies this child entity uniquely within this collection of child entities

id_notID

Checks if id does not equal a specified value

An auto-generated string that identifies this child entity uniquely within this collection of child entities

id_not_inID

Checks if id is not equal to one of the specified values.

An auto-generated string that identifies this child entity uniquely within this collection of child entities

lineNumberInt

Checks if lineNumber equals a specified value.

If an index exists on lineNumber, it can be used.

Line number in a text file

lineNumber_gtInt

Checks if lineNumber is greater than a specified value.

Line number in a text file

lineNumber_gteInt

Checks if lineNumber is greater or equal a specified value.

Line number in a text file

lineNumber_inInt

Checks if lineNumber is equal to one of the specified values.

Line number in a text file

lineNumber_ltInt

Checks if lineNumber is less than a specified value.

Line number in a text file

lineNumber_lteInt

Checks if lineNumber is less or equal a specified value.

Line number in a text file

lineNumber_notInt

Checks if lineNumber does not equal a specified value

Line number in a text file

lineNumber_not_inInt

Checks if lineNumber is not equal to one of the specified values.

Line number in a text file

sinkObjectString

Checks if sinkObject equals a specified string, case-sensitively.

If an index exists on sinkObject, it can be used.

See also like for a case-insensitive filter.

Sink object (variable, function...) of the attack vector.

sinkObject_containsString

Checks if sinkObject contains a specified string, case-sensitively.

Sink object (variable, function...) of the attack vector.

sinkObject_ends_withString

Checks if sinkObject ends with a specified string, case-sensitively.

Sink object (variable, function...) of the attack vector.

sinkObject_gtString

Checks if sinkObject is greater than a specified value.

Sink object (variable, function...) of the attack vector.

sinkObject_gteString

Checks if sinkObject is greater or equal a specified value.

Sink object (variable, function...) of the attack vector.

sinkObject_inString

Checks if sinkObject is equal to one of the specified values.

Sink object (variable, function...) of the attack vector.

sinkObject_likeString

Matches sinkObject against a pattern case-insensitively with the following placeholders:

% matches any sequence of characters, including the empty string; _ matches exactly one character; \ can be used to escape the placeholders (use \\ for a literal backslash);

If an index exists on sinkObject, it can be used for the literal prefix (the part until the first placeholder).

Sink object (variable, function...) of the attack vector.

sinkObject_ltString

Checks if sinkObject is less than a specified value.

Sink object (variable, function...) of the attack vector.

sinkObject_lteString

Checks if sinkObject is less or equal a specified value.

Sink object (variable, function...) of the attack vector.

sinkObject_notString

Checks if sinkObject does not equal a specified string, case-sensitively.

Sink object (variable, function...) of the attack vector.

sinkObject_not_containsString

Checks if sinkObject does not contain a specified string, case-sensitively.

Sink object (variable, function...) of the attack vector.

sinkObject_not_ends_withString

Checks if sinkObject does not end with a specified string, case-sensitively.

Sink object (variable, function...) of the attack vector.

sinkObject_not_inString

Checks if sinkObject is not equal to one of the specified values.

Sink object (variable, function...) of the attack vector.

sinkObject_not_likeString

Checks if sinkObject does not match a pattern case-insensitively with the following placeholders:

% matches any sequence of characters, including the empty string; _ matches exactly one character; \ can be used to escape the placeholders (use \\ for a literal backslash);

Sink object (variable, function...) of the attack vector.

sinkObject_not_starts_withString

Checks if sinkObject does not start with a specified string, case-sensitively.

Never uses an index. Consider using not_like (with the % placeholder) for a case-insensitive filter that can use an index.

Sink object (variable, function...) of the attack vector.

sinkObject_starts_withString

Checks if sinkObject starts with a specified string, case-sensitively.

Never uses an index. Consider using like (with the % placeholder) for a case-insensitive filter that can use an index.

Sink object (variable, function...) of the attack vector.

sourceObjectString

Checks if sourceObject equals a specified string, case-sensitively.

If an index exists on sourceObject, it can be used.

See also like for a case-insensitive filter.

Source object (variable, function...) of the attack vector.

sourceObject_containsString

Checks if sourceObject contains a specified string, case-sensitively.

Source object (variable, function...) of the attack vector.

sourceObject_ends_withString

Checks if sourceObject ends with a specified string, case-sensitively.

Source object (variable, function...) of the attack vector.

sourceObject_gtString

Checks if sourceObject is greater than a specified value.

Source object (variable, function...) of the attack vector.

sourceObject_gteString

Checks if sourceObject is greater or equal a specified value.

Source object (variable, function...) of the attack vector.

sourceObject_inString

Checks if sourceObject is equal to one of the specified values.

Source object (variable, function...) of the attack vector.

sourceObject_likeString

Matches sourceObject against a pattern case-insensitively with the following placeholders:

% matches any sequence of characters, including the empty string; _ matches exactly one character; \ can be used to escape the placeholders (use \\ for a literal backslash);

If an index exists on sourceObject, it can be used for the literal prefix (the part until the first placeholder).

Source object (variable, function...) of the attack vector.

sourceObject_ltString

Checks if sourceObject is less than a specified value.

Source object (variable, function...) of the attack vector.

sourceObject_lteString

Checks if sourceObject is less or equal a specified value.

Source object (variable, function...) of the attack vector.

sourceObject_notString

Checks if sourceObject does not equal a specified string, case-sensitively.

Source object (variable, function...) of the attack vector.

sourceObject_not_containsString

Checks if sourceObject does not contain a specified string, case-sensitively.

Source object (variable, function...) of the attack vector.

sourceObject_not_ends_withString

Checks if sourceObject does not end with a specified string, case-sensitively.

Source object (variable, function...) of the attack vector.

sourceObject_not_inString

Checks if sourceObject is not equal to one of the specified values.

Source object (variable, function...) of the attack vector.

sourceObject_not_likeString

Checks if sourceObject does not match a pattern case-insensitively with the following placeholders:

% matches any sequence of characters, including the empty string; _ matches exactly one character; \ can be used to escape the placeholders (use \\ for a literal backslash);

Source object (variable, function...) of the attack vector.

sourceObject_not_starts_withString

Checks if sourceObject does not start with a specified string, case-sensitively.

Never uses an index. Consider using not_like (with the % placeholder) for a case-insensitive filter that can use an index.

Source object (variable, function...) of the attack vector.

sourceObject_starts_withString

Checks if sourceObject starts with a specified string, case-sensitively.

Never uses an index. Consider using like (with the % placeholder) for a case-insensitive filter that can use an index.

Source object (variable, function...) of the attack vector.

updatedAtDateTime

Checks if updatedAt equals a specified value.

If an index exists on updatedAt, it can be used.

The instant this object has been updated the last time

updatedAt_gtDateTime

Checks if updatedAt is greater than a specified value.

The instant this object has been updated the last time

updatedAt_gteDateTime

Checks if updatedAt is greater or equal a specified value.

The instant this object has been updated the last time

updatedAt_inDateTime

Checks if updatedAt is equal to one of the specified values.

The instant this object has been updated the last time

updatedAt_ltDateTime

Checks if updatedAt is less than a specified value.

The instant this object has been updated the last time

updatedAt_lteDateTime

Checks if updatedAt is less or equal a specified value.

The instant this object has been updated the last time

updatedAt_notDateTime

Checks if updatedAt does not equal a specified value

The instant this object has been updated the last time

updatedAt_not_inDateTime

Checks if updatedAt is not equal to one of the specified values.

The instant this object has been updated the last time


This page was generated: 2024-05-17