Find Vulnerabilities
Description
How To Enable
Example Prompts
Which vulnerabilities are currently in Retest status? Include custom fields in the response.Supported Query Fields
id: {
type: 'string',
pattern: "ObjectId\\(\\'[0-9a-fA-F]{24}\\'\\)",
description: "This is the vulnerability id. Match against single id: { id: { $eq: ObjectId('65a440c08cade68ca7bc7192') } }. Match against multiple ids: { id: { $in: [ ObjectId('65a440c08cade68ca7bc7192'), ObjectId('65a440c08cade68ca7bc7192') ] } }",
}
created: {
type: 'string',
pattern: '^\\d{4,}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$',
description: 'The timestamp that this vulnerability was created.'
},
modified: {
type: 'string',
pattern: '^\\d{4,}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$',
description: 'The timestamp that this vulnerability was last modified.'
}
title: {
type: 'string',
}
priority: {
enum: [
'Critical',
'High',
'Medium',
'Low',
'Info'
]
}
alternate_id: {
type: 'string',
}
cvssv3_1_score: {
description: 'CVSSv3.1 score',
type: 'number'
}
cvssv3_1_vector: {
description: 'CVSSv3.1 vector string',
type: 'string'
}
status: {
enum: ['Closed', 'Open']
}
status_updated: {
type: 'string',
pattern: '^\\d{4,}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$',
description: 'The status was last updated at this timestamp.'
}
target_remediation_date: {
type: 'string',
pattern: '^\\d{4,}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$',
description: 'The latest timestamp at which the vulnerability is planned to be remediated.'
}
likelihood_of_exploitation: {
type: 'integer',
description: 'Scale of exploitability - 1 is least, 10 is most.'
}
steps_to_reproduce: {
type: 'string',
}
release_date: {
type: 'string',
pattern: '^\\d{4,}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$',
description: 'The timestamp when the vulnerability was marked as released.'
}
sla: {
type: 'string',
pattern: '^\\d{4,}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$',
description: 'The timestamp when the vulnerability is expected to be remediated.'
}
tags: {
type: 'array',
items: { type: 'string' }
}
custom_tags: {
type: 'array',
items: {
type: 'object',
properties: {
name: { type: 'string' },
value: { type: 'string' }
},
required: ['name', 'value'],
additionalProperties: false
}
}
custom_fields: {
type: 'array',
items: {
type: 'object',
properties: {
key: {
type: 'string',
pattern: '^[a-zA-Z]([a-zA-Z0-9_]*[a-zA-Z0-9])?$',
},
value: {
oneOf: [
{
type: 'string',
},
{
type: 'array',
},
]
}
},
required: ['key', 'value'],
additionalProperties: false
}
is_retest: {
enum: ['Yes', 'No'],
description: 'Indicates whether this vulnerability has been marked for retest.'
}
is_zero_day: {
enum: ['Yes', 'No'],
description: 'Indicates whether this vulnerability has been categorised as zero day.'
}
writeup_id: {
type: 'string',
pattern: "ObjectId\\(\\'[0-9a-fA-F]{24}\\'\\)",
description: "This is the Writeup id. Example query: { writeup_id: { $eq: ObjectId('65a440c08cade68ca7bc7192') } }"
}Example Response
Last updated