You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to know how to access and download all notifications and their associated samples through vt-cli, especially those captured by hunting rules.
Expected Features
List all notifications
Filter notifications by type (e.g., hunting rules matches)
Download samples associated with notifications
Export notification data in a structured format
Current Status
Currently, I cannot find documentation or commands in vt-cli that directly handle notification management and sample downloading from notifications.
Feature Request
Would it be possible to add the following commands to vt-cli:
vt notifications list - List all notifications
vt notifications download - Download samples from notifications
vt notifications export - Export notifications data
Use Cases
Automated monitoring of hunting rule matches
Batch downloading of matched samples
Integration with security automation workflows
Any guidance on whether these features exist or if they're planned for future releases would be greatly appreciated.
The text was updated successfully, but these errors were encountered:
You can list notifications by using iocstream command:
Usage:
vt iocstream [notification_id]... [flags]
vt iocstream [command]
Aliases:
iocstream, is
Examples:
## List:
# List notifications from a hunting rule by name
vt iocstream list -f "origin:hunting tag:my_rule"
# List notifications from a hunting ruleset by name
vt iocstream list -f "origin:hunting tag:myRuleset"
# List just the entity IDs of your IoC Stream matches
vt iocstream list -I
# List ALL the entity IDs in your IoC Stream and store them in a csv file (this might take a while)
vt iocstream list -I –limit 9999999 > results.csv
# List the first IoC Stream notifications including the hash, last_analysis_stats, size and file type
vt iocstream list -i "_id,last_analysis_stats,size,type_tag"
# Check if a hash is in your IoC Stream matches
vt iocstream list -f "entity_type:file entity_id:hash"
## Delete:
# Delete all notifications matching a filter, e.g. all matches for a YARA rule/ruleset. This process is
# asynchronous, so it can take a while to delete all the notifications.
vt iocstream delete -f "origin:hunting tag:my_rule"
# Delete a single notification with ID 1234568. The notification ID is displayed in the context_attributes.
vt iocstream delete 1234568
Available Commands:
delete Deletes notifications from the IoC Stream
list List IoCs from notifications
And you can download a batch of files by using the download command:
Question
I would like to know how to access and download all notifications and their associated samples through vt-cli, especially those captured by hunting rules.
Expected Features
Current Status
Currently, I cannot find documentation or commands in vt-cli that directly handle notification management and sample downloading from notifications.
Feature Request
Would it be possible to add the following commands to vt-cli:
vt notifications list
- List all notificationsvt notifications download
- Download samples from notificationsvt notifications export
- Export notifications dataUse Cases
Any guidance on whether these features exist or if they're planned for future releases would be greatly appreciated.
The text was updated successfully, but these errors were encountered: